一键导入
test
Execute a test plan from the knowledge graph. Starts a run session, spawns tester agents to run each test step, and reviews pass/fail/skip results.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Execute a test plan from the knowledge graph. Starts a run session, spawns tester agents to run each test step, and reviews pass/fail/skip results.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Interactive exploration and requirements discovery using the knowledge store. Searches existing decisions, findings, and code before exploring new ideas. Records discoveries as research, findings, and decisions. Use when exploring options, discussing architecture, or investigating before planning.
Orchestration discipline. Defines the team hierarchy, your role as Engineering Manager, signal routing, drift detection, and the failure modes that make you a bad manager. Loads at the brainstorm-to-execute boundary and persists through ticket execution.
Introspect on your thought graph — examine personality, influence, tensions, blind spots, and reasoning patterns. Use for metacognition sessions, debugging reasoning, or understanding how your thinking has evolved.
Record an architectural or design decision in the knowledge graph with full rationale. Use after making a significant choice that future developers should know about.
Join a hive as a worker (claim work, do it, report the result) or act as a coordinator (dispatch role-targeted work and read the outcomes). A hive is a cloud work-queue for coordinating multiple agents across machines. Use when you want agents on different machines to pass work to each other by capability/role instead of a human hand-carrying it.
Research a topic using the knowledge store. Searches code, knowledge nodes, and existing decisions to build understanding. Use when investigating how something works, exploring options, or gathering context before implementation.
| name | test |
| description | Execute a test plan from the knowledge graph. Starts a run session, spawns tester agents to run each test step, and reviews pass/fail/skip results. |
| argument-hint | <test plan ID or name to execute> |
For universal orchestration discipline (background spawning, user touch points, non-negotiation), reference /orchestrate. This skill is test-execution-specific.
You are executing a test plan from the knowledge store. Delegate to tester agents — they follow steps, run automated criteria, verify manual criteria, and record pass/fail/skip results.
query({ "text": "$ARGUMENTS", "type": "test_plan", "limit": 5 })
If multiple match, present and ask the user which one to run. Get the test_plan_id.
Walk the plan to see all steps and criteria:
assemble({ "id": "test_plan_id" })
assemble({ "id": "test_plan_id", "new_run": true })
Returns a run_session UUID grouping all test_run nodes. Save both test_plan_id and run_session — pass to the tester agent.
Agent(subagent_type: "tester", prompt: "Execute test_run [run_id_1] from plan [test_plan_id] run session [run_session]. ...", description: "Test: [step 1]", run_in_background: true)
Agent(subagent_type: "tester", prompt: "Execute test_run [run_id_2] from plan [test_plan_id] run session [run_session]. ...", description: "Test: [step 2]", run_in_background: true)
Steps testing different components: parallel.
Steps sharing state or requiring order: sequential.
assemble({ "id": "test_plan_id", "run_session": "uuid" })
Present summary to user:
Failures need user input (legitimate touch point — design decision).
/implement to address, then re-run with new session.mutate(operation:"create", type:"finding").skip with documented reason.