ai-wiki-toolkit-linux-arm64 0.1.23 → 0.1.24
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 +18 -4
- 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.24`.
|
|
5
5
|
Most users should install `ai-wiki-toolkit` instead of using this package directly.
|
|
6
6
|
|
|
7
7
|
---
|
|
@@ -301,15 +301,29 @@ aiwiki-toolkit init
|
|
|
301
301
|
- 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/*.json`, and `_toolkit/work/*`
|
|
302
302
|
- 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`
|
|
303
303
|
- 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/`
|
|
304
|
-
- update `AGENT.md`, `AGENTS.md`, and/or `CLAUDE.md` with a managed instruction block that
|
|
304
|
+
- 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/`
|
|
305
305
|
|
|
306
306
|
If no supported prompt file exists, it creates `AGENT.md`.
|
|
307
307
|
|
|
308
308
|
If `--handle` is not passed, the tool resolves a handle from:
|
|
309
309
|
|
|
310
310
|
1. `AIWIKI_TOOLKIT_HANDLE`
|
|
311
|
-
2. local
|
|
312
|
-
3.
|
|
311
|
+
2. the repo-local `.env.aiwiki`
|
|
312
|
+
3. local or global git config
|
|
313
|
+
4. an interactive team ID prompt
|
|
314
|
+
|
|
315
|
+
The prompt appears only when no usable handle can be resolved:
|
|
316
|
+
|
|
317
|
+
```text
|
|
318
|
+
Could not detect a git user.name or user.email.
|
|
319
|
+
|
|
320
|
+
AI wiki needs a stable local ID for your team identity.
|
|
321
|
+
What ID would you prefer to use in this team?
|
|
322
|
+
```
|
|
323
|
+
|
|
324
|
+
The entered ID is normalized into a path- and branch-safe handle, stored in
|
|
325
|
+
`.env.aiwiki`, and used for paths such as `ai-wiki/people/<handle>/`. In
|
|
326
|
+
non-interactive shells, pass `--handle your-name` or set `AIWIKI_TOOLKIT_HANDLE`.
|
|
313
327
|
|
|
314
328
|
The tool works best when `git user.name` and `git user.email` are configured first.
|
|
315
329
|
|
package/bin/aiwiki-toolkit
CHANGED
|
Binary file
|
package/package.json
CHANGED