@cyber-dash-tech/revela 0.15.0 → 0.15.1
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/README.md +6 -7
- package/README.zh-CN.md +6 -7
- package/designs/starter/DESIGN.md +168 -171
- package/designs/starter/preview.html +2 -2
- package/designs/summit/DESIGN.md +283 -129
- package/lib/commands/edit.ts +2 -21
- package/lib/commands/help.ts +1 -2
- package/lib/commands/narrative.ts +26 -0
- package/lib/commands/review.ts +49 -12
- package/lib/decks-state.ts +122 -3
- package/lib/design/designs.ts +1 -2
- package/lib/edit/prompt.ts +6 -5
- package/lib/edit/resolve-deck.ts +1 -1
- package/lib/narrative-state/render-plan.ts +10 -1
- package/lib/qa/artifact.ts +77 -0
- package/lib/qa/checks.ts +100 -10
- package/lib/qa/index.ts +8 -6
- package/lib/qa/measure.ts +85 -0
- package/lib/refine/open.ts +21 -1
- package/lib/refine/server.ts +127 -4
- package/lib/workspace-state/types.ts +1 -0
- package/package.json +1 -1
- package/plugin.ts +36 -130
- package/skill/NARRATIVE_SKILL.md +1 -1
- package/skill/SKILL.md +5 -10
- package/tools/decks.ts +29 -3
- package/tools/narrative-view.ts +1 -1
- package/tools/qa.ts +17 -11
package/README.md
CHANGED
|
@@ -149,7 +149,6 @@ Disable ambient mode when done:
|
|
|
149
149
|
/revela make brief [file.md] render executive brief from approved story
|
|
150
150
|
/revela remember <text> save an explicit user/workflow preference
|
|
151
151
|
/revela refine open unified reading, inspection, and editing workspace
|
|
152
|
-
/revela edit deprecated shim to /revela refine Edit mode
|
|
153
152
|
/revela inspect deprecated shim to /revela refine Inspect mode
|
|
154
153
|
|
|
155
154
|
/revela review legacy readiness report for story state
|
|
@@ -181,7 +180,7 @@ Disable ambient mode when done:
|
|
|
181
180
|
/revela pptx <file> export an HTML deck to editable PPTX in the same directory
|
|
182
181
|
```
|
|
183
182
|
|
|
184
|
-
Most `/revela` commands run locally with zero LLM cost. `/revela init`, `/revela research`, `/revela story`, `/revela review`, `/revela make deck`, `/revela remember`, `/revela design new`, and `/revela design edit` start AI-assisted workflows because they need to read or update project files. These workflow commands keep the visible chat message short and inject their detailed instructions through a one-shot system-prompt command intent. `/revela refine` is the unified post-artifact workspace. It opens a local browser workspace with Edit and Inspect tabs that share the same Cmd/Ctrl-click element references. Edit sends targeted comments back into the current OpenCode session; Inspect sends grounded selection context to the current OpenCode session and renders localized Narrative Reading, Exploratory Reading, Source, and Purpose cards, has no chat box, and does not edit the deck. Deterministic preprocessing is kept as fallback context rather than the normal first UI. If a generated result omits newer reading cards, Refine keeps the deterministic Narrative Reading and Exploratory Reading cards instead of dropping context. Narrative Reading also shows artifact coverage for the selected canonical claim, including whether each recorded artifact contains the claim and whether coverage is current, stale, partial, or missing. Exploratory Reading is explicitly non-official and bounded to recorded claims, evidence, caveats, objections, risks, and artifact coverage. `/revela edit`
|
|
183
|
+
Most `/revela` commands run locally with zero LLM cost. `/revela init`, `/revela research`, `/revela story`, `/revela review`, `/revela make deck`, `/revela remember`, `/revela design new`, and `/revela design edit` start AI-assisted workflows because they need to read or update project files. These workflow commands keep the visible chat message short and inject their detailed instructions through a one-shot system-prompt command intent. `/revela refine` is the unified post-artifact workspace. It opens a local browser workspace with Edit and Inspect tabs that share the same Cmd/Ctrl-click element references. Edit sends targeted comments back into the current OpenCode session; Inspect sends grounded selection context to the current OpenCode session and renders localized Narrative Reading, Exploratory Reading, Source, and Purpose cards, has no chat box, and does not edit the deck. Deterministic preprocessing is kept as fallback context rather than the normal first UI. If a generated result omits newer reading cards, Refine keeps the deterministic Narrative Reading and Exploratory Reading cards instead of dropping context. Narrative Reading also shows artifact coverage for the selected canonical claim, including whether each recorded artifact contains the claim and whether coverage is current, stale, partial, or missing. Exploratory Reading is explicitly non-official and bounded to recorded claims, evidence, caveats, objections, risks, and artifact coverage. `/revela edit` has been removed; use `/revela refine` instead. `/revela inspect` remains only as a deprecated compatibility shim to Refine.
|
|
185
184
|
|
|
186
185
|
---
|
|
187
186
|
|
|
@@ -230,7 +229,7 @@ Use Revela as a narrative-first artifact workflow:
|
|
|
230
229
|
6. Choose or confirm design only during deck handoff, then run the deck/artifact gate with `/revela make deck --review` or the handoff workflow.
|
|
231
230
|
7. Let the agent write the HTML deck under `decks/` only after the artifact gate is ready.
|
|
232
231
|
8. Use `/revela refine` for visual comments, targeted revisions, read-only Narrative Reading, bounded Exploratory Reading, Source, and Purpose inspection, and claim-to-artifact coverage for selected deck elements.
|
|
233
|
-
9. Use `/revela edit`
|
|
232
|
+
9. Use `/revela refine` for post-artifact changes; `/revela edit` has been removed and `/revela inspect` remains only for old scripts or habits.
|
|
234
233
|
10. Export with `/revela pdf <file>` or `/revela pptx <file>`.
|
|
235
234
|
|
|
236
235
|
Use `/revela enable` only when you want ordinary chat messages, not just explicit `/revela ...` commands, to stay in Revela narrative mode.
|
|
@@ -613,19 +612,19 @@ Use the unified refinement workspace for normal post-write review and revision:
|
|
|
613
612
|
|
|
614
613
|
`/revela refine` opens the active HTML deck with two tabs. Use `Ctrl`/`Cmd` + click once to reference deck elements, then choose Edit for fast natural-language change comments or Inspect for read-only Narrative Reading, bounded Exploratory Reading, Source, Purpose, and artifact coverage review. Inspect does not mutate the deck; Edit remains the mutation path. This is the recommended entry for post-artifact reading, inspection, and editing.
|
|
615
614
|
|
|
616
|
-
|
|
615
|
+
Removed command:
|
|
617
616
|
|
|
618
617
|
```text
|
|
619
618
|
/revela edit
|
|
620
619
|
```
|
|
621
620
|
|
|
622
|
-
`/revela edit`
|
|
621
|
+
`/revela edit` has been removed. Use `/revela refine` for the unified reading, inspection, and editing workspace.
|
|
623
622
|
|
|
624
623
|
Use `Ctrl`/`Cmd` + click to reference deck elements, write a natural-language comment in the Edit tab, then send it back to OpenCode. Revela sends a structured edit prompt that includes the deck file, slide context, selected element metadata, and your comment.
|
|
625
624
|
|
|
626
|
-
LLM tool equivalent: `revela-edit` with no target. The tool
|
|
625
|
+
LLM tool equivalent: `revela-edit` with no target. The tool remains a compatibility shim and opens Refine in Edit mode when you say things like “I want to edit the deck”.
|
|
627
626
|
|
|
628
|
-
For existing decks, `/revela
|
|
627
|
+
For existing decks, `/revela refine` prepares whatever minimal project context is needed so targeted edits can still use the normal safety checks.
|
|
629
628
|
|
|
630
629
|
---
|
|
631
630
|
|
package/README.zh-CN.md
CHANGED
|
@@ -148,7 +148,6 @@ export { default } from "/absolute/path/to/revela/index.ts";
|
|
|
148
148
|
/revela make brief [file.md] 从已批准 story 渲染 executive brief
|
|
149
149
|
/revela remember <text> 保存明确的用户/工作流偏好
|
|
150
150
|
/revela refine 打开统一的阅读、检查和编辑 workspace
|
|
151
|
-
/revela edit deprecated,兼容到 /revela refine Edit mode
|
|
152
151
|
/revela inspect deprecated,兼容到 /revela refine Inspect mode
|
|
153
152
|
|
|
154
153
|
/revela review legacy story readiness report
|
|
@@ -180,7 +179,7 @@ export { default } from "/absolute/path/to/revela/index.ts";
|
|
|
180
179
|
/revela pptx <file> 将 HTML deck 导出为同目录可编辑 PPTX
|
|
181
180
|
```
|
|
182
181
|
|
|
183
|
-
大多数 `/revela` 命令都在本地执行,不消耗 LLM token。`/revela init`、`/revela research`、`/revela story`、`/revela review`、`/revela make deck`、`/revela remember`、`/revela design new` 和 `/revela design edit` 会启动 AI 辅助流程,因为它们需要读取或更新项目状态。这些 workflow command 只在可见聊天里显示短意图,详细内部说明通过一次性的 system-prompt command intent 注入。`/revela refine` 是统一的 post-artifact workspace,会打开一个本地浏览器 workspace,里面有 Edit 和 Inspect 两个 tab,并共享同一套 Cmd/Ctrl-click 元素引用。Edit 会把精准修改评论发回当前 OpenCode 会话;Inspect 会把 grounded selection context 发给当前 OpenCode 会话,并渲染本地化的 Narrative Reading、Exploratory Reading、Source、Purpose 卡片。确定性预处理保留为 fallback context,而不是默认先展示的 UI。如果生成结果缺少较新的 reading 卡片,Refine 会保留确定性 Narrative Reading 和 Exploratory Reading,而不是丢掉这些上下文。Narrative Reading 还会显示所选 canonical claim 的 artifact coverage,包括每个已记录 artifact 是否包含该 claim,以及 coverage 是 current、stale、partial 还是 missing。Exploratory Reading 明确是非官方阅读辅助,只能基于已记录 claim、evidence、caveat、objection、risk 和 artifact coverage。它没有聊天框,也不会修改 deck。`/revela edit`
|
|
182
|
+
大多数 `/revela` 命令都在本地执行,不消耗 LLM token。`/revela init`、`/revela research`、`/revela story`、`/revela review`、`/revela make deck`、`/revela remember`、`/revela design new` 和 `/revela design edit` 会启动 AI 辅助流程,因为它们需要读取或更新项目状态。这些 workflow command 只在可见聊天里显示短意图,详细内部说明通过一次性的 system-prompt command intent 注入。`/revela refine` 是统一的 post-artifact workspace,会打开一个本地浏览器 workspace,里面有 Edit 和 Inspect 两个 tab,并共享同一套 Cmd/Ctrl-click 元素引用。Edit 会把精准修改评论发回当前 OpenCode 会话;Inspect 会把 grounded selection context 发给当前 OpenCode 会话,并渲染本地化的 Narrative Reading、Exploratory Reading、Source、Purpose 卡片。确定性预处理保留为 fallback context,而不是默认先展示的 UI。如果生成结果缺少较新的 reading 卡片,Refine 会保留确定性 Narrative Reading 和 Exploratory Reading,而不是丢掉这些上下文。Narrative Reading 还会显示所选 canonical claim 的 artifact coverage,包括每个已记录 artifact 是否包含该 claim,以及 coverage 是 current、stale、partial 还是 missing。Exploratory Reading 明确是非官方阅读辅助,只能基于已记录 claim、evidence、caveat、objection、risk 和 artifact coverage。它没有聊天框,也不会修改 deck。`/revela edit` 已移除;请使用 `/revela refine`。`/revela inspect` 仅作为 deprecated 兼容入口保留。
|
|
184
183
|
|
|
185
184
|
---
|
|
186
185
|
|
|
@@ -229,7 +228,7 @@ Deck 仍然是主要 authored artifact,但现在它是从同一份 workspace s
|
|
|
229
228
|
6. 只在 deck handoff 阶段选择或确认 design,然后通过 handoff workflow 或 `/revela make deck --review` 运行 deck/artifact gate。
|
|
230
229
|
7. 只有 artifact gate ready 后,才让 agent 把 HTML deck 写到 `decks/` 下。
|
|
231
230
|
8. 用 `/revela refine` 对选中 deck 元素做可视化评论、精准修改、只读 Narrative Reading、有边界的 Exploratory Reading、Source、Purpose 检查,以及 claim-to-artifact coverage 查看。
|
|
232
|
-
9.
|
|
231
|
+
9. post-artifact 修改统一使用 `/revela refine`;`/revela edit` 已移除,`/revela inspect` 仅保留给旧脚本或旧习惯。
|
|
233
232
|
10. 用 `/revela pdf <file>` 或 `/revela pptx <file>` 导出。
|
|
234
233
|
|
|
235
234
|
只有当你希望普通聊天消息,而不只是显式 `/revela ...` 命令,也保持 Revela narrative mode 时,才需要使用 `/revela enable`。
|
|
@@ -578,19 +577,19 @@ Prompt 注入规则:
|
|
|
578
577
|
|
|
579
578
|
`/revela refine` 会打开 active HTML deck,并提供两个 tab。使用 `Ctrl`/`Cmd` + click 先引用 deck 元素,然后在 Edit 里快速写自然语言修改评论,或在 Inspect 里做只读 Narrative Reading、有边界的 Exploratory Reading、Source、Purpose 和 artifact coverage 检查。Inspect 不会修改 deck;真正的 mutation 仍然只走 Edit。这是 post-artifact 阅读、检查和编辑的推荐入口。
|
|
580
579
|
|
|
581
|
-
|
|
580
|
+
已移除命令:
|
|
582
581
|
|
|
583
582
|
```text
|
|
584
583
|
/revela edit
|
|
585
584
|
```
|
|
586
585
|
|
|
587
|
-
`/revela edit`
|
|
586
|
+
`/revela edit` 已移除。请使用 `/revela refine` 打开统一的阅读、检查和编辑 workspace。
|
|
588
587
|
|
|
589
588
|
使用 `Ctrl`/`Cmd` + 点击 deck 元素来引用它们,在 Edit tab 写一段自然语言评论,然后发送回 OpenCode。Revela 会把 deck 文件、slide 上下文、选中元素 metadata 和你的评论整理成结构化 edit prompt。
|
|
590
589
|
|
|
591
|
-
对应的 LLM tool:`revela-edit`,不需要 target。这个 tool
|
|
590
|
+
对应的 LLM tool:`revela-edit`,不需要 target。这个 tool 仍作为兼容入口保留,当你说“我要编辑这个 deck”时,agent 会打开 Refine 的 Edit mode。
|
|
592
591
|
|
|
593
|
-
对于已有 HTML deck,`/revela
|
|
592
|
+
对于已有 HTML deck,`/revela refine` 会自动准备必要的最小项目上下文,让后续精准修改仍然经过正常安全检查。
|
|
594
593
|
|
|
595
594
|
---
|
|
596
595
|
|