book_theme
bookforge の400種トンマナ(8 mood x 10 パレット x 5 書体)をブラウズ・選択する。ギャラリーHTML生成、mood/書体での絞り込み、theme id の確認。本を作る前の見た目探索に
Works with
Agent Skills format with YAML frontmatter. Claude Code reads it as-is.
--- name: "book_theme" description: "bookforge の400種トンマナ(8 mood x 10 パレット x 5 書体)をブラウズ・選択する。ギャラリーHTML生成、mood/書体での絞り込み、theme id の確認。本を作る前の見た目探索に" license: "MIT" --- # book_theme — トンマナの探索と選択 書籍生成(book_make)とは独立に、400 種のトーン&マナーを視覚的に探索する skill。 ```bash # ハーネス解決(場所非依存・冪等。以降どこからでも python3 -m bookforge が使える) python3 -c "import bookforge" 2>/dev/null || \ python3 -m pip install --user -q "git+https://github.com/phyten/bookforge" ``` ## Golden Path 1. mood の当たりを付ける: `python3 -m bookforge moods` 2. ギャラリーを生成して**必ずブラウザで見せる**(ID 羅列で選ばせない): ```bash python3 -m bookforge gallery --mood tech --out /tmp/bf-gallery.html && open /tmp/bf-gallery.html ``` 3. ユーザーがカードをクリック → theme id がコピーされる → 貼ってもらう 4. 確定 id の詳細確認: `python3 -m bookforge show <theme-id>` ## mood 早見表 | mood | 印象 | 向く用途 | |---|---|---| | editorial | 雑誌・書籍の編集トーン | 長文の読み物・レポート | | tech | シャープ・SaaS 風 | 開発者ドキュメント・技術書 | | warm | あたたかい | オンボーディング・教育 | | luxe | 高級・重厚 | 提案書・ブランドブック | | playful | 明るい | イベント・カジュアル資料 | | academic | 禁欲的・正確 | 学術・白書 | | minimal | モノトーン+差し色 | 情報密度優先の実務資料 | | noir | ダーク紙面 | 画面閲覧・発表資料 | 書体 5 種: gothic(現代) / mincho(文芸) / hybrid(見出し明朝×本文ゴシック) / mono(エンジニア) / rounded(やわらか) ## 絞り込みの型 ```bash python3 -m bookforge themes --mood luxe --typo mincho # 10件に絞る python3 -m bookforge themes --query indigo # 名前・IDで検索 python3 -m bookforge gallery --mood noir --typo mono --out /tmp/g.html # 絞ったギャラリー ``` ## 選ばせ方のコツ - 一気に 400 見せない。**mood で 1/8 に絞ってからギャラリー** - ユーザーの言葉(「高級感」「かわいく」「お堅く」)→ mood 変換は上の表で - 迷っていたら対照的な 2 mood のギャラリーを並べて出し、比較で選ばせる - 選択結果は book_make の config `theme` にそのまま入る
More General & Other skills
find-skills
vercel-labs/skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
grill-me
mattpocock/skills
A relentless interview to sharpen a plan or design.
grill-with-docs
mattpocock/skills
A relentless interview to sharpen a plan or design, which also creates docs (ADR's and glossary) as we go.

