ワンクリックで
kanban-worker
Task lifecycle management and workspace handoff for Kanban workers
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Task lifecycle management and workspace handoff for Kanban workers
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Decompose and route work through multi-agent Kanban systems
Terminal-based Node.js debugging via V8 inspector protocol
Python debugging with pdb, debugpy, and remote attach
Root-cause investigation methodology before applying fixes
Enforce RED-GREEN-REFACTOR TDD cycle
Extract YouTube transcripts and transform into structured content
| name | kanban-worker |
| description | Task lifecycle management and workspace handoff for Kanban workers |
| alwaysInclude | false |
| requiredBins | [] |
| platforms | ["darwin","linux"] |
| version | 1.0.0 |
| tenantIds | [] |
Execute individual tasks assigned by a Kanban orchestrator. Workers receive a task card, perform the work, and produce structured output for review.
Received → Acknowledged → Working → Output Ready → Handed Off
Workers receive tasks as structured prompts:
TASK-ID: TASK-042
TITLE: Implement password strength meter
DESCRIPTION: Add a real-time password strength indicator to the signup form.
ACCEPTANCE CRITERIA:
- Shows strength levels: weak, fair, strong
- Updates on each keystroke
- Uses zxcvbn library for scoring
WORKSPACE: /path/to/project
When work is complete, produce a structured completion report:
task_id: TASK-042
status: completed | blocked | needs_clarification
files_changed:
- src/components/PasswordStrength.tsx (created)
- src/components/SignupForm.tsx (modified)
summary: |
Added PasswordStrength component using zxcvbn.
Integrated into SignupForm with real-time updates.
tests_run: 4 passed, 0 failed
blockers: []
notes: |
zxcvbn adds ~400KB to bundle. Consider lazy-loading
if bundle size is a concern.
blocked with a clear explanation.