@antoneeo/kb-agentic-skill 1.5.0 → 1.5.1
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/CHANGELOG.md +17 -0
- package/README.md +13 -0
- package/gemini-extension.json +1 -1
- package/package.json +1 -1
- package/skills/kb-agentic-skill/SKILL.md +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
Every significant change to this skill is recorded here.
|
|
4
4
|
|
|
5
|
+
## [1.5.1] - 2026-08-25
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- **The three README front pages did not mention the hook wiring that 1.27.0 added.**
|
|
9
|
+
`init` now changes what every project gets, and the README *is* the npm page, so two
|
|
10
|
+
of the three said nothing about it and the third barely did. Each now describes the
|
|
11
|
+
wiring, the settings.json / settings.local.json split and why it exists, and the
|
|
12
|
+
broken-hook report. `GUIDE_release.md` step 2 already made this a release duty; it was
|
|
13
|
+
skipped in 1.27.0 and this is the catch-up.
|
|
14
|
+
- **`publish_all.bat`'s verify block reported the previous version after a successful
|
|
15
|
+
publish — twice.** `--prefer-online` (added in kb 1.4.8) forces revalidation but cannot
|
|
16
|
+
outrun CDN propagation of the `latest` tag in the seconds after publishing, so the
|
|
17
|
+
1.27.0 run printed mkt `0.4.7` when `0.5.0` had in fact landed. The flag alone was the
|
|
18
|
+
wrong fix and the note claiming otherwise is corrected: the block now **polls** each
|
|
19
|
+
package until the registry agrees with the local version, and prints both when it does
|
|
20
|
+
not, so "did it publish?" is answerable from the run instead of a manual `npm view`.
|
|
21
|
+
|
|
5
22
|
## [1.5.0] - 2026-08-25
|
|
6
23
|
|
|
7
24
|
F-036 — the orientation hook installs itself.
|
package/README.md
CHANGED
|
@@ -67,6 +67,19 @@ kb-agentic-init
|
|
|
67
67
|
|
|
68
68
|
Run it inside a project to create `ai_docs/`, Vision documents, strategic docs, audit plan, and agent protocol files (`AGENTS.md`, `CLAUDE.md`, `GEMINI.md`, `.cursorrules`).
|
|
69
69
|
|
|
70
|
+
It also **wires the SessionStart orientation hook** into `.claude/`, so an agent opening
|
|
71
|
+
the project is handed the reading guide, the generated manifest, the guide router and the
|
|
72
|
+
last handoff before it does anything — instead of only when it remembers to look. That
|
|
73
|
+
wiring used to be a manual step documented in `ENFORCEMENT.md`; being manual, it was
|
|
74
|
+
skipped, and a project could run fully governed with an agent that never met the process.
|
|
75
|
+
|
|
76
|
+
The hook command names a validator, so where that validator lives decides which file gets
|
|
77
|
+
it: a repo that vendors it gets a repo-relative command in the shared `.claude/settings.json`
|
|
78
|
+
(portable — commit it); otherwise the path is machine-specific and goes to the git-ignored
|
|
79
|
+
`.claude/settings.local.json`, and each teammate runs `init` once. Re-running `init` never
|
|
80
|
+
duplicates the hook, and a hook whose validator no longer resolves is reported as **broken**
|
|
81
|
+
with the correction rather than counted as installed.
|
|
82
|
+
|
|
70
83
|
## The family: three lenses, one spine
|
|
71
84
|
|
|
72
85
|
| Package | Faithful to | Unit of work |
|
package/gemini-extension.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kb-agentic-skill",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "Knowledge-Base & Document-First protocol with risk triage, Vision governance, signal distillation and optional devPNT integration.",
|
|
5
5
|
"author": "Antonio Pinto (https://github.com/Antoneeo)"
|
|
6
6
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@antoneeo/kb-agentic-skill",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "Knowledge-Base & Document-First protocol for Claude Code, Gemini CLI, Google Antigravity and Codex with risk triage, Vision governance, signal distillation and optional devPNT integration.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: kb-agentic
|
|
3
|
-
version: 1.5.
|
|
3
|
+
version: 1.5.1
|
|
4
4
|
description: Knowledge-Base & Document-First protocol with risk-proportional triage, Vision as a guide, Signal Distillation, a complete Standalone mode and optional symbiosis with devPNT. Use for user documentation, knowledge extraction, SOPs, research notes, decision logs and knowledge management.
|
|
5
5
|
author: Antonio Pinto (https://github.com/Antoneeo)
|
|
6
6
|
copyright: (c) 2026 Antonio Pinto
|