mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-23 02:45:38 -06:00
32c84b0f41
* 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
11 lines
311 B
TypeScript
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",
|
|
}
|