Loading...
Loading...
Multi-agent pipeline orchestrator that plans and dispatches parallel development tasks to worktree agents. Reads project context, configures task directories with PRDs and jsonl context files, and launches isolated coding agents. Use when multiple independent features need parallel development, orchestrating worktree agents, or managing multi-agent coding pipelines.
npx skill4agent add mindfold-ai/trellis parallel| Marker | Meaning | Executor |
|---|---|---|
| Bash scripts or Task calls executed by AI | You (AI) |
| Slash commands executed by user | User |
[AI]cat .trellis/workflow.md # Development process, conventions, and quick start guide[AI]python3 ./.trellis/scripts/get_context.py[AI]# Discover packages and their spec layers
python3 ./.trellis/scripts/get_context.py --mode packagescat .trellis/spec/<package>/<layer>/index.md
# Always read shared thinking guides
cat .trellis/spec/guides/index.md[AI]python3 ./.trellis/scripts/multi_agent/plan.py \
--name "<feature-name>" \
--type "<backend|frontend|fullstack>" \
--requirement "<user requirement description>"python3 ./.trellis/scripts/multi_agent/start.py "$TASK_DIR"[AI]# title is task description, --slug for task directory name
TASK_DIR=$(python3 ./.trellis/scripts/task.py create "<title>" --slug <task-name>)# Initialize jsonl context files
python3 ./.trellis/scripts/task.py init-context "$TASK_DIR" <dev_type>
# Set branch and scope
python3 ./.trellis/scripts/task.py set-branch "$TASK_DIR" feature/<name>
python3 ./.trellis/scripts/task.py set-scope "$TASK_DIR" <scope>python3 ./.trellis/scripts/task.py add-context "$TASK_DIR" implement "<path>" "<reason>"
python3 ./.trellis/scripts/task.py add-context "$TASK_DIR" check "<path>" "<reason>"cat > "$TASK_DIR/prd.md" << 'EOF'
# Feature: <name>
## Requirements
- ...
## Acceptance Criteria
- ...
EOFpython3 ./.trellis/scripts/task.py validate "$TASK_DIR"
python3 ./.trellis/scripts/multi_agent/start.py "$TASK_DIR"[USER]| Command | Description |
|---|---|
| Start Multi-Agent Pipeline (this command) |
| Start normal development mode (single process) |
| Record session progress |
| Pre-completion checklist |
python3 ./.trellis/scripts/multi_agent/status.py # Overview
python3 ./.trellis/scripts/multi_agent/status.py --log <name> # View log
python3 ./.trellis/scripts/multi_agent/status.py --watch <name> # Real-time monitoring
python3 ./.trellis/scripts/multi_agent/cleanup.py <branch> # Cleanup worktree