@antoneeo/kb-agentic-skill 1.4.5 → 1.4.6
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
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
Every significant change to this skill is recorded here.
|
|
4
4
|
|
|
5
|
+
## [1.4.6] - 2026-08-06
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- **Shared-spine sync: review-driven corrections + reviewer honesty (ACTIVE in this lens).**
|
|
9
|
+
The shared `review.md` gains the scoped re-review discipline — a fix made in response to a
|
|
10
|
+
finding is unreviewed work and gets a correction-scoped re-review with per-finding verdicts
|
|
11
|
+
before PASS — plus the `CANNOT VERIFY` reporting duty and the no-pre-judging rule. Unlike
|
|
12
|
+
prior spine syncs these are NOT inert here: reviews of knowledge artifacts inherit the
|
|
13
|
+
correction discipline directly.
|
|
14
|
+
|
|
5
15
|
## [1.4.5] - 2026-08-06
|
|
6
16
|
|
|
7
17
|
### Changed
|
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.6",
|
|
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.6",
|
|
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.4.
|
|
3
|
+
version: 1.4.6
|
|
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
|
|
@@ -99,6 +99,12 @@ conversation instead of reviewing the change itself. Say which finding
|
|
|
99
99
|
classes you want covered (correctness, security, conformance to the design,
|
|
100
100
|
test coverage) if the default scope is not obvious.
|
|
101
101
|
|
|
102
|
+
Never pre-judge findings for the reviewer: do not instruct them to ignore or
|
|
103
|
+
not flag a specific issue ("don't treat X as a defect", "at most minor"). If
|
|
104
|
+
you believe a finding would be a false positive, let the reviewer raise it and
|
|
105
|
+
resolve it with evidence in §Receiving — pre-judging is usually the requester
|
|
106
|
+
sparing themselves a round.
|
|
107
|
+
|
|
102
108
|
## Receiving
|
|
103
109
|
|
|
104
110
|
**MUST answer findings one by one — fix, or justify with evidence; why:
|
|
@@ -111,6 +117,22 @@ resolve a disagreement by rewording the finding until it goes away. When the
|
|
|
111
117
|
project keeps a `REVIEW_LOG` (or equivalent), log the outcome of each
|
|
112
118
|
finding there.
|
|
113
119
|
|
|
120
|
+
### Review-driven corrections (scoped re-review)
|
|
121
|
+
|
|
122
|
+
A fix made in response to a finding is new, unreviewed work — stopping after
|
|
123
|
+
"I fixed it" ships the one version nobody reviewed. Every review-driven change
|
|
124
|
+
therefore gets a **scoped re-review** before the review can PASS: hand the
|
|
125
|
+
re-reviewer the original findings and ONLY the correction (the fix diff/range
|
|
126
|
+
for code, the amended sections for a document), and require a per-finding
|
|
127
|
+
verdict — `ADDRESSED`, `NOT ADDRESSED`, or `CONTESTED` with evidence. The
|
|
128
|
+
re-review also checks the correction itself for new blocker-level
|
|
129
|
+
breakage — and nothing else: out-of-scope observations become separately
|
|
130
|
+
recorded findings, never an extension of the loop. Expect two rounds as the
|
|
131
|
+
norm, not the exception — round 1 finds, round 2 verifies the fixes — inside
|
|
132
|
+
the same cap of 3 (§When a review is due). One logical review stays ONE
|
|
133
|
+
REVIEW_LOG row, its rounds narrated inside; a scoped re-review is a round,
|
|
134
|
+
not a new review.
|
|
135
|
+
|
|
114
136
|
## Reviewing
|
|
115
137
|
|
|
116
138
|
When you are the reviewer:
|
|
@@ -123,6 +145,12 @@ When you are the reviewer:
|
|
|
123
145
|
(see `## Requesting`).
|
|
124
146
|
- Cite evidence as `file:line` for every finding — a finding without a
|
|
125
147
|
location is not actionable.
|
|
148
|
+
- **Say what you could NOT verify.** When a claim in the artifact cannot be
|
|
149
|
+
verified from the inputs you were given (it lives in unchanged code, another
|
|
150
|
+
document, or an environment you cannot reach), report it as a
|
|
151
|
+
`CANNOT VERIFY` item instead of silently passing it — the requester holds
|
|
152
|
+
the context to resolve it, and must do so before closing. A PASS that
|
|
153
|
+
silently skipped unverifiable claims is review theater.
|
|
126
154
|
- Keep severity honest: do not inflate a style preference to a blocker, and
|
|
127
155
|
do not soften a real correctness or security issue to a nit.
|
|
128
156
|
- No praise padding. A review reports problems and their fixes, not a
|