소스 정보
- 저장소
- 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 when-stuck명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | when-stuck |
| description | Dispatch to right technique when you hit a wall |
| version | 1.0.0 |
| author | Ariff |
| when_to_use | When progress stops - identify stuck type and apply matching technique |
You're stuck when:
| Stuck Type | Symptoms | Technique |
|---|---|---|
| Don't understand | Requirements unclear | → Ask user for clarification |
| Can't find code | No idea where logic lives | → Semantic search, file patterns |
| Bug won't die | Fix doesn't work | → Root cause tracing |
| Tests keep failing | Can't get green | → Defense in depth, fresh look |
| Scope creep | Task keeps growing | → Scope boundary check |
| Missing context | Need info I don't have | → Read more files, ask user |
| Wrong approach | This path won't work | → Brainstorm alternatives |
| Overwhelmed | Too complex | → Break into smaller pieces |
| Going in circles | Same ground repeatedly | → Fresh agent via subagent |
STOP trying to guess
ASK: "I'm unclear on [specific thing]. Could you clarify [specific question]?"
WAIT for response before proceeding
1. Semantic search with concept terms
2. Grep for unique strings
3. File pattern matching
4. Read likely files
5. List directories to discover structure
1. Document exact symptom
2. Trace backward: where does bad value come from?
3. Keep tracing until you find ORIGIN
4. Fix at origin, not symptoms
1. Stop. Step back.
2. Re-read test expectation
3. Re-read actual behavior
4. Check: is test right or is code right?
5. Check: is environment consistent?
1. Re-read original request
2. List what you've done vs. what was asked
3. Identify scope drift
4. Either: refocus OR ask user if expansion wanted
1. What specific info do you need?
2. Where might it be? (files, user knowledge, docs)
3. Ask/search for that specific info
4. Don't proceed without it
1. What other approaches exist?
2. List 3-4 alternatives
3. Evaluate each briefly
4. Pick most promising, try it
5. If that fails, try next
1. What's the smallest possible piece?
2. Do JUST that piece
3. Verify it works
4. What's next smallest piece?
5. Repeat until done
Signal: Same ground covered 3+ times
Action: Use subagent for specific subtask
Pass: Clear scope, success criteria
Return: Just the result, not the journey
❌ Brute Force
Trying same thing harder won't work
If it failed twice, it needs a different approach
❌ Hoping
"Maybe this time..." → No
Stop. Diagnose. Change approach.
❌ Hiding
Not admitting you're stuck wastes time
Say: "I'm stuck on X. Here's what I've tried..."
After applying technique:
Pairs well with:
assumption-checker → Often stuck because of wrong assumptionintent-clarifier → Often stuck because of unclear intentbrainstorming → For generating alternativesroot-cause-tracing → For debugging stuck