用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/BRO3886/skills --skill prep-for-task命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | prep-for-task |
| description | Bootstrap context for a new session on the current project. Run this BEFORE starting any implementation work. |
| disable-model-invocation | true |
Bootstrap context for a new session on the current project. Run this BEFORE starting any implementation work.
cat CLAUDE.md 2>/dev/null || echo "No CLAUDE.md found"
PROJECT_DIR=$(pwd | sed 's|/|-|g; s|^-||'); cat ~/.claude/projects/"$PROJECT_DIR"/memory/MEMORY.md 2>/dev/null || echo "No MEMORY.md found"
The project instructions and auto memory above have been pre-loaded. Now launch these exploration subagents in parallel to gain comprehensive project context:
Read these files and summarize the project state:
README.md — services, configuration, credentialsgit log --oneline -20 for recent commit historygit status for working tree state~/.claude/plans/*.md — read any plan files modified in the last 7 daysExplore the full directory tree and map out the project structure. Adapt based on what you find:
Read ALL files in journals/ sorted by name (ascending), if the directory exists. For each session entry, extract signal and condense it. Return a structured summary to the main instance — do NOT return raw journal content:
## Journal Summary
### Recently Built / Fixed
<bullet per notable feature or fix, most recent first>
### Technical Gotchas
<bullet per confirmed gotcha or non-obvious behaviour>
### Architectural Decisions
<bullet per decision with rationale>
### Deferred / Known Issues
<bullet per thing explicitly deferred or known to be broken>
Omit anything already superseded by a later journal entry. Be terse — this summary must fit in ~30 lines. If no journals/ directory exists, skip this agent.
Summarize your findings to the user in this format:
## Project State
- Recent features: <list>
- Known issues: <list>
## Recent Changes
<last 5 commits, one line each>
## Key Gotchas to Remember
<top 5 technical pitfalls from journals and memory>
## Suggested Next Task
Based on open issues, in-progress branches, plan files, and deferred items from journals — suggest the single most logical next task and ask if that's the priority or if something else takes precedence.