一键导入
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.