用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/LEEI1337/phantom-neural-cortex --skill writing-plans命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | writing-plans |
| description | Create detailed implementation plans before coding (saves tokens later) |
| trigger | auto |
Create clear plans BEFORE coding to save time and tokens:
What are we building and why?
- Technology limits
- Time/resource constraints
- Compatibility requirements
- Performance targets
- Architecture pattern
- Key components
- Data flow
- Integration points
1. [Component] - Brief description
2. [Component] - Brief description
- Sub-task if needed
3. [Testing] - What to test
4. [Deployment] - How to deploy
Risk: Description
Mitigation: Solution
- Measurable outcomes
- Test coverage targets
- Performance metrics
GOAL: Add user authentication with JWT
CONSTRAINTS:
- Must use existing DB schema
- Response time < 200ms
- Support OAuth2
APPROACH:
- Middleware-based auth layer
- JWT with refresh tokens
- Redis session cache
STEPS:
1. Create auth middleware
2. Implement token generation/validation
3. Add refresh token logic
4. Write integration tests
5. Update API docs
RISKS:
- Token expiry handling → Use refresh tokens
- Concurrency issues → Use Redis locks
SUCCESS:
- All endpoints secured
- 95%+ test coverage
- Load test passes (1000 req/s)