feat: add user skill — CLI guide with quick start and typical workflows

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
This commit is contained in:
2026-05-26 15:51:14 +00:00
parent 87938c1886
commit fecb02b115
5 changed files with 149 additions and 1 deletions
+8
View File
@@ -22,6 +22,7 @@ import {
cmdSkillCli,
cmdSkillList,
cmdSkillModerator,
cmdSkillUser,
cmdSkillYaml,
} from "./commands/skill.js";
import { cmdStepFork, cmdStepList, cmdStepRead, cmdStepShow } from "./commands/step.js";
@@ -518,6 +519,13 @@ skill
console.log(cmdSkillModerator());
});
skill
.command("user")
.description("Print the user reference (CLI guide + typical workflows)")
.action(() => {
console.log(cmdSkillUser());
});
skill
.command("list")
.description("List all available skill names")