소스 정보
- 저장소
- Dicklesworthstone/pi_agent_rust
- 최근 소스 활동
- 2026년 2월 5일 06:56
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,580
- 포크
- 184
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dicklesworthstone/pi_agent_rust --skill defense-in-depth명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Speeds up pi_agent_rust development and verification workflows. Use when editing providers, tools, sessions, extensions, installer/uninstaller logic, or triaging regressions in this repo.
Example skill loaded from resources_discover
Discovers and executes MCP tools on-demand via agentsbox_* tools. Use when you need to find the right tool, when a user asks to use a tool you don’t have in context, or when troubleshooting MCP/tool availability.
| name | defense-in-depth |
| description | Multi-layer validation to catch bugs before they escape |
| version | 1.0.0 |
| author | Ariff |
| when_to_use | When making changes - validate at multiple layers |
MULTIPLE INDEPENDENT VALIDATION LAYERS
Each layer catches what others miss
One check can fail silently. Four layers rarely do.
What: Static analysis, types, linting
Catches: Typos, syntax errors, type mismatches
Run: First, before anything else
What: Individual function/module tests
Catches: Logic errors, edge cases, regressions
Run: After each code change
What: Component interaction tests
Catches: Interface mismatches, data flow errors
Run: After unit tests pass
What: Full system tests, user scenarios
Catches: Missing requirements, workflow bugs
Run: Before claiming complete
Code Change
↓
[Layer 1: Lint/Type Check]
↓ PASS?
[Layer 2: Unit Tests]
↓ PASS?
[Layer 3: Integration Tests]
↓ PASS?
[Layer 4: E2E / Manual Check]
↓ PASS?
Done
Fail at any layer → FIX before proceeding
| Without This Layer | What Escapes |
|---|---|
| No type checks | Undefined calls crash at runtime |
| No unit tests | Logic bugs slip through |
| No integration | Components don't work together |
| No E2E | User workflows broken |
1. Make change
2. Run linter immediately
3. Run affected unit tests
4. Run integration suite
5. Test the actual feature
1. Write failing test first
2. Fix the bug
3. Run all tests (regression check)
4. Verify original symptom gone
1. Write unit tests for new logic
2. Implement feature
3. Add integration tests
4. Verify against requirements
Configure per project:
layer_1:
command: "npm run lint && npm run typecheck"
when: "On save, before commit"
layer_2:
command: "npm run test:unit"
when: "After code changes"
layer_3:
command: "npm run test:integration"
when: "After unit tests pass"
layer_4:
command: "npm run test:e2e"
when: "Before claiming done"
→ Syntax/type error in your code
→ Fix immediately, don't proceed
→ Never commit with lint errors
→ Logic error or regression
→ Check: Did you break something?
→ Check: Is your new test wrong?
→ Fix root cause, not symptoms
→ Interface/contract broken
→ Check: API changes?
→ Check: State management issues?
→ May need to update multiple files
→ User-visible problem
→ Trace back through layers
→ Ask: Which layer SHOULD have caught this?
→ Add test to that layer
pre-action-verifier → Runs before each layerassumption-checker → Validates test assumptionsscope-boundary-checker → Ensures tests cover scoperollback-planner → Ready if pipeline fails