スキル一覧に戻る
7tsuno

progressive-workflow

by 7tsuno

Claude Code skill for executing multiple prompts sequentially with physical isolation

3🍴 0📅 2026年1月16日
GitHubで見るManusで実行

SKILL.md


name: progressive-workflow description: Execute pre-defined workflows step by step. Use when user wants to run a workflow or mentions "workflow". Each step is executed in isolation to maintain focus throughout multi-step tasks.

Progressive Workflow

Execute pre-defined workflows one step at a time.

Execution Flow

  1. Get workflow catalog
  2. Select workflow based on user's request
  3. Get args definition for selected workflow
  4. Ask user for missing required args
  5. Execute each step using get_next_prompt.js

Step 1: Get Catalog

node <SKILL_DIR>/scripts/get_workflow_catalog.js

Returns:

[{"id": "review", "name": "Review", "description": "Code review"}]

Step 2: Get Args (after selecting workflow)

node <SKILL_DIR>/scripts/get_workflow_args.js <workflow_id>

Returns:

[{"name": "PR_NUMBER", "description": "PR number", "required": true}]

If required args are missing from user's request, ask the user.

Step 3: Execute Steps

node <SKILL_DIR>/scripts/get_next_prompt.js <workflow_id> <step_index> '<variables_json>'

Returns:

{"step_index": 0, "prompt": "...", "total_steps": 3, "is_last": false}

Execute the returned prompt, then call with step_index + 1 until is_last is true.

Important

  • Never read workflow.yaml directly. Always use get_next_prompt.js to get one prompt at a time.
  • NEVER skip steps or try to "optimize" by doing multiple steps at once. Always execute each step one by one using get_next_prompt.js until is_last is true.
  • Even if the steps seem repetitive or predictable, you MUST call get_next_prompt.js for each step. The workflow is designed to maintain focus and prevent context overload.

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です