ワンクリックで
work
Unified entry point — auto-classifies tasks and routes to appropriate workflow. ALWAYS execute when invoked via slash skill.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Unified entry point — auto-classifies tasks and routes to appropriate workflow. ALWAYS execute when invoked via slash skill.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Unified orchestrator for all development tasks. ALWAYS execute when invoked — never skip for 'straightforward' tasks. Phases adapt based on detected task characteristics rather than predetermined types. Use for any development work that modifies code.
Internal engine for managing project documentation and technical standards in .agyflow/docs/. Handles file operations, INDEX.md generation, and AGENTS.md integration. Invoked by flow-init, standards-update, and standards-discover skills.
Initialize AI SDLC framework with intelligent project analysis and documentation generation
Orchestrates the complete migration workflow from current state analysis through implementation to compatibility verification. Handles technology migrations, platform changes, and architecture pattern transitions with adaptive risk assessment, incremental execution, and rollback planning. Use when migrating technologies, platforms, or architecture patterns.
Orchestrates performance optimization workflows using static code analysis to identify bottlenecks (N+1 queries, missing indexes, O(n^2) algorithms, blocking I/O, memory leaks). Accepts optional user-provided profiling data. Reuses standard specification, planning, implementation, and verification phases.
Interactive product/feature design orchestrator. Transforms fuzzy ideas into structured product briefs through collaborative exploration, iterative refinement, and visual prototyping. Adaptive phases detect design complexity and adjust depth.
| name | work |
| description | Unified entry point — auto-classifies tasks and routes to appropriate workflow. ALWAYS execute when invoked via slash skill. |
NOTE: This is a multi-step workflow that invokes the task-classifier subagent and orchestrator skills at specific steps. The <skill-name> tag refers to THIS skill only — you MUST still use the Skill tool to invoke those other skills when instructed below. Follow ALL steps in order.
Auto-classifies tasks and routes to the appropriate workflow orchestrator. Supports resuming existing tasks or starting new ones.
/agyflow:work [task description | task folder path | issue identifier]
| Input Type | Example |
|---|---|
| Task folder path | .agyflow/tasks/development/2025-10-23-login-timeout |
| Folder name only | 2025-10-26-user-auth (searches all task types) |
| Task description | "Fix login timeout error on mobile" |
| GitHub issue | #456, GH-456, https://github.com/owner/repo/issues/456 |
| Jira ticket | PROJ-456, https://company.atlassian.net/browse/PROJ-456 |
| Azure DevOps | AB#123, https://dev.azure.com/org/project/_workitems/edit/123 |
| No argument | Prompts for input |
# Resume existing task
/agyflow:work ".agyflow/tasks/development/2025-10-23-login-timeout"
/agyflow:work "2025-10-26-user-auth"
# New task (auto-classifies)
/agyflow:work "Fix login timeout error on mobile devices"
/agyflow:work "Add user authentication with email/password"
/agyflow:work "Improve dashboard loading performance"
# From issue tracker
/agyflow:work "#456"
/agyflow:work "PROJ-123"
/agyflow:work "AB#789"
| Classification | Routes To (Skill) |
|---|---|
| development | development |
| performance | performance |
| migration | migration |
| research | research |
| product-design | product-design |
Check if input is an existing task folder:
.agyflow/ (relative path).agyflow/tasks/*/ for folder name matchIf folder exists AND contains orchestrator-state.yml:
If NOT a task folder:
If no argument provided:
When existing task detected:
orchestrator-state.yml from task folder| Folder | Workflow Type |
|---|---|
development/ | development |
performance/ | performance |
migrations/ | migration |
research/ | research |
product-design/ | product-design |
Extract status from state file:
completed: null = in-progress, timestamp = finishedcompleted_phases: derive active phase as first phase not in this listfailed_phases: array of failed attemptsPresent status to user with question:
For In-Progress Tasks:
Options:
1. Resume from next incomplete phase
2. Restart from specific phase
3. Cancel
For Completed Tasks:
Options:
1. View task details
2. Create follow-up development task
3. Re-run verification phase
4. Cancel
For Failed Tasks:
Options:
1. Resume with fresh attempts (--reset-attempts --clear-failures)
2. Retry failed phase
3. Restart from specific phase
4. Cancel
Use Skill tool:
skill: "[orchestrator-name]"
args: "--resume [task_path] [flags]"
Examples:
skill: "development" with args: "--resume .agyflow/tasks/development/2025-10-23-fix"skill: "development" with args: "--resume .agyflow/tasks/development/2025-10-26-auth --from=verify"skill: "migration" with args: "--resume .agyflow/tasks/migrations/2025-10-20-redux --reset-attempts"For new task descriptions:
Use Task tool:
subagent_type: "task-classifier"
description: "Classify task type"
prompt: "Classify this task into a workflow type: [task description].
Return structured YAML classification result."
The subagent will:
- Detect issue identifiers (GitHub, Jira)
- Fetch issue details if available
- Analyze codebase context
- Match keywords and calculate confidence
- Confirm with user if needed
- Return classification in YAML format
classification:
task_type: [development|performance|migration|research|product-design]
confidence: [percentage]
reasoning: [explanation]
Display:
Task classified as: [task_type] ([confidence]% confidence)
Routing to [task_type] workflow...
Use Skill tool:
skill: "[orchestrator-name]"
args: "[description]"
Routing examples:
skill: "development" with args: "Fix login timeout error"skill: "development" with args: "Add filtering to user table"skill: "performance" with args: "Optimize slow dashboard queries"If task-classifier returns error:
Display:
"Unable to automatically classify this task. Please select manually:"
Use question with options:
1. Development - Fix bugs, improve features, or add new capabilities
2. Performance - Optimize speed/efficiency
3. Migration - Move to new tech/pattern
4. Research - Investigate and document findings
5. Product Design - Design features or products before building them
Then route to selected workflow using Skill tool.
Display:
"Task cancelled. You can:
- Run /agyflow:work again when ready
- Use specific workflow skills directly:
/agyflow:development, /agyflow:performance, etc."
| Workflow Type | Skill | Args |
|---|---|---|
| development | development | --resume [path] [--from=PHASE] [--reset-attempts] |
| performance | performance | --resume [path] [--from=PHASE] |
| migration | migration | --resume [path] [--from=PHASE] |
| research | research | --resume [path] [--from=PHASE] |
| product-design | product-design | --resume [path] [--from=PHASE] |
The /agyflow:work skill delegates classification to the task-classifier subagent via Task tool, which:
After classification/detection, this skill routes to the appropriate orchestrator via Skill tool:
orchestrator-state.yml for pause/resumeUses project documentation for context:
.agyflow/docs/INDEX.md - Project overview and standards.agyflow/tasks/ - Existing task directories