@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.
@@ -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.