helmor-cli
dohooo/helmor
Remote-control Helmor from the terminal to manage repositories, workspaces, agents, and PR stacks.
What is helmor-cli?
Helmor CLI is a command-line interface for controlling Helmor, a multi-agent development platform. Use it to inspect data/settings, manage repositories and workspaces, send prompts to agents, handle GitHub integration, and orchestrate stacked PR workflows for large changes.
- Manage repositories, workspaces, sessions, and files via CLI commands
- Send prompts to agents and list available models
- Plan and build large changes as stacks of dependent PRs with stack/break/restack commands
- Integrate with GitHub for PR management
- Run Helmor as an MCP server for integration with other tools
- Generate shell completions and inspect scripts
How to install helmor-cli
npx skills add https://github.com/dohooo/helmor --skill helmor-cli- Helmor installed (release or dev build)
- Node.js and npm (for skill installation via npx)
How to use helmor-cli
- 1.Run helmor cli-status to verify CLI installation and data mode
- 2.Run helmor data to check active data directory and database
- 3.Use helmor <command> --help to see available subcommands and flags
- 4.For stacked PR workflows: use helmor stack to plan, helmor break to split existing changes, or helmor restack to re-sync after merges
- 5.Use helmor send to dispatch prompts to agents from the terminal
- 6.Run helmor mcp to start Helmor as an MCP server
Use cases
- Dispatch work to agents from the terminal using helmor send
- Plan a large feature as a stack of dependent PRs with helmor stack, then split or re-sync after merges
- Inspect Helmor data directory and active database configuration
- Automate Helmor workflows in scripts using JSON output mode
- Run Helmor as an MCP server for integration with other AI agents or tools
- Developers using Helmor for multi-agent development workflows
- Engineers managing complex changes across multiple dependent PRs
- Terminal-first users preferring CLI over desktop UI
- Automation engineers integrating Helmor into scripts or CI/CD pipelines
helmor-cli FAQ
Use the Helmor desktop app's Components panel for managed CLI installation and updates. Verify with helmor cli-status. Do not use standalone install commands unless documented in helmor --help.
stack: plan and build a large change as dependent PRs. break: split a change you've already written into a PR stack. restack: re-sync a PR stack after a lower layer changed or merged.
Use helmor send --help to see options, then run helmor send with your prompt. Use --json flag for automation and script parsing.
Yes, but do not assume helmor-dev is on PATH. Use the exact CLI path provided in your system prompt (typically <worktree>/src-tauri/target/debug/helmor-cli) or run it from your active worktree.
Run helmor mcp over stdio. This allows other agents or tools to call Helmor through the Model Context Protocol.
Full instructions (SKILL.md)
Source of truth, from dohooo/helmor.
name: helmor-cli
description: Use the Helmor CLI to remote-control Helmor from the terminal. Use when the user asks to inspect Helmor data/settings, manage repositories/workspaces/sessions/files, send prompts to agents, list models, use GitHub integration, inspect scripts, migrate from Conductor, run Helmor as an MCP server, generate shell completions, quit a running app, check/install/update the Helmor CLI beta, install/update Helmor skills through the beta app flow, or needs the Helmor command reference. Also plan and build a large change as a stack of dependent PRs (/helmor-cli stack), split a change you've already written into a stack (/helmor-cli break), and re-sync a stack after lower layers change or merge (/helmor-cli restack).
Helmor CLI
Use this skill to guide simple terminal-first Helmor workflows. Keep the answer practical: prefer one or two concrete commands over a long CLI tutorial.
Command Routing
Route by the first word after /helmor-cli:
restack— re-sync a PR stack after a lower layer changed or merged. Followreferences/restack.md. (This is what the composer's Restack button sends.)stack— plan and build a large change as a stack of dependent PRs. Followreferences/stacked-pr.md.break— split the change you've ALREADY written in the current workspace into a stack of smaller dependent PRs, confirming the slicing granularity with the user first. Followreferences/break.md.- Anything else (or no argument) — an ordinary Helmor CLI task; use the binary-name guidance and command reference below.
Binary Name (Release vs Dev)
Examples below use the literal name helmor — the binary a release user has on their PATH.
- Release builds: invoke commands as
helmor <subcommand>. - Dev builds: do NOT assume
helmor-devis on PATH. Under Helmor's worktree-based dev workflow every worktree has its owntarget/debug/helmor-cli, and a shared/usr/local/bin/helmor-devsymlink (if it exists) can only point at one of them. Instead:- If you're an agent running inside Helmor, the system prompt has already handed you the exact CLI invocation to use (typically an absolute path like
<worktree>/src-tauri/target/debug/helmor-cli). Call it verbatim — don't re-verify withwhich/file/--version. - If you're a human at a terminal, run
<your-worktree>/src-tauri/target/debug/helmor-cli <subcommand>(or whatever path your active Helmor build uses).
- If you're an agent running inside Helmor, the system prompt has already handed you the exact CLI invocation to use (typically an absolute path like
The rest of every command shape is identical regardless of build.
First Checks
- Check whether the CLI is installed and which data mode it targets:
helmor cli-status
- Check the active data directory and database:
helmor data
Use --json when the output will be parsed by scripts or another tool.
CLI Install And Update
Treat Helmor CLI install/update as beta.
- Prefer the Helmor desktop onboarding/settings Components panel for installing or repairing the managed CLI entrypoint.
- Use
helmor cli-statusto verify whether the PATH entry points at the current app-managed CLI. - Do not invent a stable standalone install/update command unless it exists in
helmor --helpor a subcommand help page. - If the user is blocked, ask them to run
helmor cli-statusand share the output, or inspect the app's Components panel if working inside the Helmor repo.
Helmor Skills Install And Update
Treat Helmor skills install/update as a beta app-managed flow.
- Prefer the Helmor desktop onboarding/settings Components panel for installing or updating bundled Helmor skills.
- Do not invent a
helmor skillscommand; the top-level CLI help does not currently expose one. - If the user asks to update a bundled Helmor skill inside the repo, edit the skill files directly and validate them with the skill validation tooling.
- Keep user-facing skill content concise and English-first unless the user explicitly asks for another language.
Common Tasks
Manage Repositories And Workspaces
Use these command groups for local-first project setup and workspace orchestration:
helmor repo --help
helmor workspace --help
When creating workspaces, prefer explicit repo names and concise purpose labels:
helmor workspace new --repo helmor
Inspect Sessions And Files
Use sessions for conversation history and files for editor-surface operations:
helmor session --help
helmor files --help
Send A Prompt To An Agent
Use send when the user wants to dispatch work from the terminal:
helmor send --help
Favor JSON output for automation:
helmor --json send --help
Integrations And Local Tooling
Use the relevant command group:
helmor github --help
helmor scripts --help
helmor models --help
MCP Server
Run Helmor as an MCP server over stdio:
helmor mcp
Use this when another agent/runtime needs to call Helmor through Model Context Protocol.
Command Reference
Read references/helmor-help.md when you need the full top-level helmor --help command list.
For exact flags on a command group, run the group's help instead of guessing:
helmor <command> --help
Related skills
More from dohooo/helmor and the wider catalog.

chatroom-austrian
Austrian economics debate with Hayek, Mises, and Claude as moderator.

dbs
Entry point for dontbesilent business toolkit: pre-task routing and post-task navigation.

dbs-action
Diagnose why you know what to do but don't do it using Adlerian psychology.

dbs-agent-migration
把混乱的 Claude Code / Codex / Grok 配置审计、整理成三端一致、可维护的 Agent 工作台。

dbs-ai-check
Detect AI writing fingerprints in your copy and get a diagnostic report.

dbs-benchmark
Five-filter benchmark analysis to find profitable business models worth copying, cutting through self-doubt.