用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/az9713/pilot-in-command-workflow --skill pic-integration命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | pic-integration |
| description | Run an integration study to test components together |
| args | [components to test] |
You are running an integration study to test how components work together. Follow this protocol exactly.
Components to test: $ARGS
If no components were specified, ask the user what they want to test together.
Integration Over Ablation - Test ideas together, not in isolation. This skill embodies the NVIDIA Nemotron philosophy of evaluating combined effects.
Use integration studies when:
Read .pic/state.json to check workflow state.
Note: Integration studies can run during any phase, but are most common during Testing.
Read existing results in .pic/integration-results/ to determine the next ID.
Format: INT-[NNN] where NNN is zero-padded
Clarify with the user (if not already specified):
Document the integration test plan:
## Integration Test Plan
### Components Under Test
- [Component 1]: [brief description]
- [Component 2]: [brief description]
...
### Interfaces Being Tested
| From | To | Type | Description |
|------|-----|------|-------------|
| [comp1] | [comp2] | [API/event/etc] | [what's exchanged] |
### Test Scenarios
#### Scenario 1: [Name]
- **Description**: [What we're testing]
- **Steps**:
1. [Step]
2. [Step]
- **Expected Result**: [What should happen]
#### Scenario 2: [Name]
...
### Success Criteria
- [ ] [Criterion 1]
- [ ] [Criterion 2]
Use the Task tool with subagent_type: "test-writer" (the testing PIC's agent type):
Prompt:
You are running an integration study (INT-[NNN]) for workflow [workflow-id].
## Components to Test
[component list]
## Test Plan
[test plan from Step 4]
## Instructions
1. Execute each test scenario
2. Record results with evidence
3. Note any unexpected behaviors
4. Document failures with reproduction steps
5. Report overall integration health
Return your findings in a structured format.
Write to .pic/integration-results/INT-[NNN].md:
# INT-[NNN]: [Title]
**Date**: [ISO date]
**Workflow**: [workflow id]
**Phase**: [current phase]
**Status**: [Pass/Fail/Partial]
## Overview
**Components Tested**: [list]
**Duration**: [how long it took]
**Result**: [summary]
## Test Plan
[From Step 4]
## Results
### Scenario 1: [Name]
- **Status**: [Pass/Fail]
- **Observations**: [What happened]
- **Evidence**: [Logs, outputs, etc.]
### Scenario 2: [Name]
...
## Issues Found
### Issue 1: [Title]
- **Severity**: [Critical/High/Medium/Low]
- **Components Affected**: [list]
- **Description**: [What's wrong]
- **Reproduction**: [How to reproduce]
- **Suggested Fix**: [If known]
## Integration Health
### Working Well
- [What integrates correctly]
### Needs Attention
- [What has problems]
### Recommendations
- [Suggested next steps]
## Conclusion
[Overall assessment of integration status]
Log the integration study:
Append to .pic/status-log.jsonl:
{"timestamp": "[ISO]", "event": "integration_study", "id": "INT-[NNN]", "components": "[list]", "result": "[pass/fail/partial]"}
Display summary to user:
## Integration Study Complete
**ID**: INT-[NNN]
**Components**: [list]
**Result**: [Pass/Fail/Partial]
### Summary
[Brief overview of findings]
### Issues Found
[Count and severity breakdown]
### Recommendations
[Key next steps]
Full results saved to: .pic/integration-results/INT-[NNN].md