一键导入
doc-update-blog
Update development blog with implementation milestones, learnings, and progress. Use after completing major milestones or phases.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Update development blog with implementation milestones, learnings, and progress. Use after completing major milestones or phases.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run section orchestrators to coordinate multi-component workflows. Use when starting work on a section.
Validate agent YAML frontmatter and configuration. Use before committing agent changes or in CI.
Reply to PR review comments using the correct GitHub API endpoint. Use when responding to inline code review feedback (not gh pr comment).
Run Mojo tests using mojo test command. Use when executing tests or verifying test coverage.
Track implementation progress against plan. Use to monitor component delivery and identify blockers.
Check agent configuration coverage across hierarchy levels and phases. Use to ensure complete agent system coverage.
| name | doc-update-blog |
| description | Update development blog with implementation milestones, learnings, and progress. Use after completing major milestones or phases. |
| mcp_fallback | none |
| category | doc |
Document progress and technical learnings in blog format.
cat > notes/blog/MM-DD-YYYY.md << 'EOF'
# Progress Update: YYYY-MM-DD
## What Was Accomplished
- Item 1
- Item 2
## Technical Highlights
- Implementation detail or optimization
## Next Steps
- Upcoming work
EOF
# Progress Update: YYYY-MM-DD
## What Was Accomplished
- Completed X
- Implemented Y
- Achieved Z
## Challenges Faced
- Challenge 1 and how it was solved
- Challenge 2 and lessons learned
## Technical Highlights
- Interesting implementation detail
- Performance optimization achieved
## Metrics
- Lines of code: X
- Test coverage: Y%
- Performance: Z% improvement
## Next Steps
- Upcoming work
- Planned improvements
notes/blog/MM-DD-YYYY.md - All blog entries (flat structure)- Lines of code: 250 (tensor operations)
- Test coverage: 94% (up from 87%)
- Performance: 3x speedup on matmul (cache optimization)
**Problem**: Matrix alignment causing segfaults
**Solution**: Added padding to align rows to SIMD width
**Lessons**: Always validate memory layout for SIMD operations
| Issue | Fix |
|---|---|
| No metrics | Measure before/after with specific numbers |
| Vague accomplishments | List specific implementations or fixes |
| Missing learnings | Add what was discovered/surprised you |
| No next steps | Plan immediate next work |
doc-generate-adr for architectural decisions/notes/blog/ for examples