CrewX 0.7.0 Release - Project Scaffolding
CrewX 0.7.0 is now available! The key feature of this release is Project Scaffolding. With the crewx template command, you can easily install pre-configured AI agent settings and project documentation to start using CrewX right away.
๐ฏ Key Featuresโ
Project Scaffoldingโ
CrewX 0.7.0 introduces a project template installation feature. The crewx template command lets you retrieve AI agent configurations and project documentation all at once, allowing you to use CrewX immediately without complex setup processes.
# View available templates
crewx template list
# Install a template
crewx template init wbs-automation
More templates will be added in the future.
Using Custom Template Repositories:
You can also specify your own template repository using environment variables:
export CREWX_TEMPLATE_REPO=https://github.com/your-org/your-templates
crewx template list # List templates from your repository
crewx template init my-custom-template
First Template: wbs-automationโ
The wbs-automation template currently provided is designed to make it easy to get started with WBS (Work Breakdown Structure) based automated project management.
Core Components:
@coordinator- WBS-based task coordination agentwbs-loop.sh- Automation script that runs the coordinator every 30 minuteswbs.md- Work Breakdown Structure document
How It Works:
wbs-loop.shinvokes the@coordinatoragent every 30 minutes- Coordinator analyzes
wbs.mdto identify incomplete tasks - Distributes tasks in parallel to CrewX built-in agents like
@claudeand@codexbased on task complexity - Automatically updates
wbs.mdwith progress after each task completion
๐ Quick Startโ
Step 1: Install CrewX 0.7.0โ
npm install -g crewx@latest
crewx --version # Verify 0.7.0
Step 2: Install a Templateโ
# Install the template
crewx template init wbs-automation
# Verify installed agents
crewx agent ls
Step 3: Run Automationโ
# Create and edit wbs.md file (define your project tasks)
# Then run the automation script
./wbs-loop.sh
# Or manually invoke the coordinator
crewx x "@coordinator Check wbs.md and proceed with the tasks"
