From ai-dev-team
> **⚠️ DEPRECATED:** This skill has been superseded by the consolidated workflow tracking approach.
npx claudepluginhub marcel-Ngan/ai-dev-team --plugin ai-dev-teamThis skill uses the workspace's default tool permissions.
> **⚠️ DEPRECATED:** This skill has been superseded by the consolidated workflow tracking approach.
Provides Ktor server patterns for routing DSL, plugins (auth, CORS, serialization), Koin DI, WebSockets, services, and testApplication testing.
Conducts multi-source web research with firecrawl and exa MCPs: searches, scrapes pages, synthesizes cited reports. For deep dives, competitive analysis, tech evaluations, or due diligence.
Provides demand forecasting, safety stock optimization, replenishment planning, and promotional lift estimation for multi-location retailers managing 300-800 SKUs.
⚠️ DEPRECATED: This skill has been superseded by the consolidated workflow tracking approach.
Use instead:
skills/workflow/workflow-tracking/State files now live in
.ai-dev-team/workflow/active/{workflow-name}/state.jsoninstead of.ai-dev-team/workflow-state/.
.ai-dev-team/
└── workflow-state/
├── PROJECT-123.json # Per-story state
├── PROJECT-124.json
└── PROJECT-125.json
workflow/
└── active/
└── development-EPIC-45/
├── workflow.md # Workflow manifest
├── state.json # Consolidated state (replaces per-story files)
├── stories/ # Story details
│ ├── PROJECT-123.md
│ └── PROJECT-124.md
└── decisions.md # Decision log
| Aspect | Old | New |
|---|---|---|
| Location | .ai-dev-team/workflow-state/ | .ai-dev-team/workflow/active/{name}/state.json |
| Scope | Per-story | Per-workflow (may contain multiple stories) |
| Related files | Scattered (context/, .ai-dev-team/) | Consolidated in workflow folder |
| Story details | Separate context/stories/*.md | .ai-dev-team/workflow/active/{name}/stories/*.md |
| Cleanup | Manual | Automatic via archival skill |
The state.json schema is largely the same. See skills/workflow/workflow-tracking/SKILL.md for the current schema.
Key additions in new approach:
workflow_id - Workflow folder nameworkflow_type - Type of workflow (development, sprint-planning, etc.)skills/workflow/workflow-tracking/SKILL.md - Current workflow tracking approachskills/workflow/workflow-archival/SKILL.md - Archival and context updatesThe content below is preserved for reference. Do not use this approach for new workflows.
This skill enabled persistent workflow state tracking for individual stories. Each story had its own state file that tracked current position, gate history, and completed steps.
.ai-dev-team/
└── workflow-state/
├── PROJECT-123.json
├── PROJECT-124.json
└── PROJECT-125.json
See state-schema.json for the JSON schema (still applicable to new state.json format).