Agent Skills
› sediman-agent/OpenSkynet
› principle-outcome-oriented-execution
principle-outcome-oriented-execution
GitHub指导在具有明确阶段边界的计划重构和迁移中,优先确保最终架构的正确性和完整性。允许受控的中间状态破坏以避免遗留兼容性债务,强调在关键节点进行验证而非维持平滑过渡。
Trigger Scenarios
执行有明确阶段边界的重构
进行系统迁移或重写
Install
npx skills add sediman-agent/OpenSkynet --skill principle-outcome-oriented-execution -g -y
SKILL.md
Frontmatter
{
"name": "principle-outcome-oriented-execution",
"description": "Apply during planned rewrites and migrations with explicit phase boundaries. Converge on the target architecture; don't preserve smooth intermediate states with throwaway compatibility code.",
"disable-model-invocation": true
}
Outcome-Oriented Execution
Optimize for the intended, verifiable end state rather than preserving smooth intermediate states.
Why: Keeping every intermediate step fully stable often creates temporary compatibility code that becomes long-lived debt. Converge on the target architecture and prove correctness at explicit verification boundaries.
Core rule:
- Prioritize end-state integrity over transitional stability
- Intermediate breakage is acceptable when it is planned, scoped, and reversible
- Always run final verification before declaring done
Guardrails:
- Use this for planned rewrites and migrations with explicit phase boundaries
- Declare where temporary breakage is acceptable
- Keep high-signal checks for actively touched areas while migrating
- Require full static and runtime verification at plan completion
Version History
- c9d8953 Current 2026-07-05 19:53


