@ariestools/cli 0.1.6 → 0.1.7

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 (3) hide show
  1. package/README.md +1 -55
  2. package/dist/bin/aries.mjs +2375 -1019
  3. package/package.json +10 -11
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @ariestools/cli
2
2
 
3
- Aries Tools CLI — a suite by Arie Trouw for AI-client tooling, Claude/Codex audit trails, sandboxed command execution, XL1 datalake provisioning, content hashing (strict + fuzzy + perceptual), XL1 wallet management, payload witnessing, and XYO protocol utilities.
3
+ Aries Tools CLI — a suite by Arie Trouw for AI-client tooling, sandboxed command execution, XL1 datalake provisioning, content hashing (strict + fuzzy + perceptual), XL1 wallet management, payload witnessing, and XYO protocol utilities.
4
4
 
5
5
  ## Installation
6
6
 
@@ -26,7 +26,6 @@ aries datalake list
26
26
 
27
27
  ```text
28
28
  aries ai AI client tools
29
- aries audit Manage the Claude Code audit trail
30
29
  aries bank Manage bank witness settings
31
30
  aries chain Run a local published-chain S3/REST server
32
31
  aries clamp Run commands inside a permission-controlled sandbox
@@ -281,59 +280,6 @@ Check Claude Code and Codex AI configuration drift. The folder defaults to the c
281
280
 
282
281
  ---
283
282
 
284
- ## `aries audit` — Manage the Claude Code audit trail
285
-
286
- ```sh
287
- aries audit ai # Show current AI metadata recorded in audit entries
288
- aries audit list # List audit sessions
289
- aries audit show <session-id> # Show audit trail for a session
290
- aries audit search <query> # Search audit logs
291
- aries audit install [provider] # Install the audit plugin (claude | codex | both)
292
- aries audit uninstall [provider] # Uninstall the audit plugin
293
- aries audit open # Open the audit log directory in Finder/Explorer
294
- aries audit status # Show audit plugin status and log statistics
295
- ```
296
-
297
- ### Per-command flags
298
-
299
- #### `aries audit ai`
300
- | Option | Default | Description |
301
- |---|---|---|
302
- | `--json` | `false` | Output as JSON |
303
-
304
- #### `aries audit list`
305
- | Option | Default | Description |
306
- |---|---|---|
307
- | `-d, --date <YYYY-MM-DD>` | | Filter by date |
308
-
309
- #### `aries audit show <session-id>`
310
- | Positional | | Description |
311
- |---|---|---|
312
- | `session-id` | required | Session ID (or prefix) |
313
-
314
- | Option | Default | Description |
315
- |---|---|---|
316
- | `-f, --format <text\|json>` | `text` | Output format |
317
-
318
- #### `aries audit search <query>`
319
- | Positional | | Description |
320
- |---|---|---|
321
- | `query` | required | Search text |
322
-
323
- | Option | Default | Description |
324
- |---|---|---|
325
- | `-d, --date <YYYY-MM-DD>` | | Filter by date |
326
- | `-n, --limit <n>` | `50` | Max results |
327
-
328
- #### `aries audit install [provider]` / `aries audit uninstall [provider]`
329
- | Positional | | Description |
330
- |---|---|---|
331
- | `provider` | both | `claude` or `codex` |
332
-
333
- `open`, `status` take no command-specific options.
334
-
335
- ---
336
-
337
283
  ## `aries clamp` — Run commands inside a permission-controlled sandbox
338
284
 
339
285
  ```sh