用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AxelMrak/ai --skill blueprint-protocol命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | blueprint-protocol |
| description | Planning workflow - OBSERVE → ORIENT → PLAN → APPROVE → EXECUTE → DOCUMENT |
The non-negotiable workflow for non-trivial tasks.
OBSERVE → ORIENT → PLAN → APPROVE → EXECUTE → DOCUMENT
Read .ai/ files to understand current state:
.ai/CONTEXT.md - Project fundamentals.ai/checkpoints/LATEST.md - Current focus.ai/plans/ - Active plans.ai/TO-DO.md - Pending workAnalyze request against architecture:
Propose approach with:
CRITICAL: STOP and wait for explicit approval
Ask: "¿Le mando mecha?" / "Shall I execute?"
Never execute without:
Implement only after approval:
Update working memory:
.ai/checkpoints/LATEST.md.ai/TO-DO.md❌ Skip approval and execute immediately ❌ Plan without reading existing context ❌ Execute without updating documentation ❌ Assume approval from silence
ATHENA (Planning):
## Analysis
Current auth uses JWT but lacks refresh tokens
## Options
**A) Simple:** Add basic refresh token rotation
**B) Scalable:** Implement OAuth2 with PKCE
## Recommendation
Option A - meets current needs, OAuth overkill for v1
## Plan
1. [ ] Add refresh token to JWT payload
2. [ ] Create /auth/refresh endpoint
3. [ ] Update client to auto-refresh
---
¿Aprobás? Lo paso a APOLLO para implementación.
APOLLO (Execution):
## Executing Plan: auth-refresh
Step 1/3: Add refresh token to JWT
### Implementation
- Modified jwt.ts to include refresh_token claim
- Updated types to include refresh payload
### Verification
- [x] TypeScript compiles
- [x] Tests pass
---
¿Continúo con Step 2?