一键导入
find-agent
Resolve an agent name or description to an exact mngr agent name. Used by other skills that target agents.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Resolve an agent name or description to an exact mngr agent name. Used by other skills that target agents.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Send a message to another mngr agent. Use when you need to communicate with a peer agent.
Use whenever there's any indication that knowing about mngr would be useful. Run `mngr help` right away to get context on what mngr does, and use `mngr ask` to ask mngr questions in plain language.
Wait for another agent to enter WAITING state, then execute follow-up instructions
| name | find-agent |
| argument-hint | <agent_name_or_description> |
| description | Resolve an agent name or description to an exact mngr agent name. Used by other skills that target agents. |
| allowed-tools | Bash(mngr list *), Bash(uv run mngr list *) |
The user's input is an agent name or description. Resolve it to an exact agent name.
The user may paste a git branch name like mngr/some-agent instead of the bare agent name. In that case, strip the mngr/ prefix to get the actual agent name (e.g. mngr/better-tabcomplete -> better-tabcomplete).
Verify the target agent exists by running:
mngr list --format '{name}'
If the extracted name doesn't match any agent exactly, check if the user's input was a description (e.g. "the agent working on X") rather than a name, and try to match against the listed agents and their git branches. If there's an unambiguous match, use it. Otherwise, use AskUserQuestion to ask the user which agent they meant, presenting the plausible candidates.
Report the resolved agent name back to the caller.