liteagents 2.12.0 → 2.12.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/CHANGELOG.md CHANGED
@@ -17,6 +17,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
17
17
 
18
18
  ---
19
19
 
20
+ ## [2.12.1] - 2026-07-07
21
+
22
+ ### Fixed
23
+ - **Non-Claude helper dir renamed `friction/` → `remember/`** (opencode, ampcode, droid). These tools expect a command's bundled directory to share the owning command's name; `friction.js` is run by `/remember`, so it now lives in `remember/friction.js` instead of the mismatched `friction/`. `remember.md`'s bundle-path reference updated to match. Claude keeps `friction/` — its command loader has no such naming constraint. `opencode.jsonc` needed no change (its only `friction` mention is a description string, not a path).
24
+
25
+ ---
26
+
20
27
  ## [2.12.0] - 2026-07-07
21
28
 
22
29
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "liteagents",
3
- "version": "2.12.0",
3
+ "version": "2.12.1",
4
4
  "description": "AI development toolkit with 11 specialized agents and 17 commands including live-canvas UI design with click-to-annotate feedback. Simple one-question installer for Claude, Opencode, Ampcode, and Droid.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -23,7 +23,7 @@ Reads all raw material (`.amp/stash/*.md` + `.amp/friction/antigen_clusters.json
23
23
  project are behavioral lessons worth keeping everywhere. So point it at the tool's
24
24
  **global sessions root** (all projects), not a per-project directory.
25
25
 
26
- - **Locate `friction.js`** — it is bundled next to this command at `friction/friction.js`
26
+ - **Locate `friction.js`** — it is bundled next to this command at `remember/friction.js`
27
27
  (the same directory as `remember.md`, whether installed or run from the package). If it
28
28
  exists nowhere, skip to step 1 (stash-only) and tell the user friction.js is missing.
29
29
  - **Resolve the global sessions root** — probe this list top-to-bottom, use the first that
@@ -23,7 +23,7 @@ Reads all raw material (`.factory/stash/*.md` + `.factory/friction/antigen_clust
23
23
  project are behavioral lessons worth keeping everywhere. So point it at the tool's
24
24
  **global sessions root** (all projects), not a per-project directory.
25
25
 
26
- - **Locate `friction.js`** — it is bundled next to this command at `friction/friction.js`
26
+ - **Locate `friction.js`** — it is bundled next to this command at `remember/friction.js`
27
27
  (the same directory as `remember.md`, whether installed or run from the package). If it
28
28
  exists nowhere, skip to step 1 (stash-only) and tell the user friction.js is missing.
29
29
  - **Resolve the global sessions root** — probe this list top-to-bottom, use the first that
@@ -23,7 +23,7 @@ Reads all raw material (`.opencode/stash/*.md` + `.opencode/friction/antigen_clu
23
23
  project are behavioral lessons worth keeping everywhere. So point it at the tool's
24
24
  **global sessions root** (all projects), not a per-project directory.
25
25
 
26
- - **Locate `friction.js`** — it is bundled next to this command at `friction/friction.js`
26
+ - **Locate `friction.js`** — it is bundled next to this command at `remember/friction.js`
27
27
  (the same directory as `remember.md`, whether installed or run from the package). If it
28
28
  exists nowhere, skip to step 1 (stash-only) and tell the user friction.js is missing.
29
29
  - **Resolve the global sessions root** — probe this list top-to-bottom, use the first that