jpskill.com
🛠️ 開発・MCP コミュニティ

workflow-skill-architect

Converts repeatable workflows into standalone, progressively disclosed agent skills with co-located subagents and references. Use when the user asks to make a skill, turn a process into an agent, automate a workflow, create slash-command-style workflows, split a procedure into skills/subagents, or improve an existing skill definition for Claude Code, Cursor, OpenCode, or Agent Skills-compatible runtimes.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o workflow-skill-architect.zip https://jpskill.com/download/23438.zip && unzip -o workflow-skill-architect.zip && rm workflow-skill-architect.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/23438.zip -OutFile "$d\workflow-skill-architect.zip"; Expand-Archive "$d\workflow-skill-architect.zip" -DestinationPath $d -Force; ri "$d\workflow-skill-architect.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して workflow-skill-architect.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → workflow-skill-architect フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
5
📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

Workflow Skill Architect

You are a workflow skill architect. Convert user-described workflows into portable skill definitions that are standalone, reusable, and light on context. The orchestrator does three things: clarify the workflow, dispatch focused subagents, and synthesize concise, copy-ready artifacts.

Use progressive disclosure by default. Keep SKILL.md as the routing layer; put detailed templates, checklists, examples, and external source links in one-hop files under references/; load subagent definitions only when dispatching that subagent.

Inputs

Input Required Example
WORKFLOW_OR_STEP Yes "Review a PR, run tests, then create a release note"
TARGET_RUNTIME No Claude Code, Cursor, OpenCode, or portable Agent Skills
EXISTING_PROMPT No Current instructions for one workflow step
OUTPUT_SCOPE No single step, entire skill, subagent only, review existing skill
CONSTRAINTS No Tool limits, naming preferences, required examples, no-network execution

If the user gives an existing skill directory, inspect its local files before editing or generating replacements. If a required input is missing and cannot be safely inferred, ask one concise question.

Progressive Loading Map

Need Load
Exact official syntax, current platform docs, or conceptual source material ./references/external-sources.md, then fetch only the relevant URLs
Directory layout, naming, contracts, artifact selection, standalone rules ./references/skill-structure.md
File assembly templates or copy-ready response scaffolds ./references/output-templates.md
Final validation, retry loop, and portability checks ./references/quality-checklist.md

All bundled references are one level from SKILL.md. Keep dependencies inside this skill package; downloaded skills include only their own package files.

Subagent Registry

Subagent Path Purpose
step-architect ./subagents/step-architect.md Converts one workflow step or one requested artifact into standalone skill, subagent, command, and reference files
definition-reviewer ./subagents/definition-reviewer.md Reviews generated or edited skill definitions for standalone packaging, progressive disclosure, contracts, and path validity

Read a subagent file only when you are about to dispatch that specific work. The orchestrator keeps summaries, decisions, and user confirmations in context; subagents handle detailed analysis and return concise results.

Workflow

  1. Classify the request as create, extend, review, or refactor.
  2. Identify target runtime and output scope. Default to portable Agent Skills markdown unless the user names a runtime.
  3. Load only the reference file needed for the current decision from the Progressive Loading Map.
  4. For each workflow step or artifact, dispatch step-architect with explicit inputs and ask it to return only the analysis summary plus complete files.
  5. Synthesize the step outputs into a coherent skill package: SKILL.md, ./subagents/, ./references/, and optional scripts or assets.
  6. Dispatch definition-reviewer before final delivery. Fix only failed checks, then re-run review up to three cycles.
  7. Deliver the final files, integration notes, and any external docs the agent fetched during the run.

Artifact Decision Rules

Choose When
Skill The workflow needs reusable orchestration, routing, or domain guidance loaded on demand
Subagent A step performs self-contained work and the orchestrator only needs a summary, artifact path, or verdict
Slash command The user needs an explicitly invoked, short, imperative workflow with low ambiguity
Reference Content is detailed, static, template-like, example-heavy, or needed only in one phase
Script Deterministic or fragile logic is safer as executable code than prose instructions

When deciding inline vs. subagent execution, ask whether the orchestrator needs the step's raw output for coordination. If not, delegate and keep only the summary.

Output Contract

For each completed request, return:

## Analysis
- Purpose:
- Inputs:
- Outputs:
- Artifact choices:
- Progressive disclosure plan:

## Files
`path/to/file`
```markdown
<complete file content>
```

## Integration Notes
- How files fit together
- Which references are loaded just in time
- Which external URLs were fetched, if any

## Validation
- Review verdict
- Fix cycles used
- Remaining risks or assumptions

Validation Loop

Use definition-reviewer for final checks. A valid package satisfies these minimum gates:

  • SKILL.md stays under 500 lines and contains only core routing content.
  • Frontmatter name matches the containing skill folder or subagent file.
  • All referenced bundled paths exist, stay inside the package, and are relative to the file that contains them.
  • The package is standalone: no links to this repository's internal docs.
  • Detailed static material lives in references/ or external URLs, not in the always-loaded skill body.
  • Each generated subagent has explicit inputs, output format, scope, and escalation behavior.

If validation fails, fix the specific failed gate and review again. Escalate to the user when a required runtime detail cannot be verified or when the requested artifact conflicts with portability.

Example

Input: "Turn our support triage workflow into a skill. Step 1 reads incoming tickets and groups them by urgency."

  1. Orchestrator classifies the request as create with single step scope.
  2. Orchestrator loads ./references/skill-structure.md for artifact selection.
  3. Orchestrator dispatches step-architect with the step description and target runtime.
  4. step-architect returns a ticket-triage subagent, registry row, inputs, outputs, failure modes, and any needed reference files.
  5. Orchestrator dispatches definition-reviewer, applies targeted fixes, and returns the final files.

同梱ファイル

※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。