speed-loop
9
总安装量
9
周安装量
#33270
全站排名
安装命令
npx skills add https://github.com/toomingos/open_speed_optimization_loop --skill speed-loop
Agent 安装分布
opencode
9
gemini-cli
9
claude-code
9
github-copilot
9
codex
9
cursor
9
Skill 文档
Speed Loop
If $ARGUMENTS is empty, stop and ask: “What flow or file do you want to optimize?” Do not proceed until the user provides it.
The flow to optimize is: $ARGUMENTS
Read references/start.md now. The flow above is your [FLOW] throughout that document.
File Locations
Framework (read-only): references/
start.mdâ entry pointsacred_rules.mdâ 7 inviolable rules10_optimization_commandments_example.mdâ commandments templatephase_rules/01_understand.mdâ06_integrate.md
Working directory (gitignored): speed_loop/ at project root
speed_loop/10_optimization_commandments.mdâ project-specific commandmentsspeed_loop/fundamentals/â architecture docs, rebuilt each loopspeed_loop/loop_01/,loop_02/, … â one directory per iteration
Loop Directory Structure
loop_XX/
âââ README.md # status + navigation
âââ phase1_understand.md
âââ phase2_decompose.md
âââ phase3_analysis.md
âââ phase4_implement.md
âââ phase5_results.md # verification + decision
âââ phase6_integrate.md # only if APPROVED
âââ HANDOFF.md
âââ benchmarks/
â âââ baseline.json
â âââ optimized.json
â âââ comparison.md
âââ test_server/
Always lowercase_snake_case. Never ALL_CAPS filenames.
Sacred Rules
See references/sacred_rules.md. Always cite by number when justifying decisions.
- Output Integrity â same inputs â identical outputs
- Verification Checkpoints â every optimization measured quantitatively
- Correctness First â wrong results = failure, regardless of speedup
- Test Environment Isolation â changes only in
test_server/until Phase 6 - One Optimization Per Iteration â exactly one change per loop
- Document Everything â hypothesis, implementation, measurements, decision
- Rollback Readiness â every change reversible via git tag
The 10 Commandments
See references/10_optimization_commandments_example.md. These are engineering principles â general best practices for building fast systems on this stack. Always cite by number (#1â#10) when documenting optimization decisions.