codemantle
v0.1.39
Published
CodeMantle orchestrator CLI for panel and agent setup/runtime.
Downloads
3,197
Maintainers
Readme
codemantle
Unified CodeMantle orchestrator CLI.
This package provides a single codemantle command that delegates to:
@codemantle/panel(codemantle-panel)@codemantle/agent-daemon(codemantle-agent)
Install
Install in a project:
npm install codemantleInstall globally:
npm install -g codemantleOr run without installing globally:
npx codemantle --helpQuick usage
Start panel flow:
codemantle --panelStart agent setup flow:
codemantle --agentCommands
| Command | Description | Default Behavior |
| ------------------------------ | ----------------- | -------------------------------- |
| codemantle --panel [args...] | Start panel | codemantle-panel start |
| codemantle --agent [args...] | Start agent | codemantle-agent --setup |
| codemantle panel [args...] | Panel subcommand | Pass-through to panel CLI |
| codemantle agent [args...] | Agent subcommand | Pass-through to agent CLI |
| codemantle setup [target] | Interactive setup | all (panel init + agent setup) |
Defaults explained:
codemantle --panel→codemantle-panel startcodemantle --agent→codemantle-agent --setupcodemantle setup panel→codemantle-panel initcodemantle setup agent→codemantle-agent --setupcodemantle setup→ runs panel init first, then agent setup
Examples
Initialize panel env in a specific path:
codemantle panel init --env-file /opt/codemantle/.envStart panel with an explicit env file:
codemantle --panel --env-file /opt/codemantle/.env --non-interactiveRun agent directly:
codemantle agentRun agent setup explicitly:
codemantle agent --setupNotes
- This package is an orchestrator wrapper; protocol/auth behavior is owned by panel and agent packages.
- Keep
@codemantle/paneland@codemantle/agent-daemonversions aligned with this package version for predictable behavior.
Related docs
- https://github.com/XQuestCode/codemantle/tree/main/apps/control-plane
- https://github.com/XQuestCode/codemantle/tree/main/packages/agent-daemon
- https://github.com/XQuestCode/codemantle/blob/main/docs/deployment.md
