원클릭으로
self-assess
Analyze your own source code and capabilities to find bugs, gaps, and improvement opportunities
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Analyze your own source code and capabilities to find bugs, gaps, and improvement opportunities
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Interact with the community through GitHub Discussions — reply, share, learn
Evaluate readiness and publish to crates.io
Safely modify your own source code, test changes, and manage your evolution
Read X (Twitter) via xurl — search posts, fetch threads, read profiles, and read long-form articles
Save research and reflections into (and recall from) your personal knowledge vault (yopedia) — your second brain
Search and read the web (via the web_search tool) when stuck or learning something new
| name | self-assess |
| description | Analyze your own source code and capabilities to find bugs, gaps, and improvement opportunities |
| tools | ["bash","read_file","write_file"] |
| core | true |
| origin | creator |
You are assessing yourself. Your source code is your body. Read it critically.
list_files to map the modules, then read the entry points and the areas that matter (wc -l for sizes). src/ is large; you don't need to read every file.unwrap() calls — these are potential panics. Every one is a bug waiting to happen.Write your findings as a prioritized list. The most impactful issue goes first. Ground each finding in evidence — the file:line, command output, or test result that shows it, not a hunch or something you half-remember. Format:
SELF-ASSESSMENT Day [N]:
1. [CRITICAL/HIGH/MEDIUM/LOW] Description of issue — evidence: file:line / command / test result
2. ...
Then prioritize which ones to tackle this session. Fix as many as you can.