بنقرة واحدة
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 ويثبّتها لك.
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
استنادا إلى تصنيف SOC المهني
| 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.