ai-wiki-toolkit-linux-arm64 0.1.30 → 0.1.32
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 +38 -9
- package/bin/aiwiki-toolkit +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# ai-wiki-toolkit-linux-arm64
|
|
2
2
|
|
|
3
3
|
This package contains the `aiwiki-toolkit` executable for `linux-arm64-glibc`.
|
|
4
|
-
It is published as the platform-specific binary package for `ai-wiki-toolkit` `0.1.
|
|
4
|
+
It is published as the platform-specific binary package for `ai-wiki-toolkit` `0.1.32`.
|
|
5
5
|
Most users should install `ai-wiki-toolkit` instead of using this package directly.
|
|
6
6
|
|
|
7
7
|
---
|
|
@@ -305,7 +305,7 @@ aiwiki-toolkit init
|
|
|
305
305
|
- create a gitignored `.env.aiwiki` file for the current local actor identity
|
|
306
306
|
- create starter indexes such as `ai-wiki/conventions/index.md`, `ai-wiki/review-patterns/index.md`, `ai-wiki/problems/index.md`, `ai-wiki/features/index.md`, `ai-wiki/trails/index.md`, `ai-wiki/work/index.md`, and `ai-wiki/people/<handle>/index.md`
|
|
307
307
|
- create `ai-wiki/conventions/`, `ai-wiki/review-patterns/`, `ai-wiki/problems/`, `ai-wiki/features/`, `ai-wiki/work/`, `ai-wiki/people/<handle>/drafts/`, `ai-wiki/metrics/`, and repo/home `_toolkit/`
|
|
308
|
-
- generate package-managed `_toolkit/index.md`, `_toolkit/workflows.md`, `_toolkit/catalog.json`, `_toolkit/schema/reuse-v1.md`, `_toolkit/schema/team-memory-v1.md`, `_toolkit/schema/work-v1.md`, `_toolkit/metrics
|
|
308
|
+
- generate package-managed `_toolkit/index.md`, `_toolkit/workflows.md`, `_toolkit/catalog.json`, `_toolkit/schema/reuse-v1.md`, `_toolkit/schema/team-memory-v1.md`, `_toolkit/schema/work-v1.md`, `_toolkit/metrics/*`, and `_toolkit/work/*`
|
|
309
309
|
- upsert a managed `.gitignore` block that ignores `.env.aiwiki`, AI wiki telemetry, and generated aggregate snapshots so routine agent use does not dirty `git status`
|
|
310
310
|
- create or refresh package-owned `.agents/skills/ai-wiki-reuse-check/`, `.agents/skills/ai-wiki-update-check/`, `.agents/skills/ai-wiki-clarify-before-code/`, `.agents/skills/ai-wiki-capture-review-learning/`, and `.agents/skills/ai-wiki-consolidate-drafts/`
|
|
311
311
|
- update `AGENT.md`, `AGENTS.md`, and/or `CLAUDE.md` with a short managed instruction block that points agents to `ai-wiki/_toolkit/system.md` when the repo contains `ai-wiki/`
|
|
@@ -338,7 +338,7 @@ If package-owned repo-local skill files already exist under `.agents/skills/ai-w
|
|
|
338
338
|
|
|
339
339
|
`init` remains as a backward-compatible alias for `install`. The actual scaffold creation does not happen at package install time; it happens when you run `aiwiki-toolkit install` or `aiwiki-toolkit init` inside a git repository.
|
|
340
340
|
|
|
341
|
-
To append one explicit knowledge-reuse observation and refresh managed
|
|
341
|
+
To append one explicit knowledge-reuse observation and refresh handle-scoped managed metrics:
|
|
342
342
|
|
|
343
343
|
```bash
|
|
344
344
|
aiwiki-toolkit record-reuse \
|
|
@@ -352,7 +352,9 @@ aiwiki-toolkit record-reuse \
|
|
|
352
352
|
--saved-seconds 45
|
|
353
353
|
```
|
|
354
354
|
|
|
355
|
-
This appends to the user-owned `ai-wiki/metrics/reuse-events/<handle>.jsonl` shard and refreshes the
|
|
355
|
+
This appends to the user-owned `ai-wiki/metrics/reuse-events/<handle>.jsonl` shard and refreshes the handle-scoped generated views under `ai-wiki/_toolkit/metrics/by-handle/<handle>/`. The installer ignores both the shard and the generated aggregate views by default so these telemetry updates stay local.
|
|
356
|
+
|
|
357
|
+
For post-task diagnosis, reuse events can also carry optional provenance such as `--session-id`, `--source-session-id`, `--source-task-id`, `--consulted-order`, `--signal-status candidate`, `--not-helpful-reason superseded_by_later_doc`, `--resolved-by-doc-id`, and `--superseded-by-doc-id`. Candidate not-helpful signals are review hints; confirmed outcomes still require explicit human or agent judgment.
|
|
356
358
|
|
|
357
359
|
Only record user-owned AI wiki knowledge docs with `record-reuse`.
|
|
358
360
|
|
|
@@ -401,7 +403,7 @@ aiwiki-toolkit record-reuse-check \
|
|
|
401
403
|
--check-outcome wiki_used
|
|
402
404
|
```
|
|
403
405
|
|
|
404
|
-
This appends to the user-owned `ai-wiki/metrics/task-checks/<handle>.jsonl` shard and refreshes the
|
|
406
|
+
This appends to the user-owned `ai-wiki/metrics/task-checks/<handle>.jsonl` shard and refreshes the handle-scoped generated views under `ai-wiki/_toolkit/metrics/by-handle/<handle>/`. The installer ignores both the shard and the generated aggregate views by default so these telemetry updates stay local.
|
|
405
407
|
|
|
406
408
|
Both metrics logs are sharded by handle under:
|
|
407
409
|
|
|
@@ -410,7 +412,7 @@ Both metrics logs are sharded by handle under:
|
|
|
410
412
|
|
|
411
413
|
These logs are intended as local telemetry by default, not merge-heavy source files.
|
|
412
414
|
|
|
413
|
-
If you need a fresh local telemetry and work snapshot, regenerate package-managed aggregate views such as `ai-wiki/_toolkit/catalog.json`, `ai-wiki/_toolkit/metrics
|
|
415
|
+
If you need a fresh local telemetry and work snapshot, regenerate package-managed aggregate views such as `ai-wiki/_toolkit/catalog.json`, `ai-wiki/_toolkit/metrics/*`, or `ai-wiki/_toolkit/work/*` with:
|
|
414
416
|
|
|
415
417
|
```bash
|
|
416
418
|
aiwiki-toolkit refresh-metrics
|
|
@@ -424,7 +426,7 @@ aiwiki-toolkit diagnose memory --since 14d --handle your-handle
|
|
|
424
426
|
aiwiki-toolkit diagnose memory --focus trial-error
|
|
425
427
|
```
|
|
426
428
|
|
|
427
|
-
This writes regenerated local reports under `ai-wiki/_toolkit/diagnostics
|
|
429
|
+
This writes regenerated local reports under `ai-wiki/_toolkit/diagnostics/<handle-or-all>/` and prints the report to stdout. The report highlights high-ROI memory, noisy memory, stale or missing docs, conflict notes, missed-memory signals, and coverage gaps such as document reuse events that were never paired with a task-level reuse check. It does not edit user-owned AI wiki docs.
|
|
428
430
|
|
|
429
431
|
Use `--focus trial-error` to generate a focused trial/error reduction report from existing
|
|
430
432
|
AI wiki evidence. It summarizes material effects such as `avoided_retry`,
|
|
@@ -439,7 +441,34 @@ aiwiki-toolkit consolidate queue
|
|
|
439
441
|
aiwiki-toolkit consolidate queue --since 14d --handle your-handle
|
|
440
442
|
```
|
|
441
443
|
|
|
442
|
-
This writes regenerated local reports under `ai-wiki/_toolkit/consolidation
|
|
444
|
+
This writes regenerated local reports under `ai-wiki/_toolkit/consolidation/<handle>/` and prints the queue to stdout. The queue suggests one action per draft cluster: keep, refine, promotion candidate, conflict, or supersession. It does not edit user-owned AI wiki docs or create shared conventions, review patterns, problems, features, or decisions; those still require human confirmation.
|
|
445
|
+
|
|
446
|
+
To mark handle-local draft promotion candidates from confirmed-useful reuse evidence:
|
|
447
|
+
|
|
448
|
+
```bash
|
|
449
|
+
aiwiki-toolkit promote candidates --handle your-handle
|
|
450
|
+
aiwiki-toolkit promote candidates --handle your-handle --apply
|
|
451
|
+
```
|
|
452
|
+
|
|
453
|
+
The default run is report-only. With `--apply`, a draft is marked only when it has more than three distinct resolved task IDs, no `not_helpful` reuse events, and an existing non-stale source draft. The command refreshes stable links in `ai-wiki/people/<handle>/index.md`; exact reuse counts stay in generated reports under `ai-wiki/_toolkit/reports/promotion-candidates/<handle>/`.
|
|
454
|
+
|
|
455
|
+
To inspect referenced files and estimated time impact from local reuse evidence:
|
|
456
|
+
|
|
457
|
+
```bash
|
|
458
|
+
aiwiki-toolkit report usefulness --handle your-handle
|
|
459
|
+
aiwiki-toolkit report usefulness --handle your-handle --format json
|
|
460
|
+
```
|
|
461
|
+
|
|
462
|
+
This writes `ai-wiki/_toolkit/reports/usefulness/<handle-or-all>/latest.md` and `.json`. It lists referenced files and sums resolved-event `estimated_savings`. Baseline/current/remaining durations are reported as `unknown` until task logs include explicit timing evidence.
|
|
463
|
+
|
|
464
|
+
To generate a weekly local HTML review queue:
|
|
465
|
+
|
|
466
|
+
```bash
|
|
467
|
+
aiwiki-toolkit report weekly --handle your-handle
|
|
468
|
+
aiwiki-toolkit report weekly --handle your-handle --if-due
|
|
469
|
+
```
|
|
470
|
+
|
|
471
|
+
This writes a static HTML review queue and JSON payload under `ai-wiki/_toolkit/reports/weekly/<handle>/<iso-week>/`, refreshes `latest.html` and `latest.json`, and records the last generated period in `ai-wiki/_toolkit/reports/weekly/<handle>/state.json`. The HTML page focuses only on items that need human judgment: promotion candidates, personal drafts that may need diagnosis, and not-helpful signals. Coverage, referenced-file, and other raw evidence remains in the JSON payload and supporting reports; saved-time estimates belong in impact-eval reports, not the weekly HTML view. Use `--if-due` from cron, launchd, or an agent workflow so the same ISO week is generated once; use `--force` for local testing before a release.
|
|
443
472
|
|
|
444
473
|
To summarize first-attempt product impact from a captured eval run:
|
|
445
474
|
|
|
@@ -516,7 +545,7 @@ Even with `--purge-user-docs --yes`, the shared home wiki under `~/ai-wiki/syste
|
|
|
516
545
|
- `ai-wiki/index.md` is a repo-owned map and is not treated as a starter-drift upgrade target by `doctor`.
|
|
517
546
|
- `ai-wiki/workflows.md` remains user-owned; package-managed workflow updates land in `ai-wiki/_toolkit/workflows.md` instead of rewriting the repo-owned file.
|
|
518
547
|
- `.env.aiwiki` stores the current local actor identity in a managed block. It is gitignored and should not be committed.
|
|
519
|
-
- `ai-wiki/metrics/reuse-events/<handle>.jsonl` and `ai-wiki/metrics/task-checks/<handle>.jsonl` are user-owned evidence data. `ai-wiki/work/events/<handle>.jsonl` is user-owned work state. Package-managed aggregate views are regenerated under `ai-wiki/_toolkit/metrics/` and `ai-wiki/_toolkit/work/`;
|
|
548
|
+
- `ai-wiki/metrics/reuse-events/<handle>.jsonl` and `ai-wiki/metrics/task-checks/<handle>.jsonl` are user-owned evidence data. `ai-wiki/work/events/<handle>.jsonl` is user-owned work state. Package-managed aggregate views are regenerated under `ai-wiki/_toolkit/metrics/` and `ai-wiki/_toolkit/work/`; handle-scoped metrics are regenerated under `ai-wiki/_toolkit/metrics/by-handle/<handle>/`; memory diagnostics, consolidation queues, promotion reports, usefulness reports, and weekly reports are written under handle-scoped generated paths where they depend on a handle. The installer ignores those generated paths by default in `.gitignore`.
|
|
520
549
|
- Legacy flat files such as `ai-wiki/metrics/reuse-events.jsonl` and `ai-wiki/metrics/task-checks.jsonl` are still read for compatibility, but new writes should use the handle-sharded layout.
|
|
521
550
|
- `aiwiki-toolkit doctor --suggest-index-upgrade` prints suggested replacements for missing repo starter docs and repo-owned companion docs such as `ai-wiki/workflows.md`, but it does not overwrite them automatically.
|
|
522
551
|
- Package-owned `.agents/skills/ai-wiki-reuse-check/**`, `.agents/skills/ai-wiki-update-check/**`, `.agents/skills/ai-wiki-clarify-before-code/**`, `.agents/skills/ai-wiki-capture-review-learning/**`, and `.agents/skills/ai-wiki-consolidate-drafts/**` are refreshed by `install` so package workflow updates reach existing repos.
|
package/bin/aiwiki-toolkit
CHANGED
|
Binary file
|
package/package.json
CHANGED