├── .claude-plugin ├── marketplace.json └── plugin.json ├── .gitignore ├── LICENSE ├── README.md ├── agents ├── registry.json ├── workflow-socratic-designer.md └── workflow-syntax-designer.md ├── commands ├── create.md ├── examples.md ├── explain.md ├── help.md ├── init.md ├── menu.md ├── orchestrate.md ├── run.md └── template.md ├── docs ├── ASKUSERQUESTION-FIX.md ├── FEATURES.md ├── IMPROVEMENTS-SUMMARY.md ├── MIGRATION-SUMMARY.md ├── PROGRESSIVE-DISCLOSURE-COMPLETE.md ├── SKILLS-IMPLEMENTATION-SUMMARY.md ├── TEMP-SCRIPTS-DETECTION-GUIDE.md ├── VALIDATION-REPORT.md ├── WORKSPACE-FIX-STRATEGY.md ├── WORKSPACE-FIXES-APPLIED.md ├── core │ ├── executor.md │ ├── parser.md │ ├── steering.md │ └── visualizer.md ├── features │ ├── agent-promotion.md │ ├── custom-definitions.md │ ├── defined-agents.md │ ├── error-handling.md │ ├── natural-language.md │ ├── templates.md │ └── temporary-agents.md ├── plans │ ├── 2025-01-08-agent-system-design.md │ ├── 2025-01-08-agent-system-implementation.md │ ├── 2025-11-07-natural-language-workflow-creation-design.md │ ├── 2025-11-07-nl-workflow-creation-implementation.md │ ├── IMPROVEMENT-IMPLEMENTATION-PLAN.md │ ├── IMPROVEMENT-PLAN-QUICK-REF.md │ ├── README.md │ ├── SKILLS-REFACTORING-PLAN.md │ └── SPRINT-TEMPLATE.md ├── reference │ ├── best-practices.md │ ├── cleanup-and-namespacing.md │ ├── examples.md │ ├── syntax.md │ ├── temp-agents-syntax.md │ └── variable-binding.md ├── testing │ └── agent-system-manual-tests.md └── topics │ ├── custom-syntax.md │ └── syntax.md ├── examples ├── README.md ├── agent-system-demo.flow ├── debug-and-fix.flow ├── fix-context-references.flow ├── i18n-fix-hardcoded-strings-enhanced.flow ├── i18n-fix-hardcoded-strings.flow ├── news-data-merge.flow ├── plugin-testing.flow ├── polish-news-aggregation.flow ├── reddit-startup-analyzer.flow ├── tdd-implementation.flow ├── temp-agents-parallel-analysis.md ├── temp-agents-security-scan.md ├── ui-component-refinement.flow └── workflow-with-temp-agents.flow ├── library └── syntax │ ├── actions │ ├── README.md │ ├── find-jsx-strings.md │ ├── generate-i18n-key.md │ ├── plugin-deep-explore.md │ └── update-translation-files.md │ ├── aggregators │ └── README.md │ ├── checkpoints │ ├── README.md │ └── security-gate.md │ ├── conditions │ ├── README.md │ ├── critical-issues.md │ └── improvements-found.md │ ├── guards │ ├── README.md │ └── require-clean-working-tree.md │ ├── loops │ └── README.md │ ├── mcps │ └── README.md │ ├── operators │ └── README.md │ └── tools │ └── README.md ├── skills ├── creating-workflows-from-description │ └── SKILL.md ├── creating-workflows │ ├── SKILL.md │ ├── custom-syntax.md │ ├── examples.md │ ├── patterns.md │ ├── socratic-method.md │ └── temp-agents.md ├── debugging-workflows │ └── SKILL.md ├── designing-syntax │ └── SKILL.md ├── executing-workflows │ ├── SKILL.md │ ├── checkpoints.md │ ├── parallel.md │ ├── syntax-reference.md │ └── variables.md ├── managing-agents │ ├── SKILL.md │ ├── defined-agents.md │ ├── namespacing.md │ ├── promotion.md │ └── temp-agents.md ├── managing-temp-scripts │ ├── SKILL.md │ ├── integration-patterns.md │ ├── script-lifecycle.md │ ├── script-templates.md │ └── security.md ├── using-orchestration │ └── SKILL.md └── using-templates │ └── SKILL.md ├── temp-agents └── .gitkeep └── tests ├── TESTING.md └── workflows ├── test-nl-deployment.md ├── test-nl-security-audit.md └── test-nl-simple-tdd.md /.claude-plugin/marketplace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/.claude-plugin/marketplace.json -------------------------------------------------------------------------------- /.claude-plugin/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/.claude-plugin/plugin.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/README.md -------------------------------------------------------------------------------- /agents/registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/agents/registry.json -------------------------------------------------------------------------------- /agents/workflow-socratic-designer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/agents/workflow-socratic-designer.md -------------------------------------------------------------------------------- /agents/workflow-syntax-designer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/agents/workflow-syntax-designer.md -------------------------------------------------------------------------------- /commands/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/commands/create.md -------------------------------------------------------------------------------- /commands/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/commands/examples.md -------------------------------------------------------------------------------- /commands/explain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/commands/explain.md -------------------------------------------------------------------------------- /commands/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/commands/help.md -------------------------------------------------------------------------------- /commands/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/commands/init.md -------------------------------------------------------------------------------- /commands/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/commands/menu.md -------------------------------------------------------------------------------- /commands/orchestrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/commands/orchestrate.md -------------------------------------------------------------------------------- /commands/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/commands/run.md -------------------------------------------------------------------------------- /commands/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/commands/template.md -------------------------------------------------------------------------------- /docs/ASKUSERQUESTION-FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/ASKUSERQUESTION-FIX.md -------------------------------------------------------------------------------- /docs/FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/FEATURES.md -------------------------------------------------------------------------------- /docs/IMPROVEMENTS-SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/IMPROVEMENTS-SUMMARY.md -------------------------------------------------------------------------------- /docs/MIGRATION-SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/MIGRATION-SUMMARY.md -------------------------------------------------------------------------------- /docs/PROGRESSIVE-DISCLOSURE-COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/PROGRESSIVE-DISCLOSURE-COMPLETE.md -------------------------------------------------------------------------------- /docs/SKILLS-IMPLEMENTATION-SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/SKILLS-IMPLEMENTATION-SUMMARY.md -------------------------------------------------------------------------------- /docs/TEMP-SCRIPTS-DETECTION-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/TEMP-SCRIPTS-DETECTION-GUIDE.md -------------------------------------------------------------------------------- /docs/VALIDATION-REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/VALIDATION-REPORT.md -------------------------------------------------------------------------------- /docs/WORKSPACE-FIX-STRATEGY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/WORKSPACE-FIX-STRATEGY.md -------------------------------------------------------------------------------- /docs/WORKSPACE-FIXES-APPLIED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/WORKSPACE-FIXES-APPLIED.md -------------------------------------------------------------------------------- /docs/core/executor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/core/executor.md -------------------------------------------------------------------------------- /docs/core/parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/core/parser.md -------------------------------------------------------------------------------- /docs/core/steering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/core/steering.md -------------------------------------------------------------------------------- /docs/core/visualizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/core/visualizer.md -------------------------------------------------------------------------------- /docs/features/agent-promotion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/features/agent-promotion.md -------------------------------------------------------------------------------- /docs/features/custom-definitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/features/custom-definitions.md -------------------------------------------------------------------------------- /docs/features/defined-agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/features/defined-agents.md -------------------------------------------------------------------------------- /docs/features/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/features/error-handling.md -------------------------------------------------------------------------------- /docs/features/natural-language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/features/natural-language.md -------------------------------------------------------------------------------- /docs/features/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/features/templates.md -------------------------------------------------------------------------------- /docs/features/temporary-agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/features/temporary-agents.md -------------------------------------------------------------------------------- /docs/plans/2025-01-08-agent-system-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/plans/2025-01-08-agent-system-design.md -------------------------------------------------------------------------------- /docs/plans/2025-01-08-agent-system-implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/plans/2025-01-08-agent-system-implementation.md -------------------------------------------------------------------------------- /docs/plans/2025-11-07-natural-language-workflow-creation-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/plans/2025-11-07-natural-language-workflow-creation-design.md -------------------------------------------------------------------------------- /docs/plans/2025-11-07-nl-workflow-creation-implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/plans/2025-11-07-nl-workflow-creation-implementation.md -------------------------------------------------------------------------------- /docs/plans/IMPROVEMENT-IMPLEMENTATION-PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/plans/IMPROVEMENT-IMPLEMENTATION-PLAN.md -------------------------------------------------------------------------------- /docs/plans/IMPROVEMENT-PLAN-QUICK-REF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/plans/IMPROVEMENT-PLAN-QUICK-REF.md -------------------------------------------------------------------------------- /docs/plans/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/plans/README.md -------------------------------------------------------------------------------- /docs/plans/SKILLS-REFACTORING-PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/plans/SKILLS-REFACTORING-PLAN.md -------------------------------------------------------------------------------- /docs/plans/SPRINT-TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/plans/SPRINT-TEMPLATE.md -------------------------------------------------------------------------------- /docs/reference/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/reference/best-practices.md -------------------------------------------------------------------------------- /docs/reference/cleanup-and-namespacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/reference/cleanup-and-namespacing.md -------------------------------------------------------------------------------- /docs/reference/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/reference/examples.md -------------------------------------------------------------------------------- /docs/reference/syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/reference/syntax.md -------------------------------------------------------------------------------- /docs/reference/temp-agents-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/reference/temp-agents-syntax.md -------------------------------------------------------------------------------- /docs/reference/variable-binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/reference/variable-binding.md -------------------------------------------------------------------------------- /docs/testing/agent-system-manual-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/testing/agent-system-manual-tests.md -------------------------------------------------------------------------------- /docs/topics/custom-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/topics/custom-syntax.md -------------------------------------------------------------------------------- /docs/topics/syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/docs/topics/syntax.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/agent-system-demo.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/examples/agent-system-demo.flow -------------------------------------------------------------------------------- /examples/debug-and-fix.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/examples/debug-and-fix.flow -------------------------------------------------------------------------------- /examples/fix-context-references.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/examples/fix-context-references.flow -------------------------------------------------------------------------------- /examples/i18n-fix-hardcoded-strings-enhanced.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/examples/i18n-fix-hardcoded-strings-enhanced.flow -------------------------------------------------------------------------------- /examples/i18n-fix-hardcoded-strings.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/examples/i18n-fix-hardcoded-strings.flow -------------------------------------------------------------------------------- /examples/news-data-merge.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/examples/news-data-merge.flow -------------------------------------------------------------------------------- /examples/plugin-testing.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/examples/plugin-testing.flow -------------------------------------------------------------------------------- /examples/polish-news-aggregation.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/examples/polish-news-aggregation.flow -------------------------------------------------------------------------------- /examples/reddit-startup-analyzer.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/examples/reddit-startup-analyzer.flow -------------------------------------------------------------------------------- /examples/tdd-implementation.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/examples/tdd-implementation.flow -------------------------------------------------------------------------------- /examples/temp-agents-parallel-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/examples/temp-agents-parallel-analysis.md -------------------------------------------------------------------------------- /examples/temp-agents-security-scan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/examples/temp-agents-security-scan.md -------------------------------------------------------------------------------- /examples/ui-component-refinement.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/examples/ui-component-refinement.flow -------------------------------------------------------------------------------- /examples/workflow-with-temp-agents.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/examples/workflow-with-temp-agents.flow -------------------------------------------------------------------------------- /library/syntax/actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/library/syntax/actions/README.md -------------------------------------------------------------------------------- /library/syntax/actions/find-jsx-strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/library/syntax/actions/find-jsx-strings.md -------------------------------------------------------------------------------- /library/syntax/actions/generate-i18n-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/library/syntax/actions/generate-i18n-key.md -------------------------------------------------------------------------------- /library/syntax/actions/plugin-deep-explore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/library/syntax/actions/plugin-deep-explore.md -------------------------------------------------------------------------------- /library/syntax/actions/update-translation-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/library/syntax/actions/update-translation-files.md -------------------------------------------------------------------------------- /library/syntax/aggregators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/library/syntax/aggregators/README.md -------------------------------------------------------------------------------- /library/syntax/checkpoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/library/syntax/checkpoints/README.md -------------------------------------------------------------------------------- /library/syntax/checkpoints/security-gate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/library/syntax/checkpoints/security-gate.md -------------------------------------------------------------------------------- /library/syntax/conditions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/library/syntax/conditions/README.md -------------------------------------------------------------------------------- /library/syntax/conditions/critical-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/library/syntax/conditions/critical-issues.md -------------------------------------------------------------------------------- /library/syntax/conditions/improvements-found.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/library/syntax/conditions/improvements-found.md -------------------------------------------------------------------------------- /library/syntax/guards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/library/syntax/guards/README.md -------------------------------------------------------------------------------- /library/syntax/guards/require-clean-working-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/library/syntax/guards/require-clean-working-tree.md -------------------------------------------------------------------------------- /library/syntax/loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/library/syntax/loops/README.md -------------------------------------------------------------------------------- /library/syntax/mcps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/library/syntax/mcps/README.md -------------------------------------------------------------------------------- /library/syntax/operators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/library/syntax/operators/README.md -------------------------------------------------------------------------------- /library/syntax/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/library/syntax/tools/README.md -------------------------------------------------------------------------------- /skills/creating-workflows-from-description/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/creating-workflows-from-description/SKILL.md -------------------------------------------------------------------------------- /skills/creating-workflows/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/creating-workflows/SKILL.md -------------------------------------------------------------------------------- /skills/creating-workflows/custom-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/creating-workflows/custom-syntax.md -------------------------------------------------------------------------------- /skills/creating-workflows/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/creating-workflows/examples.md -------------------------------------------------------------------------------- /skills/creating-workflows/patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/creating-workflows/patterns.md -------------------------------------------------------------------------------- /skills/creating-workflows/socratic-method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/creating-workflows/socratic-method.md -------------------------------------------------------------------------------- /skills/creating-workflows/temp-agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/creating-workflows/temp-agents.md -------------------------------------------------------------------------------- /skills/debugging-workflows/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/debugging-workflows/SKILL.md -------------------------------------------------------------------------------- /skills/designing-syntax/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/designing-syntax/SKILL.md -------------------------------------------------------------------------------- /skills/executing-workflows/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/executing-workflows/SKILL.md -------------------------------------------------------------------------------- /skills/executing-workflows/checkpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/executing-workflows/checkpoints.md -------------------------------------------------------------------------------- /skills/executing-workflows/parallel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/executing-workflows/parallel.md -------------------------------------------------------------------------------- /skills/executing-workflows/syntax-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/executing-workflows/syntax-reference.md -------------------------------------------------------------------------------- /skills/executing-workflows/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/executing-workflows/variables.md -------------------------------------------------------------------------------- /skills/managing-agents/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/managing-agents/SKILL.md -------------------------------------------------------------------------------- /skills/managing-agents/defined-agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/managing-agents/defined-agents.md -------------------------------------------------------------------------------- /skills/managing-agents/namespacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/managing-agents/namespacing.md -------------------------------------------------------------------------------- /skills/managing-agents/promotion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/managing-agents/promotion.md -------------------------------------------------------------------------------- /skills/managing-agents/temp-agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/managing-agents/temp-agents.md -------------------------------------------------------------------------------- /skills/managing-temp-scripts/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/managing-temp-scripts/SKILL.md -------------------------------------------------------------------------------- /skills/managing-temp-scripts/integration-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/managing-temp-scripts/integration-patterns.md -------------------------------------------------------------------------------- /skills/managing-temp-scripts/script-lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/managing-temp-scripts/script-lifecycle.md -------------------------------------------------------------------------------- /skills/managing-temp-scripts/script-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/managing-temp-scripts/script-templates.md -------------------------------------------------------------------------------- /skills/managing-temp-scripts/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/managing-temp-scripts/security.md -------------------------------------------------------------------------------- /skills/using-orchestration/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/using-orchestration/SKILL.md -------------------------------------------------------------------------------- /skills/using-templates/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/skills/using-templates/SKILL.md -------------------------------------------------------------------------------- /temp-agents/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/tests/TESTING.md -------------------------------------------------------------------------------- /tests/workflows/test-nl-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/tests/workflows/test-nl-deployment.md -------------------------------------------------------------------------------- /tests/workflows/test-nl-security-audit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/tests/workflows/test-nl-security-audit.md -------------------------------------------------------------------------------- /tests/workflows/test-nl-simple-tdd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbruhler/claude-orchestration/HEAD/tests/workflows/test-nl-simple-tdd.md --------------------------------------------------------------------------------