mirror of
https://github.com/codestable/CodeStable.git
synced 2026-09-19 09:03:09 +08:00
1.6 KiB
1.6 KiB
CodeStable Workflow and Runtime Structure
Workflow Layers
CodeStable skills are layered and event-driven:
cs
└── cs-onboard
├── cs-req / cs-arch
├── cs-roadmap
│ └── cs-roadmap-impl
├── cs-feat-design -> cs-feat-impl -> cs-feat-accept
├── cs-issue-report -> cs-issue-analyze -> cs-issue-fix
├── cs-refactor / cs-refactor-ff
└── cs-learn / cs-trick / cs-decide / cs-explore
Vertical means layers, not strict time order. Long-lived archives are refreshed repeatedly; the roadmap layer is entered for large needs. Execution is event-driven: new capability goes to feature flow, bugs go to issue flow, and code rot goes to refactor flow. The cross-cut layer is the knowledge flywheel.
Runtime Structure
After /cs-onboard, the project root gets codestable/:
codestable/
├── requirements/
├── architecture/
├── roadmap/
├── features/
├── issues/
├── refactors/
├── compound/
├── tools/
└── reference/
Key constraints:
requirements/andarchitecture/are long-lived archives and record current state.roadmap/is the planning layer for large needs.features/,issues/, andrefactors/useYYYY-MM-DD-{slug}/to group one workflow run.compound/is the single knowledge sink;doc_typedistinguishes learning / trick / decision / explore.reference/is released bycs-onboard; cross-skill shared docs must go through project-localcodestable/reference/, not direct references to another skill package.