@rnbsolucoes/axion-code 0.1.45 → 0.1.47

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 CHANGED
@@ -65,6 +65,12 @@ axion-code agents list --json
65
65
  axion-code agents run bug-hunter "review this login flow"
66
66
  axion-code agents run-many bug-hunter,performance-reviewer "review this login flow" --budget-tokens 2000 --stream
67
67
  axion-code learn --json
68
+ axion-code memory status --json
69
+ axion-code memory recall "hooks safety" --json
70
+ axion-code memory curate --title "Pattern" --body "Apply this implementation pattern..." --json
71
+ axion-code hooks status --json
72
+ axion-code hooks add --event UserPromptSubmit --action inject --name Safety --content "Use trusted hook context only." --enabled
73
+ axion-code hooks enable
68
74
  axion-code package inspect <path>
69
75
  axion-code package self-check --json
70
76
  ```
@@ -246,6 +252,8 @@ The interactive TUI supports:
246
252
  /permission
247
253
  /mcp
248
254
  /learn
255
+ /memory
256
+ /hooks
249
257
  /plugins
250
258
  /agents
251
259
  /agents run <id> <prompt>
@@ -258,6 +266,10 @@ Slash palette behavior: `↑/↓` selects, `Tab` completes the selected command,
258
266
 
259
267
  `/learn` consolidates plan-scoped learning from `.brv/plans/<plan-id>` and `.context/learning-candidates*.md`, filters low-signal material, deduplicates by content hash/summary and promotes relevant notes into native dotcontext at `<workspace>/.axion/context`.
260
268
 
269
+ `/memory` exposes the native project memory layer: `status`, `ensure`, `recall <query>` and `curate <text>`. Recall uses the local `.axion/context` note tree plus a SQLite FTS index and injects bounded `## Memoria recuperada` context into provider prompts without changing the visible/stored user message.
270
+
271
+ `/hooks` exposes Phase 1 native hooks. Hooks are stored in shared `%USERPROFILE%\.axion\hooks.json` and controlled by `%USERPROFILE%\.axion\hooks-config.json`, default OFF. `SessionStart` and `UserPromptSubmit` can inject trusted `<hook-context>` prompt context; `PostToolUse` and `Stop` are observe-only. Phase 1 does not execute shell commands or approve tools.
272
+
261
273
  When the active plan comes from `.context/plans/*.md`, `/task add`, `/task done`
262
274
  and `/task progress` update the Markdown plan file directly. Axion Code rewrites
263
275
  only the target task line marker/progress and keeps the rest of the document
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rnbsolucoes/axion-code",
3
- "version": "0.1.45",
3
+ "version": "0.1.47",
4
4
  "description": "Axion Code CLI harness for the Axion ecosystem.",
5
5
  "type": "module",
6
6
  "repository": {