com um clique
multica
// Runs Multica CLI commands by mapping the user's request to the right `multica <command>` invocation. Use when the user asks to do anything with Multica — issues, agents, workspaces, autopilots, skills, squads, or the daemon.
// Runs Multica CLI commands by mapping the user's request to the right `multica <command>` invocation. Use when the user asks to do anything with Multica — issues, agents, workspaces, autopilots, skills, squads, or the daemon.
Shows a report of skill invocations and usage frequency.
Picks the right Kubernetes Deployment update strategy (RollingUpdate / Recreate / Blue-Green / Canary) for the situation. Use when configuring a new Deployment, changing rollout config, or deciding how to ship a risky change.
Runs Multica CLI commands by mapping the user's request to the right `multica <command>` invocation. Use when the user asks to do anything with Multica — issues, agents, workspaces, autopilots, skills, squads, or the daemon.
Diagnoses and fixes CI/CD failures from GitHub Actions logs. Use when a build is broken, CI is red, or a pipeline has failed.
Generates written content — blog posts, social posts, emails, and marketing copy — matched to the project's existing voice. Use when the user needs written material.
Translates text between any two languages while preserving source format. Use when the user needs to translate plain text, code, or markdown content.
| name | multica |
| description | Runs Multica CLI commands by mapping the user's request to the right `multica <command>` invocation. Use when the user asks to do anything with Multica — issues, agents, workspaces, autopilots, skills, squads, or the daemon. |
| when_to_use | multica, multica cli, multica login, multica issue, multica agent, multica autopilot, multica daemon, multica workspace, multica squad, multica skill, multica runtime, multica repo, multica setup, multica config |
| allowed-tools | Bash |
Thin pass-through skill: translate the user's request into a multica <command> [args] call and run it. Reference: https://multica.ai/docs/cli
| Area | Common commands |
|---|---|
| Auth/setup | multica login, multica auth status, multica auth logout, multica setup cloud, multica setup self-host |
| Workspaces | multica workspace list, multica workspace get <slug>, multica workspace member list, multica workspace update <id> |
| Issues | multica issue list, multica issue get <id>, multica issue create, multica issue assign <id> --agent <slug>, multica issue search <query> |
| Projects | `multica project list |
| Agents | multica agent list, multica agent get <slug>, multica agent create, multica agent tasks <slug> |
| Skills | `multica skill list |
| Squads | multica squad list, multica squad create --name <n> --leader <slug>, multica squad member add <id> --agent <slug> |
| Autopilots | multica autopilot list, multica autopilot create --name <n>, multica autopilot trigger <id> |
| Daemon/runtime | multica daemon start, multica daemon status, multica runtime list, multica runtime usage |
| Misc | multica repo checkout <url>, multica config, multica version, multica update |
multica issue assign MUL-12 --agent reviewer).multica <command> --help first — never guess flag names.multica login then retry.multica is not found, ask the user to install it (don't try to install it automatically).multica --help or multica <area> --help and adapt from real output.User: "create an autopilot named Daily Review and trigger it"
multica autopilot create --name "Daily Review"
# capture the returned ID, e.g. ap-123
multica autopilot trigger ap-123
multica issue get MUL-123, not --id MUL-123).multica <command> --help.