@antoneeo/kb-agentic-skill 1.4.0 → 1.4.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 +14 -0
- package/gemini-extension.json +1 -1
- package/package.json +1 -1
- package/skills/kb-agentic-skill/SKILL.md +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
Every significant change to this skill is recorded here.
|
|
4
4
|
|
|
5
|
+
## [1.4.1] - 2026-08-03
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- **`version:` in every `SKILL.md` frontmatter.** An installed skill carries no
|
|
9
|
+
`package.json` and no `gemini-extension.json` — only doctrine and scripts — so nothing
|
|
10
|
+
in it said which build it was. Answering "is that fix in your copy?" took `npm view`
|
|
11
|
+
plus a shasum comparison; from a user's side it was unanswerable. Now the first thing
|
|
12
|
+
in the operating contract says it.
|
|
13
|
+
- **A battery invariant asserting every bump point agrees** (`SKILL.md` ↔ `package.json`
|
|
14
|
+
↔ `gemini-extension.json`). A hand-maintained version string rots, and this repository
|
|
15
|
+
has the scar: the third bump point was skipped for two whole releases with nothing to
|
|
16
|
+
catch it. The fourth arrives with its guard attached, and `GUIDE_release.md` step 1
|
|
17
|
+
now says FOUR.
|
|
18
|
+
|
|
5
19
|
## [1.4.0] - 2026-08-03
|
|
6
20
|
|
|
7
21
|
F-028 — several people on one project. `templates.md` had claimed the workstream
|
package/gemini-extension.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kb-agentic-skill",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.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.4.
|
|
3
|
+
"version": "1.4.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,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: kb-agentic
|
|
3
|
+
version: 1.4.1
|
|
3
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.
|
|
4
5
|
author: Antonio Pinto (https://github.com/Antoneeo)
|
|
5
6
|
copyright: (c) 2026 Antonio Pinto
|