mayros kaneru
Kaneru is Mayros's multi-agent venture management system. The mayros kaneru command provides 18 subcommand groups with 40+ commands for managing squads, ventures, missions, learning profiles, fuel budgets, and more.
Global Options
| Flag | Description | Default |
|---|---|---|
--cortex-host <host> | Cortex host | 127.0.0.1 (or from config) |
--cortex-port <port> | Cortex port | 19090 (or from config) |
--cortex-token <token> | Cortex auth token (or CORTEX_AUTH_TOKEN env var) | — |
Subcommands
venture — Manage Kaneru ventures
venture create
Create a new venture (organizational container).
bashmayros kaneru venture create --name "Security Audit" --prefix SEC --directive "Ship secure code" --fuel-limit 10000
| Flag | Description | Required |
|---|---|---|
--name | Venture name | Yes |
--prefix | Short prefix for mission IDs | Yes |
--directive | Top-level strategic directive | No |
--fuel-limit | Maximum fuel budget (integer cents) | No |
venture list
List all ventures.
bashmayros kaneru venture list
venture status
Get detailed venture status including mission counts, fuel usage, and agents.
bashmayros kaneru venture status --venture <id>
mission — Manage missions within ventures
mission create
Create a mission within a venture.
bashmayros kaneru mission create --venture <id> --title "Audit auth module" --priority critical --description "Review OAuth flows"
| Flag | Description | Required |
|---|---|---|
--venture | Venture ID | Yes |
--title | Mission title | Yes |
--priority | Priority: critical, high, medium, low | No |
--description | Detailed description | No |
mission list
List missions for a venture, optionally filtered by status.
bashmayros kaneru mission list --venture <id> mayros kaneru mission list --venture <id> --status active
mission claim
Claim a mission for an agent run (atomic, optimistic concurrency).
bashmayros kaneru mission claim --mission <id> --agent scanner --run run-001
mission transition
Transition a mission to a new status.
bashmayros kaneru mission transition --mission <id> --status review --run run-001
Valid statuses: queued, ready, active, review, complete, abandoned.
mission complete-with-learning
Complete a mission with a learning profile update and knowledge transfer.
bashmayros kaneru mission complete-with-learning --mission <id> --run run-001 --domain typescript --task-type security-scan --score 0.95
project — Project management within ventures
project create
Create a new project to group related missions.
bashmayros kaneru project create --venture <id> --name "Q1 Sprint" --description "All Q1 security work"
project list
List projects for a venture.
bashmayros kaneru project list --venture <id>
project status
Get project status with mission breakdown.
bashmayros kaneru project status --project <id>
comment — Mission comments
comment add
Add a threaded comment to a mission.
bashmayros kaneru comment add --mission <id> --author scanner --body "Found 3 issues in auth.ts"
comment list
List all comments for a mission.
bashmayros kaneru comment list --mission <id>
squad — Manage multi-agent squads
squad create
Create a new squad (team) of agents.
bashmayros kaneru squad create --name "Security Team" --agents scanner,reviewer,builder --strategy additive
squad run
Run a mission on an existing squad.
bashmayros kaneru squad run --squad <id> --mission "Audit the auth module"
squad status
Get squad status and member details.
bashmayros kaneru squad status --squad <id>
squad list
List all squads.
bashmayros kaneru squad list
delegate
Delegate a mission from one agent to another, transferring context.
bashmayros kaneru delegate --from scanner --to builder --mission "Implement the auth fix"
consensus
Run consensus resolution across squad agents on a question.
bashmayros kaneru consensus --squad <id> --question "Should we refactor the auth module?" --strategy weighted
Strategies: weighted, majority, unanimous, quorum, byzantine.
route
Route a mission to the best agent via Q-learning and expertise blending.
bashmayros kaneru route --mission "Audit auth module" --agents scanner,reviewer mayros kaneru route --mission "Fix memory leak" --path src/auth/token-manager.ts
fuse
Merge knowledge between two agent namespaces.
bashmayros kaneru fuse --source scanner --target shared --strategy additive
Strategies: additive, replace.
fuel — Manage fuel consumption
fuel summary
Show fuel consumption summary for a venture.
bashmayros kaneru fuel summary --venture <id>
fuel analytics
Show cost analytics with breakdown by agent, model, and time period.
bashmayros kaneru fuel analytics --venture <id> --period weekly
fuel forecast
Show fuel burn rate forecast for a venture.
bashmayros kaneru fuel forecast --venture <id>
learn — Agent learning profiles and expertise
learn profile
Show learning profiles for an agent.
bashmayros kaneru learn profile --agent scanner
learn top
Show top agents for a domain and task type.
bashmayros kaneru learn top --domain typescript --task-type security-scan
decisions — Consensus decision history
decisions list
List recent consensus decisions for a venture.
bashmayros kaneru decisions list --venture <id>
decisions explain
Explain a decision with full reasoning, votes, and confidence.
bashmayros kaneru decisions explain --decision <id>
dojo — Venture templates
dojo list
List available venture templates.
bashmayros kaneru dojo list
dojo preview
Preview a template before installing.
bashmayros kaneru dojo preview --template security-audit
dojo install
Install a template as a new venture (creates venture, agents, directives, and chain).
bashmayros kaneru dojo install --template security-audit --name "My Security Team"
dojo search
Search Dojo templates on the Skill Hub marketplace.
bashmayros kaneru dojo search --query "devops"
pulse — Agent wake triggers
pulse register
Register a pulse schedule for an agent.
bashmayros kaneru pulse register --venture <id> --agent scanner --trigger timer --cron "0 */6 * * *"
Triggers: timer, assignment, mention, mission-ready, escalation.
pulse trigger
Manually trigger a pulse event for an agent.
bashmayros kaneru pulse trigger --venture <id> --agent scanner --trigger assignment
pulse list
List pulse schedules for an agent.
bashmayros kaneru pulse list --venture <id> --agent scanner
sync
Sync a venture with P2P peers.
bashmayros kaneru sync --venture <id>
peers
List P2P peers for a venture.
bashmayros kaneru peers --venture <id>
discover
Auto-discover P2P peers and register them for a venture.
bashmayros kaneru discover --venture <id>
dashboard
Show Kaneru dashboard summary (squads, ventures, missions, fuel).
bashmayros kaneru dashboard
Related
- Kaneru Overview — concepts and architecture
- Ventures & Missions — detailed guide
- Learning & Routing — how agents improve
- MCP Tools Reference — all 24 Kaneru MCP tools