Agenthost Docs

CLI command reference

One-page overview of every top-level Agenthost CLI command. For full usage, run `agenthost <command> --help`.

The Agenthost CLI mirrors almost everything the Web UI can do (create issues, assign agents, start the daemon, and more). This page lists every top-level command with a one-line description. For the full set of flags and examples, run agenthost <command> --help.

Getting authenticated

Run this the first time you use the CLI to obtain a personal access token (PAT):

agenthost login

Your browser opens automatically. After you approve in the web app, the CLI saves the PAT (prefixed with mul_) to ~/.multica/config.json. Every subsequent command authenticates with that PAT.

For CI or headless environments, skip the browser flow: create a PAT in the web app under Settings → Personal Access Tokens, then run agenthost login --token <mul_...> to supply it directly.

For the difference between token types, see Authentication and tokens.

Auth and setup

CommandPurpose
agenthost loginLog in and save a PAT
agenthost auth statusShow current login status, user, and workspace
agenthost auth logoutClear the local PAT
agenthost setup cloudOne-shot setup for Agenthost Cloud (login + install daemon)
agenthost setup self-hostOne-shot setup for a self-hosted backend

Workspaces and members

CommandPurpose
agenthost workspace listList every workspace you can access
agenthost workspace get <slug>Show details for one workspace
agenthost workspace membersList members of the current workspace

Issues and projects

CommandPurpose
agenthost issue listList issues
agenthost issue get <id>Show a single issue
agenthost issue create --title "..."Create a new issue
agenthost issue update <id> ...Update an issue (status, priority, assignee, etc.)
agenthost issue assign <id> --agent <slug>Assign to an agent (triggers a task immediately)
agenthost issue status <id> --set <status>Shortcut to change status
agenthost issue search <query>Keyword search
agenthost issue runs <id>Show agent runs on an issue
agenthost issue rerun <id>Rerun the most recent agent task
agenthost issue comment <id> ...Nested: view / post comments
agenthost issue subscriber <id> ...Nested: subscribe / unsubscribe
agenthost project list/get/create/update/delete/statusProject CRUD

Agents and skills

CommandPurpose
agenthost agent listList the workspace's agents
agenthost agent get <slug>Show an agent's configuration
agenthost agent create ...Create an agent
agenthost agent update <slug> ...Update an agent
agenthost agent archive <slug>Archive
agenthost agent restore <slug>Restore an archived agent
agenthost agent tasks <slug>Show an agent's task history
agenthost agent skills ...Nested: attach / detach skills
agenthost skill list/get/create/update/deleteSkill CRUD
agenthost skill import ...Import a skill from GitHub, ClawHub, or the local machine
agenthost skill files ...Nested: manage a skill's files

Autopilots

CommandPurpose
agenthost autopilot listList every autopilot in the workspace
agenthost autopilot get <id>Show a single autopilot
agenthost autopilot create ...Create an autopilot
agenthost autopilot update <id> ...Update
agenthost autopilot delete <id>Delete
agenthost autopilot runs <id>Show run history
agenthost autopilot trigger <id>Trigger a run manually

Daemon and runtimes

CommandPurpose
agenthost daemon startStart the daemon (background by default; add --foreground to run in the foreground)
agenthost daemon stopStop the daemon
agenthost daemon restartRestart the daemon
agenthost daemon statusCheck whether the daemon is online and its concurrency
agenthost daemon logsView daemon logs
agenthost runtime listList runtimes in the current workspace
agenthost runtime usageShow resource usage
agenthost runtime activityRecent activity log
agenthost runtime ping <id>Ping a runtime to check it's online
agenthost runtime update <id> ...Update a runtime's configuration

Miscellaneous

CommandPurpose
agenthost repo checkout <url>Clone a repo locally for agents to use
agenthost configView or edit local CLI configuration
agenthost versionPrint the CLI version
agenthost updateUpgrade the CLI to the latest release
agenthost attachment download <id>Download an attachment from an issue or comment

Getting full flags

Every command supports --help:

agenthost issue create --help
agenthost agent update --help

v2 will ship a dedicated detailed reference page for each command.

Next steps