Files
openclaw/src/process/lanes.ts
T
Peter Steinberger 32c84b0f41 feat(skills): capture reusable techniques from successful work (#105674)
* feat(skills): capture reusable experience safely

* feat(skills): review completed work for reusable learning

* docs(skills): explain self-learning

* docs: clarify self-learning runtime scope

* fix(skills): harden autonomous workshop reviews

* test(skills): align review prompt fixture
2026-07-13 00:22:06 -07:00

11 lines
311 B
TypeScript

/** Named queue lanes for work that must not interleave with the main command stream. */
export const enum CommandLane {
Main = "main",
Crestodian = "crestodian",
Cron = "cron",
CronNested = "cron-nested",
SkillWorkshopReview = "skill-workshop-review",
Subagent = "subagent",
Nested = "nested",
}