askill
workflow-orchestrator

workflow-orchestratorSafety 90Repository

Always-on workflow orchestration for Claude Code projects. Detects context and activates appropriate skills automatically. Chains with tdd, no-workarounds, dogfood-skills, doc-maintenance, and repo-hygiene based on task context.

0 stars
1.2k downloads
Updated 2/5/2026

Package Files

Loading files...
SKILL.md

Workflow Orchestrator

Always-on context detection and skill chaining for Claude Code projects.

How It Works

This skill runs in the background, detecting context and activating appropriate skills:

Context DetectedSkill ActivatedAction
New project creationproject-initScaffold standard structure
Task completiondoc-maintenanceUpdate PLAN.md, README.md
Bug fix in tooltdd + no-workaroundsTDD workflow, no manual workarounds
Feature completiondogfood-skillsRun skills scan, install recommendations
Non-obvious discoveryclaudeceptionExtract as new skill
Parallel tasks neededagent-orchestrationCoordinate agents via AGENTS.md
Research neededresearch-to-planWeb search, write RESEARCH.md
Session endrepo-hygieneClean test-skill-* artifacts

Conditional Chaining

Skills chain based on context:

New Project Flow

project-init → dogfood-skills → tdd (ready)

Task Completion Flow

task complete → doc-maintenance → repo-hygiene

Bug Fix Flow

bug detected → tdd (RED) → tdd (GREEN) → tdd (REFACTOR) → doc-maintenance

Feature Completion Flow

feature done → dogfood-skills → repo-hygiene → doc-maintenance

Feature Development Flow

research-to-plan → tdd → doc-maintenance → dogfood-skills → repo-hygiene

Testing Pipeline

tdd → suggest-tests → unit-test-workflow → property-based-testing → repo-hygiene

Context Detection

The orchestrator detects context from:

  1. User commands: "create project", "fix bug", "add feature"
  2. File changes: New files, modified tests, config changes
  3. Git state: Branch names, commit messages
  4. Error messages: Test failures, build errors
  5. Conversation history: Previous actions and outcomes

Skill Relationships

SkillTriggersChains To
project-init"create", "scaffold", "initialize"dogfood-skills
doc-maintenanceTask completionrepo-hygiene
agent-orchestrationParallel tasksdoc-maintenance
gitignore-hygieneAfter commitsrepo-hygiene
research-to-planResearch neededtdd
tddBug fix, new featuresuggest-tests, doc-maintenance
suggest-testsAfter tddunit-test-workflow
unit-test-workflowTest generationproperty-based-testing
property-based-testingSerialization patternsrepo-hygiene
repo-hygieneSession end, cleanupdoc-maintenance (feature flows)

Standard Project Structure

project/
├── CLAUDE.md           # Project guidance for Claude
├── README.md           # User-facing documentation
├── PLAN.md             # Remaining work tracker
├── RESEARCH.md         # Investigation notes
├── AGENTS.md           # Agent coordination
├── .gitignore          # Comprehensive patterns
└── .claude/
    └── skills/         # Project-specific skills

When Skills Run

Automatically (Context Detection)

  • project-init: User mentions creating a project
  • doc-maintenance: After any task marked complete
  • repo-hygiene: End of session or before commit

On Explicit Invocation

  • /project-init [name]: Create new project
  • /doc-maintenance: Update documentation
  • /agent-orchestration [task]: Coordinate agents
  • /gitignore-hygiene: Clean gitignore
  • /research-to-plan [topic]: Research to plan

Chained (Triggered by Other Skills)

  • tdd triggers after bug fixes
  • dogfood-skills triggers after feature completion
  • repo-hygiene triggers as terminal skill

Rationalizations (Do Not Skip)

RationalizationWhy It's WrongRequired Action
"I'll update docs later"Later never comesdoc-maintenance now
"Small change, no docs"Small changes accumulateUpdate PLAN.md
"Agents are overkill"Parallel work saves timeConsider orchestration
"Gitignore is fine"Hidden files get committedRun hygiene check
"I know the research"Knowledge cutoff may be staleWeb search for 2026
"Skip the tests"Bugs escapeTDD required
"Skip cleanup"Slop accumulatesrepo-hygiene at end

Integration

This orchestrator connects all workflow skills:

  • project-init: Scaffolds new projects
  • doc-maintenance: Updates documentation
  • agent-orchestration: Coordinates parallel work
  • gitignore-hygiene: Maintains gitignore
  • research-to-plan: Converts research to plans
  • tdd: Test-driven development
  • no-workarounds: Prevents manual workarounds
  • dogfood-skills: Enforces dogfooding
  • repo-hygiene: Final cleanup

References

For detailed guidance, see:

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

95/100Analyzed 2/12/2026

An exceptional meta-skill for orchestrating development workflows. It features detailed context detection, clear skill chaining logic, and comprehensive project structure guidance.

90
98
85
95
92

Metadata

Licenseunknown
Version-
Updated2/5/2026
Publishermajiayu000

Tags

ci-cdgithub-actionsllmtesting