بنقرة واحدة
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 ويثبّتها لك.
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
استنادا إلى تصنيف SOC المهني
| 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.