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

FlagDescriptionDefault
--cortex-host <host>Cortex host127.0.0.1 (or from config)
--cortex-port <port>Cortex port19090 (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).

bash
mayros kaneru venture create --name "Security Audit" --prefix SEC --directive "Ship secure code" --fuel-limit 10000
FlagDescriptionRequired
--nameVenture nameYes
--prefixShort prefix for mission IDsYes
--directiveTop-level strategic directiveNo
--fuel-limitMaximum fuel budget (integer cents)No

venture list

List all ventures.

bash
mayros kaneru venture list

venture status

Get detailed venture status including mission counts, fuel usage, and agents.

bash
mayros kaneru venture status --venture <id>

mission — Manage missions within ventures

mission create

Create a mission within a venture.

bash
mayros kaneru mission create --venture <id> --title "Audit auth module" --priority critical --description "Review OAuth flows"
FlagDescriptionRequired
--ventureVenture IDYes
--titleMission titleYes
--priorityPriority: critical, high, medium, lowNo
--descriptionDetailed descriptionNo

mission list

List missions for a venture, optionally filtered by status.

bash
mayros 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).

bash
mayros kaneru mission claim --mission <id> --agent scanner --run run-001

mission transition

Transition a mission to a new status.

bash
mayros 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.

bash
mayros 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.

bash
mayros kaneru project create --venture <id> --name "Q1 Sprint" --description "All Q1 security work"

project list

List projects for a venture.

bash
mayros kaneru project list --venture <id>

project status

Get project status with mission breakdown.

bash
mayros kaneru project status --project <id>

comment — Mission comments

comment add

Add a threaded comment to a mission.

bash
mayros kaneru comment add --mission <id> --author scanner --body "Found 3 issues in auth.ts"

comment list

List all comments for a mission.

bash
mayros kaneru comment list --mission <id>

squad — Manage multi-agent squads

squad create

Create a new squad (team) of agents.

bash
mayros kaneru squad create --name "Security Team" --agents scanner,reviewer,builder --strategy additive

squad run

Run a mission on an existing squad.

bash
mayros kaneru squad run --squad <id> --mission "Audit the auth module"

squad status

Get squad status and member details.

bash
mayros kaneru squad status --squad <id>

squad list

List all squads.

bash
mayros kaneru squad list

delegate

Delegate a mission from one agent to another, transferring context.

bash
mayros kaneru delegate --from scanner --to builder --mission "Implement the auth fix"

consensus

Run consensus resolution across squad agents on a question.

bash
mayros 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.

bash
mayros 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.

bash
mayros kaneru fuse --source scanner --target shared --strategy additive

Strategies: additive, replace.


fuel — Manage fuel consumption

fuel summary

Show fuel consumption summary for a venture.

bash
mayros kaneru fuel summary --venture <id>

fuel analytics

Show cost analytics with breakdown by agent, model, and time period.

bash
mayros kaneru fuel analytics --venture <id> --period weekly

fuel forecast

Show fuel burn rate forecast for a venture.

bash
mayros kaneru fuel forecast --venture <id>

learn — Agent learning profiles and expertise

learn profile

Show learning profiles for an agent.

bash
mayros kaneru learn profile --agent scanner

learn top

Show top agents for a domain and task type.

bash
mayros kaneru learn top --domain typescript --task-type security-scan

decisions — Consensus decision history

decisions list

List recent consensus decisions for a venture.

bash
mayros kaneru decisions list --venture <id>

decisions explain

Explain a decision with full reasoning, votes, and confidence.

bash
mayros kaneru decisions explain --decision <id>

dojo — Venture templates

dojo list

List available venture templates.

bash
mayros kaneru dojo list

dojo preview

Preview a template before installing.

bash
mayros kaneru dojo preview --template security-audit

dojo install

Install a template as a new venture (creates venture, agents, directives, and chain).

bash
mayros kaneru dojo install --template security-audit --name "My Security Team"

Search Dojo templates on the Skill Hub marketplace.

bash
mayros kaneru dojo search --query "devops"

pulse — Agent wake triggers

pulse register

Register a pulse schedule for an agent.

bash
mayros 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.

bash
mayros kaneru pulse trigger --venture <id> --agent scanner --trigger assignment

pulse list

List pulse schedules for an agent.

bash
mayros kaneru pulse list --venture <id> --agent scanner

sync

Sync a venture with P2P peers.

bash
mayros kaneru sync --venture <id>

peers

List P2P peers for a venture.

bash
mayros kaneru peers --venture <id>

discover

Auto-discover P2P peers and register them for a venture.

bash
mayros kaneru discover --venture <id>

dashboard

Show Kaneru dashboard summary (squads, ventures, missions, fuel).

bash
mayros kaneru dashboard