用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/d-kimuson/super-agent --skill super-agent命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | super-agent |
| description | Enable when delegating tasks to specialized sub-agents via @kimuson/super-agent CLI |
| path | super-agent |
@kimuson/super-agent is a tool that invokes AI agents (Claude Code, Codex, etc.) through a unified CLI interface.
npx -y @kimuson/super-agent agent-list
Returns all available agent types. Each agent is a pre-configured specialist — specifying --agent-type automatically loads an optimized system prompt tailored to the agent's role.
# Foreground (blocks until complete)
npx -y @kimuson/super-agent agent-task --agent-type <type> "<prompt>"
# Background (non-blocking, returns session ID)
npx -y @kimuson/super-agent agent-task --agent-type <type> --background "<prompt>"
Use --background for async execution — allows running other tasks while waiting. Retrieve results with agent-task-output:
npx -y @kimuson/super-agent agent-task-output <session-id>
For follow-up requests or questions, resume an existing session:
npx -y @kimuson/super-agent agent-task-resume <session-id> "<follow-up prompt>"
Each agent type defines preferred providers and models in priority order. The highest-priority model from globally enabled providers is selected automatically.
Since agents are invoked over the network, they may fail due to rate limits or service outages. On failure, temporarily disable the provider with provider-cooldown and retry:
# Example: "claude is rate limited until 3:00 PM"
npx -y @kimuson/super-agent provider-cooldown claude --disabled-until "15:00"
npx -y @kimuson/super-agent agent-task --agent-type <type> "<prompt>" # retry
If unexpected errors occur, the background local server may be running an outdated version. Restart it:
npx -y @kimuson/super-agent server stop