Agent skill
cfn-docker-runtime
Docker container orchestration for CFN Loop - spawning, coordination, logging, wave execution. Use when running CFN Loop agents in Docker containers, executing waves of parallel agents, coordinating containerized agents via Redis, or managing Docker-based agent lifecycle.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/cfn-docker-runtime
SKILL.md
Docker Runtime Skill (Mega-Skill)
Version: 1.0.0 Purpose: Docker container orchestration for CFN Loop Status: Production Consolidates: cfn-docker-agent-spawning, cfn-docker-coordination, cfn-docker-logging, cfn-docker-loop-orchestration, cfn-docker-skill-mcp-selection, cfn-docker-wave-execution
Overview
This mega-skill provides complete Docker container management for CFN Loop:
- Spawning - Container-based agent deployment
- Coordination - Redis-based container coordination
- Logging - Container log collection and storage
- Orchestration - Docker-mode loop execution
- MCP - Skill-based MCP container selection
- Waves - Wave-based parallel execution
Directory Structure
docker-runtime/
├── SKILL.md
├── lib/
│ ├── spawning/ # From cfn-docker-agent-spawning
│ ├── coordination/ # From cfn-docker-coordination
│ ├── logging/ # From cfn-docker-logging
│ ├── orchestration/ # From cfn-docker-loop-orchestration
│ ├── mcp/ # From cfn-docker-skill-mcp-selection
│ └── waves/ # From cfn-docker-wave-execution
└── cli/
├── spawn-container.sh
├── coordinate.sh
└── execute-wave.sh
Quick Start
Spawn Container Agent
./.claude/skills/docker-runtime/lib/spawning/spawn-agent.sh \
--agent-type backend-developer \
--task-id task-123
Execute Wave
./.claude/skills/docker-runtime/lib/waves/execute-wave.sh \
--wave-id wave-1 \
--agents "backend-developer,tester"
Migration Paths
| Old Path | New Path |
|---|---|
| cfn-docker-agent-spawning/ | docker-runtime/lib/spawning/ |
| cfn-docker-coordination/ | docker-runtime/lib/coordination/ |
| cfn-docker-logging/ | docker-runtime/lib/logging/ |
| cfn-docker-loop-orchestration/ | docker-runtime/lib/orchestration/ |
| cfn-docker-skill-mcp-selection/ | docker-runtime/lib/mcp/ |
| cfn-docker-wave-execution/ | docker-runtime/lib/waves/ |
Version History
1.0.0 (2025-12-02)
- Consolidated 6 Docker skills into mega-skill
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?