@cyber-dash-tech/revela 0.18.3 → 0.18.5
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 +7 -5
- package/README.zh-CN.md +7 -5
- package/lib/commands/refine.ts +1 -1
- package/lib/decks-state.ts +1 -0
- package/lib/document-materials/extract.ts +25 -20
- package/lib/material-intake.ts +9 -4
- package/lib/narrative-vault/constants.ts +1 -1
- package/lib/narrative-vault/paths.ts +7 -2
- package/lib/refine/comment-requests.ts +1 -1
- package/lib/refine/prompt-bridge.ts +94 -25
- package/lib/refine/review-comments.ts +203 -0
- package/lib/refine/server.ts +1073 -216
- package/lib/runtime/index.ts +3 -2
- package/lib/workspace-meta.ts +32 -0
- package/package.json +1 -1
- package/plugin.ts +4 -3
- package/plugins/revela/.mcp.json +1 -1
- package/plugins/revela/hooks/revela_guard.ts +2 -2
- package/plugins/revela/mcp/revela-server.ts +1 -1
- package/plugins/revela/skills/revela-export/SKILL.md +30 -1
- package/plugins/revela/skills/revela-helper/SKILL.md +48 -0
- package/plugins/revela/skills/revela-make-deck/SKILL.md +93 -15
- package/plugins/revela/skills/revela-research/SKILL.md +57 -15
- package/plugins/revela/skills/{revela-review-deck → revela-review}/SKILL.md +28 -7
- package/tools/workspace-scan.ts +1 -1
- package/plugins/revela/skills/revela-design/SKILL.md +0 -46
- package/plugins/revela/skills/revela-domain/SKILL.md +0 -30
- package/plugins/revela/skills/revela-init/SKILL.md +0 -31
- package/plugins/revela/skills/revela-upgrade/SKILL.md +0 -33
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: revela-upgrade
|
|
3
|
-
description: Guide Revela Codex plugin upgrade, update, version, and reinstall requests while checking the running runtime version first.
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# Revela Upgrade
|
|
7
|
-
|
|
8
|
-
Use this skill when the user asks how to upgrade, update, reinstall, or check the version of the Revela Codex plugin.
|
|
9
|
-
|
|
10
|
-
## Workflow
|
|
11
|
-
|
|
12
|
-
1. Call `revela_doctor` first to inspect the currently running Revela runtime version.
|
|
13
|
-
2. Report the current runtime version from doctor output. Do not check the latest version online unless the user explicitly asks you to look it up.
|
|
14
|
-
3. Explain that the Codex Git marketplace ref and `.mcp.json` npm runtime pin are published together for the same Revela release.
|
|
15
|
-
4. If the user wants a fixed release, guide them through removing the installed plugin, removing the marketplace entry, adding the desired release tag, then adding the plugin again:
|
|
16
|
-
|
|
17
|
-
```bash
|
|
18
|
-
codex plugin remove revela@revela
|
|
19
|
-
codex plugin marketplace remove revela
|
|
20
|
-
codex plugin marketplace add https://github.com/cyber-dash-tech/revela --ref vX.Y.Z
|
|
21
|
-
codex plugin add revela@revela
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
5. If the user already tracks a branch or movable ref, guide them through upgrading the marketplace clone, then re-adding the plugin:
|
|
25
|
-
|
|
26
|
-
```bash
|
|
27
|
-
codex plugin marketplace upgrade revela
|
|
28
|
-
codex plugin add revela@revela
|
|
29
|
-
```
|
|
30
|
-
|
|
31
|
-
6. Tell the user to start a new Codex thread after upgrading so Codex reloads the Revela skills, MCP tools, hooks, and runtime pin.
|
|
32
|
-
|
|
33
|
-
Do not run `codex plugin remove`, `codex plugin marketplace remove`, `codex plugin marketplace add`, `codex plugin marketplace upgrade`, or `codex plugin add` unless the user explicitly asks you to perform the upgrade or reinstall.
|