parade-init
v1.0.3
Published
CLI tool to initialize new Parade workflow orchestrator projects for Claude Code
Downloads
440
Maintainers
Readme
parade-init
CLI tool to initialize new Parade workflow orchestrator projects for Claude Code.
What is Parade?
Parade is a workflow orchestration system for Claude Code that helps you:
- Transform feature ideas into detailed specifications
- Break down work into trackable tasks
- Execute implementation via specialized sub-agents
- Track progress visually with a Kanban board
Installation
npx parade-initOr install globally:
npm install -g parade-init
parade-initWhat it creates
Running parade-init in your project directory creates:
your-project/
├── .parade/ # Workflow data (discovery.db)
├── .claude/
│ ├── skills/ # Workflow skills (/discover, /run-tasks, etc.)
│ ├── agents/ # Agent prompt templates
│ └── templates/ # Configuration templates
└── .beads/ # Task management (via beads CLI)Prerequisites
- Claude Code - Anthropic's CLI for Claude
- Beads - Task management CLI (auto-installed if missing)
- Node.js 16+
Next Steps
After running parade-init:
- Open Claude Code in your project directory
- Run
/init-projectto configure your project - Run
/parade-doctorto verify setup - Start building with
/discover
Visual Dashboard (Parade App)
The Parade app provides a visual Kanban board for tracking your workflow.
Option 1: Download Pre-built App (Recommended)
- Download the latest DMG from GitHub Releases
- Open the DMG and drag Parade to Applications
- Important for macOS users: The app is not yet notarized with Apple. You'll need to run:
xattr -cr /Applications/Parade.app - Open Parade - on first launch, you'll be prompted to add your project folder
- Click "Add Project Folder" and select your project directory (where you ran
parade-init)
Option 2: Build from Source
git clone https://github.com/JeremyKalmus/parade.git ~/parade
cd ~/parade && npm install
npm run buildThe built app will be in release/Parade-*.dmg
Option 3: Development Mode
git clone https://github.com/JeremyKalmus/parade.git ~/parade
cd ~/parade && npm install
npm run devFirst Launch
When you first open the Parade app:
- You'll be taken to the Settings page automatically
- Click "Add Project Folder" to add your project
- Select a folder that contains a
.beadsdirectory (where you ranbd init) - Your project will appear in the sidebar
Skills Included
| Skill | Purpose |
|-------|---------|
| /init-project | Configure project settings |
| /discover | Capture feature ideas and generate specs |
| /approve-spec | Export specs to beads as tasks |
| /run-tasks | Execute tasks via sub-agents |
| /retro | Analyze execution and improve workflow |
| /evolve | Capture new patterns for reuse |
| /parade-doctor | Diagnose setup issues |
| /workflow-status | Check current workflow state |
Troubleshooting
macOS: "Parade.app is damaged and can't be opened"
This happens because the app is not yet notarized with Apple. Run:
xattr -cr /Applications/Parade.appApp shows "Error loading issues" or "spawn bd ENOENT"
The app can't find the bd CLI. Make sure beads is installed:
go install github.com/beads-ai/beads-cli/cmd/bd@latestAnd that bd is in your PATH. The app checks common locations like /opt/homebrew/bin/bd and /usr/local/bin/bd.
No projects showing in the app
- Make sure you've run
bd initin your project - Add the project folder in Settings (click "Add Project Folder")
- Select the folder that contains the
.beadsdirectory
License
MIT
