Skip to content

install_commands

Install and manage Orchestre commands in your project.

Overview

  • Purpose: Set up the .orchestre directory 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,plan

Parameters

ParameterTypeRequiredDescription
commandsstring[]NoList of command names to install (comma-separated)
forcebooleanNoOverwrite existing commands

Examples

Install all default commands:

bash
install_commands

Install specific commands:

bash
install_commands --commands initialize,analyze

Output

Creates or updates the following directory structure:

.orchestre/
├── commands/
│   ├── initialize/
│   │   └── prompt.md
│   ├── analyze/
│   │   └── prompt.md
│   └── ...
└── config.json

Error Handling

  • If the .orchestre directory already exists, the command will fail unless --force is specified
  • Missing or invalid command names will result in an error
  • File permission issues will be reported with appropriate error messages

Built with ❤️ for the AI Coding community, by Praney Behl