Skip to main content

CrewX 0.7.0 Release - Project Scaffolding

ยท 2 min read
Doha Park
Founder @ SowonLabs

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 agent
  • wbs-loop.sh - Automation script that runs the coordinator every 30 minutes
  • wbs.md - Work Breakdown Structure document

How It Works:

  1. wbs-loop.sh invokes the @coordinator agent every 30 minutes
  2. Coordinator analyzes wbs.md to identify incomplete tasks
  3. Distributes tasks in parallel to CrewX built-in agents like @claude and @codex based on task complexity
  4. Automatically updates wbs.md with 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"