원클릭으로
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.