💬 コミュニケーション コミュニティ
tech-impl-doc
Write precise technical implementation docs (developer or user) with clear structure, accurate flows, render-safe Mermaid diagrams, and audience-appropriate detail; avoid boilerplate; include a meaningful Code Index for developer docs.
⚡ おすすめ: コマンド1行でインストール(60秒)
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o tech-impl-doc.zip https://jpskill.com/download/9215.zip && unzip -o tech-impl-doc.zip && rm tech-impl-doc.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/9215.zip -OutFile "$d\tech-impl-doc.zip"; Expand-Archive "$d\tech-impl-doc.zip" -DestinationPath $d -Force; ri "$d\tech-impl-doc.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
tech-impl-doc.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
tech-impl-docフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Technical Implementation Doc Skill
When to use
- The user asks for an implementation doc, technical deep dive, architecture/design write-up, or a user guide describing how a system works.
Confirm up front
- Audience: user / developer / mixed.
- Scope: which features or subsystems to cover.
- Output location and language.
- Diagrams: include Mermaid for multi-step flows unless the user says not to.
Audience rules
User-facing docs
- No code locations or internal class names unless explicitly requested.
- Focus on configuration, behavior, and operational steps.
- Use direct clickable links (raw URLs). Do not hide references behind footnotes.
- Avoid boilerplate: no “this document describes…”, no “version info”, no filler headings.
Developer-facing docs
- Include code paths and line numbers.
- Add a Code Index: each entry must explain what the code is responsible for.
- Call out constraints, failure modes, and trade-offs.
Structure rules
- Headings must be meaningful (no parenthetical fluff like “(quick copy)” or “(notes)”).
- Prefer numbered sections for complex systems.
- Keep intro minimal; skip generic explanations.
Mermaid rules (avoid parse errors)
- Keep node labels simple; avoid parentheses and heavy punctuation in labels.
- If a label must contain special characters, wrap it in quotes.
- Avoid line breaks inside labels.
- Use simple node IDs (A, B, C…).
Safe example:
flowchart TB
A["buildRemotePlan (query_port)"] --> B["CrossClusterMergeStep"]
Workflow
- Identify audience and constraints.
- Scan existing docs; consolidate instead of duplicating.
- Verify claims against source code or authoritative docs.
- Draft core flow first (request path → execution → merge → output).
- Add Mermaid diagrams for key flows.
- Add constraints/unsupported features section.
- Add Code Index with descriptions (developer docs only).
- Final pass to remove boilerplate and meaningless headings.
Output checklist
- Audience-appropriate detail level.
- No redundant intro/version sections unless requested.
- Mermaid diagrams render without parse errors.
- Code Index entries explain their purpose (developer docs only).
- Links are clickable in user docs.