用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/markus-global/markus --skill markus-admin-cli命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | markus-admin-cli |
| description | System administration via markus CLI — system status, emergency stop, version, and updates. |
NOTE: The CLI is intentionally minimal. Most operations should be done through built-in agent tools or the Web UI. The CLI is reserved for infrastructure bootstrap, human-agent communication, and emergency operations.
Use markus via shell_execute. The binary is automatically available in PATH.
markus admin system status --json
Always use --json when parsing results programmatically. The CLI connects to http://localhost:8056 by default. Override with --server <url> or MARKUS_API_URL. For authenticated access use --api-key <key> or MARKUS_API_KEY.
markus admin system status --json
markus admin system version --json
markus admin system update
markus admin system update --dry-run
markus admin system emergency-stop
| Command | Description |
|---|---|
admin system status | System and health status |
admin system version | Current version, git info, and whether updates are available |
admin system update | Pull latest code, install deps, rebuild. --dry-run to preview |
admin system emergency-stop | Immediately stop all agents |
When updating the platform: (1) confirm with the user, (2) run markus admin system update, (3) restart the service with markus start.
markus start # Start the server
markus doctor # Diagnose configuration
markus model # Configure LLM providers
markus models [provider] # List available models
markus auth list|add|remove # Manage API credentials
markus install <platform> # Install external agent platform
markus agent list # List agents
markus agent get <id> # Get agent details
markus agent chat <id> # Interactive chat
markus agent message <id> # Send one-shot message
For project, task, requirement, deliverable, team, and skill management, always use built-in agent tools (task_create, list_projects, requirement_propose, team_list, etc.) instead of CLI commands. The CLI does not provide these commands — they are agent-only operations.