@ashx-j/lunr 0.2.12 → 0.2.13

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.
Files changed (43) hide show
  1. package/CHANGELOG.md +7 -1
  2. package/dist/catalog/models.json +1 -1
  3. package/dist/catalog/providers/cloudflare-workers-ai.json +1 -1
  4. package/dist/catalog/providers/fireworks.json +1 -1
  5. package/dist/catalog/providers/opencode-go.json +1 -1
  6. package/dist/catalog/providers/opencode.json +1 -1
  7. package/dist/catalog/providers/openrouter.json +1 -1
  8. package/dist/catalog/providers/together.json +1 -1
  9. package/dist/catalog/publication.json +3 -3
  10. package/dist/core/context-breakdown.d.ts +3 -1
  11. package/dist/core/context-breakdown.d.ts.map +1 -1
  12. package/dist/core/context-breakdown.js +5 -2
  13. package/dist/core/context-breakdown.js.map +1 -1
  14. package/dist/core/settings-manager.d.ts +7 -0
  15. package/dist/core/settings-manager.d.ts.map +1 -1
  16. package/dist/core/settings-manager.js +13 -0
  17. package/dist/core/settings-manager.js.map +1 -1
  18. package/dist/index.d.ts +1 -1
  19. package/dist/index.d.ts.map +1 -1
  20. package/dist/index.js.map +1 -1
  21. package/dist/modes/interactive/components/settings-selector.d.ts +3 -1
  22. package/dist/modes/interactive/components/settings-selector.d.ts.map +1 -1
  23. package/dist/modes/interactive/components/settings-selector.js +105 -89
  24. package/dist/modes/interactive/components/settings-selector.js.map +1 -1
  25. package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
  26. package/dist/modes/interactive/interactive-mode.js +16 -3
  27. package/dist/modes/interactive/interactive-mode.js.map +1 -1
  28. package/dist/modes/interactive/skill-tag-autocomplete.d.ts +13 -0
  29. package/dist/modes/interactive/skill-tag-autocomplete.d.ts.map +1 -0
  30. package/dist/modes/interactive/skill-tag-autocomplete.js +72 -0
  31. package/dist/modes/interactive/skill-tag-autocomplete.js.map +1 -0
  32. package/docs/settings.md +1 -0
  33. package/docs/skills.md +10 -0
  34. package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
  35. package/examples/extensions/custom-provider-anthropic/package.json +1 -1
  36. package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
  37. package/examples/extensions/gondolin/package-lock.json +2 -2
  38. package/examples/extensions/gondolin/package.json +1 -1
  39. package/examples/extensions/sandbox/package-lock.json +2 -2
  40. package/examples/extensions/sandbox/package.json +1 -1
  41. package/examples/extensions/with-deps/package-lock.json +2 -2
  42. package/examples/extensions/with-deps/package.json +1 -1
  43. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- lunR is derived from pi. The published npm package is **`@ashx-j/lunr@0.2.12`**. Versioned sections below (`0.80.x` and earlier) are **upstream pi history** and do not describe lunR releases.
3
+ lunR is derived from pi. The published npm package is **`@ashx-j/lunr@0.2.13`**. Versioned sections below (`0.80.x` and earlier) are **upstream pi history** and do not describe lunR releases.
4
4
 
5
5
  ## [Unreleased]
6
6
 
@@ -10,9 +10,15 @@ lunR is derived from pi. The published npm package is **`@ashx-j/lunr@0.2.12`**.
10
10
 
11
11
  ### New Features
12
12
 
13
+ - **Mid-message skill tags** — `/settings` Skill tag (`+`, `~`, or `$`) lists loaded skills after a space so you can insert `{char}{name}` without expanding SKILL.md. `/skill:name` remains the force-load path.
13
14
  - **Agent-managed factual memory** — Added an Agent memory setting beside the character cap. Turning it off removes memory injection and tools without deleting stored facts. Global behavior now comes only from a user-created `~/.lunr/agent/AGENTS.md`; behavior presets and `behavior.md` injection were removed.
14
15
  - **Qwen Token Plan** — Added built-in providers for QwenCloud's Credits-based Token Plan (`qwen-token-plan` international and `qwen-token-plan-cn` China), using the DashScope OpenAI-compatible endpoint with `DASHSCOPE_TOKEN_PLAN_API_KEY` / `DASHSCOPE_TOKEN_PLAN_CN_API_KEY`. Includes 15 text models and defaults to the token-plan-only `qwen3.8-max-preview`.
15
16
 
17
+ ### Changed
18
+
19
+ - **Settings menu copy** — `/settings` rows use short feature summaries instead of implementation inventories; choice-specific details stay beside the relevant option.
20
+ - **Global AGENTS.md label** — `/context` and `/usage` label `~/.lunr/agent/AGENTS.md` as `Global AGENTS.md`; project instruction files stay `AGENTS.md`.
21
+
16
22
  ## [0.80.10] - 2026-07-16
17
23
 
18
24
  ### New Features