fecb02b115
Adds 'uwf skill user' command for agents/humans using the uwf CLI. Covers setup, workflow management, thread lifecycle, step operations, CAS queries, logging, and global options with a Quick Start guide. Refs #538
15 lines
493 B
TypeScript
15 lines
493 B
TypeScript
export {
|
|
generateActorReference as cmdSkillActor,
|
|
generateArchitectureReference as cmdSkillArchitecture,
|
|
generateCliReference as cmdSkillCli,
|
|
generateModeratorReference as cmdSkillModerator,
|
|
generateUserReference as cmdSkillUser,
|
|
generateYamlReference as cmdSkillYaml,
|
|
} from "@uncaged/workflow-util";
|
|
|
|
const SKILL_NAMES = ["cli", "architecture", "yaml", "moderator", "actor", "user"] as const;
|
|
|
|
export function cmdSkillList(): ReadonlyArray<string> {
|
|
return [...SKILL_NAMES];
|
|
}
|