一键导入
execgo-agent-bridge
Route shell, runtime.command, runtime.script, mcp.call, cli.run, or task_graph.submit work through Secbot's ExecGo-backed control tools.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Route shell, runtime.command, runtime.script, mcp.call, cli.run, or task_graph.submit work through Secbot's ExecGo-backed control tools.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
System-level commands for security assessment and system enumeration. Use this skill when performing local system reconnaissance, process analysis, or system information gathering during authorized security testing.
Comprehensive system control operations for security testing. Use this skill when you need unified access to file operations, process management, system information, and command execution through a single interface during authorized penetration testing.
Security-focused command execution techniques for penetration testing. Use this skill when executing system commands during authorized security assessments. Covers Windows and Linux command execution, common security testing commands, and best practices for avoiding detection.
Persistent terminal session management for security testing. Use this skill when you need an interactive shell session that maintains state between commands (working directory, environment variables, etc.) during authorized penetration testing.
Professional nmap scanning techniques and optimization for penetration testing. Use this skill when you need to perform network reconnaissance, port scanning, or service enumeration during authorized security assessments.
| name | execgo-agent-bridge |
| description | Route shell, runtime.command, runtime.script, mcp.call, cli.run, or task_graph.submit work through Secbot's ExecGo-backed control tools. |
| version | 1.0.0 |
| author | Secbot |
| tags | ["execgo","runtime","orchestration","control"] |
| triggers | ["execgo","execgo-runtime","runtime.command","task_graph"] |
| prerequisites | ["server tool execgo_action enabled","ExecGo reachable when runtime actions are needed"] |
Use this skill when work should run through ExecGo instead of ad-hoc local execution. In this repository, the primary bridge is the execgo_action tool, and execute_command can also route through ExecGo when execgo=true or SECBOT_EXECGO_ENABLED=1 is active.
runtime.command, runtime.script, mcp.call, cli.run, or task_graph.submit actions.execgo_action over hand-written HTTP calls.mode=health or mode=tools first if ExecGo availability is unknown.action_id when subsequent waits or logs need correlation.kind=os.noop for connectivity checks before side-effecting actions.execute_command; only force ExecGo when the job benefits from ExecGo task handling.execgo_action:
mode=health checks ExecGo health.mode=tools lists adapter capabilities.mode=act submits an action and waits by default.execute_command:
execgo=true to route command execution through ExecGo runtime.command.cwd or stdin_data in ExecGo mode.execgo_action with {"mode":"health"}.execgo_action with {"mode":"tools"} if you need capability discovery.os.noop for a smoke test.action_id and structured input.execute_command with execgo=true instead of building the JSON manually.Smoke test via execgo_action:
{
"kind": "os.noop",
"action_id": "smoke-noop-1",
"input": {
"message": "hello execgo"
}
}
Runtime command via execgo_action:
{
"kind": "runtime.command",
"action_id": "runtime-echo-1",
"input": {
"program": "/bin/sh",
"args": ["-c", "echo hello execgo-runtime"],
"limits": {
"wall_time_ms": 30000
}
}
}
Shell command via execute_command:
{
"command": "uname -a",
"timeout": 30,
"execgo": true
}
EXECGO_URL defaults to http://127.0.0.1:8080.EXECGO_RUNTIME_URL defaults to http://127.0.0.1:18080.EXECGO_EXECGOCLI can point to a non-default execgocli binary.SECBOT_EXECGO_ENABLED=1 makes execute_command prefer ExecGo by default.references/action-contract.md for the action envelope and kinds.references/runtime-operations.md for runtime startup and readiness expectations.references/agent-specific-notes.md for notes about fitting the upstream skill into Secbot.references/troubleshooting.md for common failures.