@rnbsolucoes/axion-code 0.1.44 → 0.1.46
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
|
|
@@ -399,7 +411,10 @@ normalized lifecycle telemetry to the TUI for Fusion and PCP phases; internal
|
|
|
399
411
|
PCP worker dispatches stay private and do not surface as app-level tool
|
|
400
412
|
approvals. Image/video dispatch is refused unless permission mode is `yolo`;
|
|
401
413
|
even in `yolo`, the CLI currently returns a structured "media runtime
|
|
402
|
-
unavailable" tool result until the local media runtime lands.
|
|
414
|
+
unavailable" tool result until the local media runtime lands. When Axion
|
|
415
|
+
Desktop saves PCP image/video slots as model-only capability references, the CLI
|
|
416
|
+
resolves the provider label from Desktop's `capability_selections` store on a
|
|
417
|
+
best-effort basis for status, audit metadata and worker labels.
|
|
403
418
|
|
|
404
419
|
## Build
|
|
405
420
|
|
|
Binary file
|
|
Binary file
|