@antoneeo/agentic-sdlc-skill 1.21.0 → 1.21.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/agentic-sdlc-skill/SKILL.md +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
Tutte le modifiche significative a questa skill saranno documentate in questo file.
|
|
4
4
|
|
|
5
|
+
## [1.21.1 / kb 1.4.1 / mkt 0.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.21.0 / kb 1.4.0 / mkt 0.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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@antoneeo/agentic-sdlc-skill",
|
|
3
|
-
"version": "1.21.
|
|
3
|
+
"version": "1.21.1",
|
|
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",
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: agentic-sdlc
|
|
3
|
+
version: 1.21.1
|
|
3
4
|
description: Documentation-First SDLC protocol with risk-proportional triage, Vision as a guide, a complete Standalone mode and optional symbiosis with devPNT. Use for features, significant bugs, refactors, audits and documented maintenance.
|
|
4
5
|
author: Antonio Pinto (https://github.com/Antoneeo)
|
|
5
6
|
copyright: (c) 2026 Antonio Pinto
|