lithermes-ai 0.8.2 → 0.8.3

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,7 +1,7 @@
1
1
  {
2
- "syncedAt": "2026-06-14T07:32:26.488Z",
2
+ "syncedAt": "2026-06-14T07:44:14.269Z",
3
3
  "source": "source-reference",
4
- "sourceHash": "4ec00032263690e3fea1b618c961ae32aaa950db46d5320f4fcc79a844652ab6",
4
+ "sourceHash": "1072e4218aeda8d0a4c03e11189b07505021bc4acc3b1280bfeabdd420d1ff9a",
5
5
  "files": [
6
6
  {
7
7
  "path": "NOTICE.md",
@@ -49,7 +49,7 @@
49
49
  },
50
50
  {
51
51
  "path": "plugin.yaml",
52
- "sha256": "d356b26af023599d32bde33f8c51053fdd4970d8ff710d4d1243d87a438f0f38"
52
+ "sha256": "7ef63d09b537d994dc5ed25149b0841e84745ae352c851d9a54788ddd793b0e9"
53
53
  },
54
54
  {
55
55
  "path": "skills/ai-slop-remover/SKILL.md",
@@ -1,5 +1,5 @@
1
1
  name: lithermes
2
- version: 0.8.2
2
+ version: 0.8.3
3
3
  description: "Hermes-native workflow toolkit: litgoal durable runtime, 5-lane review orchestrator, Litwork commands, skills, and prompt steering."
4
4
  author: "Hermes Agent"
5
5
  kind: standalone
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lithermes-ai",
3
- "version": "0.8.2",
3
+ "version": "0.8.3",
4
4
  "description": "npx/bunx installer for the LitHermes Hermes plugin",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -13,7 +13,8 @@
13
13
  "url": "https://github.com/wjgoarxiv/lithermes/issues"
14
14
  },
15
15
  "bin": {
16
- "lithermes": "bin/lithermes.js"
16
+ "lithermes": "bin/lithermes.js",
17
+ "lithermes-ai": "bin/lithermes.js"
17
18
  },
18
19
  "files": [
19
20
  "bin",
@@ -129,7 +129,7 @@ function installLitHermes(flags = {}) {
129
129
  ];
130
130
  if (patchResult) lines.push(`patches: ${patchResult.changed.length ? patchResult.changed.join(", ") : "none needed"}`);
131
131
  if (patchWarning) lines.push(`patches: skipped (${patchWarning})`);
132
- if (skinFiles.length) lines.push(`HUD skins: ${skinFiles.length} accents installed — pick one with \`npx lithermes hud <accent>\``);
132
+ if (skinFiles.length) lines.push(`HUD skins: ${skinFiles.length} accents installed — pick one with \`npx lithermes-ai hud <accent>\``);
133
133
  lines.push("Restart any running Hermes gateway to load new plugins.");
134
134
  return { message: lines.join("\n") };
135
135
  });