بنقرة واحدة
agent-tool-map
Agent Tool Map Skill
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Agent Tool Map Skill
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Safe, deny-by-default intake workflow for the T3MP3ST offensive-security capability candidate.
Multi-Agent Collaboration Skill
Security audit and vulnerability scanning workflow. Use when reviewing code for security issues, checking configurations, or validating hardening measures.
Context Efficiency Skill
System Dev Skill — NixOS-Dev-Quick-Deploy Harness
Query structured wiki sections in .understand-anything/wiki/ for subsystem overviews, architecture, and function discovery — before reading raw files
| name | agent-tool-map |
| description | Agent Tool Map Skill |
Maps common operations to the correct tool names for Claude, Gemini, Codex, and the local agent so delegated prompts do not ask an agent to call unavailable tools.
gemini, codex, claude, tools, tool-names, grep_search, run_shell_command, read_file, replace
Writing prompts for Gemini or Codex; tool call failing with "Tool not found"; unsure which tool name to use in a delegation prompt for a specific agent.
Each agent has different tool names for the same operation. Use the correct name when writing prompts or delegation instructions.
Read; Gemini CLI read_file; Codex CLI read_file; local agent read_file / Read.Grep; Gemini CLI grep_search; Codex CLI grep_search; local agent grep_search.Glob; Gemini CLI find_files; Codex CLI find_files; local agent find_files.Edit; Gemini CLI replace; Codex CLI apply_patch; local agent replace.Write; Gemini CLI write_file; Codex CLI write_file; local agent write_file.Bash; Gemini CLI unavailable in auto_edit; Codex CLI terminal tool; local agent run_command.WebFetch; Gemini CLI web_fetch; Codex CLI n/a; local agent n/a.run_shell_command Does Not ExistIn Gemini CLI auto_edit mode, run_shell_command is NOT available. Any attempt returns
"Tool not found" and wastes a turn.
When writing Gemini delegation prompts:
WRONG: "Run `python3 -m py_compile file.py` to validate"
RIGHT: "Validate by reading file.py and checking for obvious syntax errors with grep_search"
WRONG: "Execute the tier0 validation gate"
RIGHT: "Read the gate script and verify the conditions it checks are met in the files"
For validation in Gemini prompts, rely on:
read_file to verify file contentsgrep_search to find patternsreplace + re-read to confirm edits took effect| Mode | Tools available | Use for |
|---|---|---|
auto_edit | read_file, write_file, grep_search, find_files, replace, web_fetch | Code editing, review, analysis |
default | read_file, grep_search, find_files, web_fetch | Read-only research |
yolo | ALL tools, auto-approved | Full autonomous operation |
Current harness usage: Gemini is primarily auto_edit mode. Design delegation prompts
that do not rely on shell execution.
Codex requires stdin from /dev/null:
scripts/ai/delegate-to-codex --prompt "..." < /dev/null
Large prompts must go in a file:
scripts/ai/delegate-to-codex --prompt-file /tmp/prompt.txt < /dev/null
Codex uses apply_patch for edits (unified diff format). When writing Codex prompts for
code changes, describe the change and let Codex generate the patch — don't ask for replace.
Local agent running via --mode agent has access to the coordinator's MCP tools:
hybrid_search — searches AIDB collectionsrecall_agent_memory — retrieves from memory brokerstore_agent_memory — writes to memory brokerget_hints — gets contextual hintsai_coordinator_delegate — delegates to sub-agent (recursive)Local agent in --mode direct has NO tool access — it receives only the prompt and produces
text. Do not ask it to "check the service status" or "run the QA" in direct mode.
--prompt-file)