install_commands
Install and manage Orchestre commands in your project.
Overview
- Purpose: Set up the
.orchestredirectory and install command prompts - Category: Project Setup
- Type: MCP Tool
- Command:
install_commands
Usage
bash
# Install all default commands
install_commands
# Install specific commands
install_commands --commands initialize,analyze,planParameters
| Parameter | Type | Required | Description |
|---|---|---|---|
commands | string[] | No | List of command names to install (comma-separated) |
force | boolean | No | Overwrite existing commands |
Examples
Install all default commands:
bash
install_commandsInstall specific commands:
bash
install_commands --commands initialize,analyzeOutput
Creates or updates the following directory structure:
.orchestre/
├── commands/
│ ├── initialize/
│ │ └── prompt.md
│ ├── analyze/
│ │ └── prompt.md
│ └── ...
└── config.jsonError Handling
- If the
.orchestredirectory already exists, the command will fail unless--forceis specified - Missing or invalid command names will result in an error
- File permission issues will be reported with appropriate error messages
