@antoneeo/agentic-sdlc-skill 1.12.0 → 1.13.0
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,15 @@
|
|
|
2
2
|
|
|
3
3
|
Tutte le modifiche significative a questa skill saranno documentate in questo file.
|
|
4
4
|
|
|
5
|
+
## [1.13.0] - 2026-07-05 (M2 amendment: review reads AND proves Vision + Use-Cases + Threat Model)
|
|
6
|
+
### Changed
|
|
7
|
+
- **Review discipline hardened (M2.A7).** `review.md` now, for an impact/solution-analysis / design review: (a) §Requesting takes the **Vision + use-cases/user-needs + threat model** as explicit inputs the reviewer checks the artifact *against* (Hybrid: M-VISION/D-UC/P-TM; Standalone: the ANALYSIS Vision-Alignment / Use-Cases / Threat-Model sections); (b) §Reviewing requires the reviewer OUTPUT to carry a **conformance/traceability statement** — each Vision benefit / use-case / threat mapped to where the artifact satisfies it, or a finding — and a PASS is **not valid on "found nothing"**. Scoped to analysis/design reviews (plain code reviews stay findings-only → honors the "no enforcement theater" Non-Goal); it is the reviewer-side twin of the existing §Receiving anti-silent-drop rule.
|
|
8
|
+
- **`SKILL.md` §3 Request Analysis**: an authoring rule — build + trace the Impact/solution ON the Vision, use-cases and threat model (so the closure review can verify conformance); a pointer to `review.md`, no restatement.
|
|
9
|
+
- **`templates.md`**: the ANALYSIS template gains a `## Use Cases / User Needs` section — the Standalone home for what Hybrid keeps in `D-UC`, giving the coverage-check a real target. Validator-inert (ANALYSIS_SECTIONS permits extra sections); the `Minimum sections` floor is deliberately left unchanged.
|
|
10
|
+
|
|
11
|
+
### Process note
|
|
12
|
+
Governed M2 amendment (Hybrid). E-ISP `e_isp_review_input_hardening` v2.0 (deep review, 3 rounds — round-1 BLOCK caught that the "use-case coverage" check had no Standalone home; v2.0 added the output-evidence half) + E-TDD v1.0 (light review, conformance statement 8/8) + §4.6 code review (PASS, zero BLOCK — self-caught + reverted a Minimum-sections regression before review). Doc-only: `check --hybrid` CLEAN, eval battery 51/51, shadow exported. The Hybrid mirror in the devPNT doctrine §4.5 + `devpnt-tech-reviewer` output format is a separate devPNT-project follow-up.
|
|
13
|
+
|
|
5
14
|
## [1.12.0] - 2026-07-03 (Client Roster: Google Antigravity 2.0 as a first-class client)
|
|
6
15
|
### Added
|
|
7
16
|
- **Google Antigravity 2.0 support** in the install engine. The runtime skill now lands where all three Antigravity products (desktop, the `agy` CLI, the agentic IDE) discover global agent skills: `~/.gemini/config/skills/agentic-sdlc/`. `agentic-sdlc-init` writes the Antigravity project pointer to `AGENTS.md` (the Antigravity CLI surface), reusing the single `protocolContent` — no per-client drift.
|
package/gemini-extension.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@antoneeo/agentic-sdlc-skill",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
4
4
|
"description": "Documentation-First SDLC protocol for Claude Code, Gemini CLI, Google Antigravity and Codex with risk triage, Vision governance, installed support files and optional devPNT integration.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|
|
@@ -183,6 +183,7 @@ Standalone L3:
|
|
|
183
183
|
- Before creating a new `ANALYSIS_[feature].md`, search `ai_docs/solutions/` with glob/grep for an existing analysis on the same topic: if there is one, update it instead of duplicating it.
|
|
184
184
|
- Create or update `ai_docs/solutions/ANALYSIS_[feature].md`.
|
|
185
185
|
- Minimum sections: Objective, Feature Vision (or Vision Alignment), Impact, Security and Threat Model, Action Plan, Test Strategy, Diary/Current State.
|
|
186
|
+
- Build the Impact/solution **on** the Vision, the use-cases/user-needs and the Security & Threat Model — read and trace to them first, and state the trace (which use-case / threat / benefit each part serves) so the closure review (`review.md`) can verify conformance. Do not draft the Impact in isolation.
|
|
186
187
|
- For features spanning multiple milestones or multiple analyses, also create `ai_docs/vision/features/VISION_[feature].md`.
|
|
187
188
|
|
|
188
189
|
Hybrid L3:
|
|
@@ -14,6 +14,13 @@ When you hand work to a reviewer (human or agent), give them:
|
|
|
14
14
|
- **The authoritative design artifact**: the ANALYSIS, E-TDD, or equivalent
|
|
15
15
|
the change was built against — not a paraphrase of it.
|
|
16
16
|
- **The actual diff**: the real changed files, not a description of them.
|
|
17
|
+
- **For an impact/solution-analysis review, the constraints it derives from**:
|
|
18
|
+
the **Vision** (Hybrid: the `M-VISION`; Standalone: `project_vision.md`/`roadmap.md`
|
|
19
|
+
+ the ANALYSIS Vision-Alignment), the **use-cases / user-needs** (Hybrid: `D-UC`;
|
|
20
|
+
Standalone: the ANALYSIS `## Use Cases / User Needs`), and the **threat model**
|
|
21
|
+
(Hybrid: `P-TM`; Standalone: the ANALYSIS `## Security and Threat Model`). Hand these
|
|
22
|
+
*in addition to* the design artifact — the reviewer checks the artifact **against**
|
|
23
|
+
them, not only for internal consistency.
|
|
17
24
|
|
|
18
25
|
Never ask a reviewer to "review my session" or "review what I just did"
|
|
19
26
|
without the artifacts above — that forces them to reconstruct scope from
|
|
@@ -45,6 +52,15 @@ When you are the reviewer:
|
|
|
45
52
|
do not soften a real correctness or security issue to a nit.
|
|
46
53
|
- No praise padding. A review reports problems and their fixes, not a
|
|
47
54
|
summary of what looks fine.
|
|
55
|
+
- **Conformance statement (impact/solution-analysis & design reviews only — not a
|
|
56
|
+
plain code-diff review).** When the artifact under review carries Vision / use-case
|
|
57
|
+
/ threat-model constraints, your output MUST map each constraint to its evidence: for
|
|
58
|
+
every use-case/user-need, every threat, and every applicable Vision benefit/Non-Goal,
|
|
59
|
+
state WHERE the artifact satisfies it (section or `file:line`) or raise it as a
|
|
60
|
+
finding. A PASS/approve is **not valid on "found nothing"** — the conformance
|
|
61
|
+
statement is the proof the check ran; an unfalsifiable "I checked" is the review
|
|
62
|
+
theater this discipline exists to prevent (the reviewer-side twin of §Receiving's
|
|
63
|
+
silent-drop rule). Plain code reviews stay findings-only.
|
|
48
64
|
|
|
49
65
|
## Anti-patterns
|
|
50
66
|
|
|
@@ -154,6 +154,11 @@ end_date:
|
|
|
154
154
|
VISION_[feature].md is created only if the feature spans multiple
|
|
155
155
|
ANALYSIS documents or multiple milestones. -->
|
|
156
156
|
|
|
157
|
+
## Use Cases / User Needs
|
|
158
|
+
<!-- who needs this and why: the concrete use-cases / user-needs the change serves
|
|
159
|
+
(the Standalone home for what Hybrid keeps in D-UC). Derived from the elicitation
|
|
160
|
+
round; the Impact below must cover each, and the closure review checks coverage. -->
|
|
161
|
+
|
|
157
162
|
## Impact
|
|
158
163
|
<!-- existing files touched, APIs/contracts, performance, new dependencies -->
|
|
159
164
|
|