원클릭으로
agentsbox-ask-agent
Use for cross-repo questions. Relay a message to another agentsbox agent and return its answer.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use for cross-repo questions. Relay a message to another agentsbox agent and return its answer.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when the user wants to set up, configure, or review `.agentsbox/config.toml` for a project — e.g. "set my default agent to claude", "add a published port for my dev server", "persist my cargo/pip/go cache across `agentsbox enter` runs", "configure agentsbox for this repo", or any time they want to extend the project config without clobbering existing keys. Inspects the project to propose `[[ports]]` and `[[volumes]]` and writes valid TOML directly (the `agentsbox` CLI isn't available in-box).
Use when the user asks to scaffold a minimal Nix flake for a project that does not have one.
| name | agentsbox-ask-agent |
| description | Use for cross-repo questions. Relay a message to another agentsbox agent and return its answer. |
Run:
send-message <agent-name> "<question>"
<agent-name> is the other container's A2A alias: the basename of its project directory by default, or the value passed to agentsbox enter --a2a --name <name>.
Completion criterion: the response is printed. Relay it to the user, quoting the parts that matter; do not dump it verbatim.
Before sending a DataPart for an op like put, search, or delete, confirm the target supports it:
curl -s http://<agent-name>:4096/.well-known/agent-card.json
Completion criterion: the op is listed in the agent card. Only then send the DataPart.
could not reach agent '<name>' means the container is not running with --a2a, or the alias is wrong. Tell the user to start it with agentsbox enter --a2a and confirm the alias. Do not retry blindly.