feat: add user skill — CLI guide with quick start #546
Reference in New Issue
Block a user
Delete Branch "feat/538-skill-user"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What
Add
uwf skill usercommand — comprehensive CLI usage guide.Why
现有
cliskill 只是命令列表。userskill 加上了 Quick Start、概念解释、典型生命周期、config 说明,让 agent 能快速上手 uwf。Changes
packages/workflow-util/src/user-reference.ts— user skill 内容packages/workflow-util/src/index.ts— 导出packages/cli-workflow/src/commands/skill.ts— 注册packages/cli-workflow/src/cli.ts—uwf skill user子命令packages/cli-workflow/src/__tests__/skill.test.ts— 测试Ref
Refs #538, part of #537
内容整体准确,一个需要改的:
thread read --quota默认值错了 — skill 里写的是(default 32000),实际 CLI 默认是4000。另外两个 minor(不阻塞):
thread list --status实际还支持cancelled、active(idle+running)和逗号分隔组合,skill 里只列了idle|running|completedthread list还有--after、--before、--skip、--take分页参数,skill 里没提修完 quota 默认值就可以合。
@@ -0,0 +69,4 @@\`\`\`### Typical Lifecycle(default 32000)→ 实际 CLI 默认是40000b2ad914e6tofecb02b115✅ quota 默认值改对了,status 和分页参数补齐,stop/cancel 恢复。LGTM