From project-toolkit
Orchestrates structured agent workflows via numbered commands: /0-init → /1-plan → /2-impl → /3-qa → /4-security for development sessions.
npx claudepluginhub rjmurillo/ai-agents --plugin project-toolkitThis skill uses the workspace's default tool permissions.
Numbered workflow commands for structured agent orchestration. Implements the MoAI-ADK inspired pipeline: `/0-init → /1-plan → /2-impl → /3-qa → /4-security`.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
Numbered workflow commands for structured agent orchestration. Implements the MoAI-ADK inspired pipeline: /0-init → /1-plan → /2-impl → /3-qa → /4-security.
Use this skill when:
/0-init)/1-plan)/2-impl)/3-qa)/4-security)| Command | Purpose | Agents |
|---|---|---|
/0-init | Session initialization (ADR-007) | Agent Orchestration MCP |
/1-plan | Planning phase | planner / architect / roadmap+advisor |
/2-impl | Implementation | implementer (+ qa + security) |
/3-qa | Quality assurance | qa |
/4-security | Security review (opus) | security |
/0-init)AGENTS.md and HANDOFF.md for context.agents/sessions//1-plan)planner--arch: architect--strategic: roadmap → high-level-advisorGet-WorkflowContextLastCommand=1-plan and PlanningAgent to workflow context/2-impl)--full: Sequential implementer → qa → security--parallel: Parallel qa + security after implementerLastCommand=2-impl to workflow context/3-qa)LastCommand=3-qa to workflow context/4-security)--owasp-only: OWASP checks only--secrets-only: Secrets scan onlyLastCommand=4-security to workflow context/0-init → /1-plan → /2-impl → /3-qa → /4-security
Variants:
/1-plan --arch — architecture decisions/1-plan --strategic — roadmap chain/2-impl --full — sequential impl+qa+security/2-impl --parallel — parallel qa+security.claude/skills/workflow/
├── modules/
│ ├── WorkflowHelpers.psm1 # Shared MCP wrappers
│ └── WorkflowHelpers.Tests.ps1
├── scripts/
│ ├── Invoke-Init.ps1 # /0-init
│ ├── Invoke-Plan.ps1 # /1-plan
│ ├── Invoke-Impl.ps1 # /2-impl
│ ├── Invoke-QA.ps1 # /3-qa
│ ├── Invoke-Security.ps1 # /4-security
│ ├── Invoke-WorkflowCommand.ps1 # Generic router
│ ├── Get-AgentHistory.ps1 # Query MCP history
│ └── Sync-SessionDocumentation.ps1
└── SKILL.md
Agent Orchestration MCP tools used:
invoke_agent — all commandstrack_handoff — context preservation between agentsstart_parallel_execution — /2-impl --parallelaggregate_parallel_results — parallel result mergingagents://history — history queriesSession State MCP: /0-init records evidence via record_evidence.
Agent Orchestration MCP: /0-init activates project and loads memories per ADR-007.
All commands gracefully degrade when MCP is unavailable:
/0-init creates session log in .agents/sessions//1-plan routes to correct agent based on flags/2-impl --parallel aggregates results from concurrent agents/3-qa respects --coverage-threshold parameter/4-security filters checks based on --owasp-only/--secrets-onlySync-SessionDocumentation.ps1 blocks paths outside .agents/sessions//0-init — session context will be missing for subsequent commands/2-impl without a prior /1-plan — no planning artifacts to guide implementation.mcp.json or AGENT_ORCHESTRATION_MCP_URL env varSync-SessionDocumentation.ps1 from outside .agents/sessions/Invoke-<Name>.ps1 and registering in Invoke-WorkflowCommand.ps1 $CommandMapInvoke-*.ps1 scriptWorkflowHelpers.psm1 module| Issue | Solution |
|---|---|
| MCP unavailable | Set AGENT_ORCHESTRATION_MCP_URL env var or add .mcp.json |
| Session log not created | Verify .claude/skills/session-init/scripts/New-SessionLog.ps1 exists |
| Context not persisting | Check .agents/workflow-context.json write permissions |