@minus-ai/create-skill 0.1.0-beta.19 → 0.1.0-beta.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minus-ai/create-skill",
3
- "version": "0.1.0-beta.19",
3
+ "version": "0.1.0-beta.20",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "create-skill": "index.mjs"
@@ -1,7 +1,7 @@
1
1
 
2
2
 
3
3
  # ──────────────────────────────────────────────────────────────────────────────
4
- # SDK 参考(纯注释,读懂后可整段删除)
4
+ # SDK 参考(纯注释)
5
5
  #
6
6
  # StepOutcome 三态与 ctx 能力(entry_params / previous_outputs / last_user_input /
7
7
  # sif / llm / upload_file)的权威定义和用法,读已安装 SDK 的模块头注释与 docstring:
@@ -11,7 +11,6 @@
11
11
  #
12
12
  # 唯一容易写反的语义:StepOutcome.input_required 暂停后,用户提交的内容
13
13
  # 挂在「下一步」的 ctx.last_user_input,而不是重跑本步。
14
- # 推论:要生成「基于用户选择」的 LLM 摘要,必须放到下一步(读 last_user_input 再
15
- # ctx.llm.chat);只分析整体数据的摘要才能随本步 complete/input_required 一起下发。
16
- # 三种时序见 packages/docs/frontend-guide.md「步骤摘要的三种时序」。
14
+ # 凡是涉及 LLM 步骤摘要(放本步还是下一步、随哪个终态下发),判断标准和写法
15
+ # 一律以前端开发手册子文档 step-summary.md 为准(取法见 CLAUDE.md「开发手册(索引)」)。
17
16
  # ──────────────────────────────────────────────────────────────────────────────