8月16日、Abhijith N Arjunanが「These 5 Claude prompts turned my plain-text research into something people actually want to read」と題した記事を公開した。ClaudeのDeep Researchが生成するレポートは情報密度が高い一方、プレーンテキスト形式のままでは読まれにくいという問題がある。この記事では、そのテキストをHTMLページ・チャート・スライドショーなどビジュアルコンテンツへ変換するための5つのプロンプトが紹介されている。「レポート生成後に追加のプロンプトを送る」だけで見栄えが劇的に変わる点が、本稿の核心だ。
前提:Deep Researchモードとプレーンテキスト問題
ClaudeのDeep Researchモードは、複数のWebソースを横断して情報を収集・統合し、データ駆動型の長文レポートを生成する機能だ。調査品質は高いが、出力はほぼプレーンテキストに限られる。統計データが文中に埋め込まれ、セクション間の関係は見出しだけで示される構造になりがちで、ビジネス報告や共有用途には視覚的な訴求力が不足している。
Arjunanが提案するのは、このレポートをいったん生成したあと、変換専用のプロンプトを追加送信するというアプローチだ。Claude Artifactが生成するHTMLやJavaScriptはブラウザ上でそのまま動作するため、別途ツールを用意しなくてもインタラクティブなコンテンツが得られる。
一番使える:レポートをインタラクティブなWebページへ変換する
5つのプロンプトの中で最も汎用性が高いのが、レポートをそのまま単一のHTMLページとして再構築するものだ。
Take the report above and rebuild it as a single interactive HTML page, not a written document. Give it a fixed top navigation with jump links to each section. Structure the top as a hero: the single most important stat, one sentence of takeaway, nothing else. Below that, one section per theme, each with its own anchor. Build it as a self-contained artifact I can open on its own, not as a plain-text reply. Turn the theme sections into tabs so I can click between them instead of scrolling through all of them at once.
このプロンプトにより、Claudeは固定ナビゲーション・ヒーローセクション・タブ切り替えを備えたClaude Artifactを生成する。生成されたHTMLはスタンドアロンで動作するため、そのまま共有できる点が実用的だ。デザインをカスタマイズしたい場合は、Arialなどのありふれたフォントやよくある紫グラデーションを避けるよう追記することが推奨されている。
データをチャートに変換する
統計データが文章中に埋まっているレポートに対して有効なプロンプトだ。
Go through this page and find every stat currently sitting inside a sentence. Pull the comparable ones into a bar or line chart using Recharts. Turn any stat that stands alone into a large number tile with a one-line label underneath, the way a dashboard shows a KPI. If a section compares more than two things side by side, put it in a table instead of a paragraph.
**Recharts**(Reactベースのチャートライブラリ)を指定しているが、他のライブラリに差し替えることも可能だ。複数の統計が含まれるレポートでは、KPIタイルとチャートの組み合わせでダッシュボードに近い見た目になる。
Obsidianグラフ風の関係マップ
レポート内の概念・ツール・テーマ間の関係を可視化するプロンプトだ。
Read through the research above and extract every distinct concept, tool, person, or theme as a node. Draw the connections between them as edges, weighted by how often they appear together or reference each other. Render this as a force-directed graph using D3.js so the nodes repel each other and settle into a natural layout. Make every node draggable. When I click a node, show a small panel with a one-paragraph summary of that concept drawn from the research, plus a list of its direct connections.
**D3.js**を使ったforce-directed(力学的)グラフとして出力される。ノードはドラッグ可能で、クリックすると該当概念のサマリーと接続リストが表示される。文献レビューや競合分析のようにテキスト間の関係を俯瞰したいケースで特に有効とされている。
スクロール型スライドショー
ブラウザ上で動作する全画面スライドデッキをHTMLで生成するプロンプトだ。
Convert this research into a full-screen, scroll-based slideshow that runs in the browser as a self-contained HTML file. One idea per slide, no exceptions. Each slide needs a headline in large type, three bullet points maximum, and one supporting stat or quote pulled directly from the research. Add left and right arrow navigation plus keyboard support. Make the transitions instant, not animated.
1スライドにつき1アイデアのみ、矢印キーまたはスクロールで操作できる構成が生成される。PowerPointファイルへの変換と異なり、ブラウザで完結するため追加ソフト不要な点と、トークン消費が少ない点がメリットとして挙げられている。
PDF変換(「AIっぽい見た目」を避ける)
最後のプロンプトは、印刷・配布向けのPDFレイアウトを生成するものだ。
Reformat this research as a print-ready PDF layout rendered in HTML and CSS. Do not use a generic centered header. Reference the layout conventions of a real industry report or long-form magazine feature: a strong cover page with a single dominant image placeholder, a two-column body layout for text-heavy sections, pull quotes styled as large type in the margin, and clear section breaks with bold rule lines. Number every page in the footer. When I print this or export to PDF from the browser, it should look like something a design team produced.
「汎用的な中央揃えヘッダーは使わない」という制約が核心だ。カバーページ・2カラムレイアウト・プルクオート(注目行の引き出し表示)・ページ番号フッターを含むデザインが出力され、ブラウザの印刷機能からそのままPDF保存できる。
注意点
記事では、これらのプロンプトが一発で完璧な出力を出すとは限らないとも述べられている。各フォーマットには固有の調整コストが伴い、たとえばスライドの要素配置などに追加の作業が必要になる場合がある。あくまで出発点として活用し、そこから改善していくスタンスが現実的だ。
詳細はThese 5 Claude prompts turned my plain-text research into something people actually want to readを参照していただきたい。