@antoneeo/agentic-sdlc-skill 1.3.1 → 1.5.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
@@ -1,10 +1,30 @@
1
1
  # Changelog - Agentic SDLC Skill
2
2
 
3
- Tutte le modifiche significative a questa skill saranno documentate in questo file.
4
-
5
- ## [1.3.1] - 2026-05-14
6
- ### Fixed
7
- - Correzione documentazione (README + CHANGELOG) della sintassi per invocare il bin `agentic-sdlc-install-skill`. La forma `npx @antoneeo/agentic-sdlc-skill agentic-sdlc-install-skill` documentata in 1.3.0 **non funziona** perché npx non riesce a disambiguare il bin quando il pacchetto ne espone più di uno (errore: `could not determine executable to run`). Sintassi corretta: lanciare `agentic-sdlc-install-skill` direttamente dopo `npm install -g`, oppure usare `npx -p @antoneeo/agentic-sdlc-skill agentic-sdlc-install-skill` con `-p` esplicito.
3
+ Tutte le modifiche significative a questa skill saranno documentate in questo file.
4
+
5
+ ## [1.5.0] - 2026-06-13
6
+ ### Added
7
+ - Introdotta la Regola Zero di triage (`L1`, `L2`, `L3`, `Spike`) per rendere il processo proporzionale al rischio.
8
+ - Aggiunta simbiosi esplicita con devPNT: in Hybrid la `M-VISION` guida la milestone, il Master Plan resta roadmap strategica e l'Action Plan governa l'esecuzione tattica.
9
+ - Aggiunti support file dentro la skill runtime: `templates.md`, `ENFORCEMENT.md`, `scripts/sdlc_check.py`.
10
+ - `agentic-sdlc-install-skill` ora installa la skill nativa anche in `~/.gemini/skills/agentic-sdlc/`.
11
+ - Aggiunto validatore meccanico opzionale per frontmatter ANALYSIS, Vision state, indice feature e audit stale.
12
+
13
+ ### Changed
14
+ - Il nome pubblico resta `agentic-sdlc`; la proposta v2 e' stata integrata come evoluzione, non come skill parallela.
15
+ - Aggiornati `agentic-sdlc-init`, template, protocolli generati, README e metadata.
16
+ - La modalita Standalone resta completa; devPNT e' un livello di governance superiore, non un prerequisito.
17
+
18
+ ## [1.4.0] - 2026-06-07
19
+ ### Added
20
+ - Introdotta la governance della **Vision** con nuova struttura `ai_docs/vision/` (`project_vision.md`, `roadmap.md`, `principles.md`, `features/`).
21
+ - Aggiunto il **Vision Gate** nel workflow operativo: ogni feature significativa deve essere verificata rispetto a obiettivi, non-obiettivi, benefici attesi e segnali di successo prima dell'analisi tecnica.
22
+ - Aggiunti template Vision in `references/` e sezione `Allineamento alla Vision` nel template di analisi.
23
+ - `agentic-sdlc-init` ora crea i documenti Vision boilerplate nei nuovi progetti.
24
+
25
+ ## [1.3.1] - 2026-05-14
26
+ ### Fixed
27
+ - Correzione documentazione (README + CHANGELOG) della sintassi per invocare il bin `agentic-sdlc-install-skill`. La forma `npx @antoneeo/agentic-sdlc-skill agentic-sdlc-install-skill` documentata in 1.3.0 **non funziona** perché npx non riesce a disambiguare il bin quando il pacchetto ne espone più di uno (errore: `could not determine executable to run`). Sintassi corretta: lanciare `agentic-sdlc-install-skill` direttamente dopo `npm install -g`, oppure usare `npx -p @antoneeo/agentic-sdlc-skill agentic-sdlc-install-skill` con `-p` esplicito.
8
28
  - Nessuna modifica al codice della skill: il bin di 1.3.0 funziona correttamente, era solo la doc a indicare la sintassi sbagliata.
9
29
 
10
30
  ## [1.3.0] - 2026-05-14
package/README.md CHANGED
@@ -1,84 +1,81 @@
1
- # Agentic SDLC Skill for Claude Code, Gemini CLI & Codex
2
-
3
- A "Documentation-First" SDLC protocol designed to manage the software development lifecycle rigorously. It natively supports **Claude Code** (skill auto-installed in `~/.claude/skills/`), **Gemini CLI** (extension), and **Codex AI** (skill auto-installed in `~/.codex/skills/`).
4
-
5
- ## Key Features
6
- - **Documentation-First**: Requires documentation (`docs/`) to be created or updated before writing code.
7
- - **Automatic Audit**: Analyzes the existing architecture and features.
8
- - **Traceable Workflow**: Tracks feature status in `features_history.md`.
9
- - **Built-In Quality**: Native integration of analysis, development, and testing.
10
-
11
- ## Installation
12
-
13
- ### Via npm (recommended - installs for all detected CLIs)
14
-
15
- ```bash
16
- npm install -g @antoneeo/agentic-sdlc-skill
17
- ```
18
-
19
- The `postinstall` script automatically detects installed CLIs and configures each one:
20
-
21
- - **Claude Code**: copies the skill to `~/.claude/skills/agentic-sdlc/`. Restart Claude Code; invoke it through the `Skill` tool as `agentic-sdlc`, or let it trigger automatically from SDLC/audit prompts.
22
- - **Gemini CLI**: suggests `gemini extensions install` (see below).
23
- - **Codex AI**: copies the skill to `$CODEX_HOME/skills/agentic-sdlc/` or `~/.codex/skills/agentic-sdlc/`. Restart Codex to load it.
24
-
25
- `npm uninstall -g @antoneeo/agentic-sdlc-skill` also removes the skills from `~/.claude/skills/agentic-sdlc/` and `~/.codex/skills/agentic-sdlc/`.
26
-
27
- #### Troubleshooting skill not visible in Claude Code after install
28
-
29
- If after `npm install -g` you do **not** see the line `--- Agentic SDLC Skill Discovery ---` in the npm output, and `~/.claude/skills/agentic-sdlc/` does not exist, the `postinstall` hook was skipped by npm. The most common cause is `ignore-scripts=true` in your npm config (set by some Node installers, corporate IT policies, or security tools).
30
-
31
- The package ships an explicit `agentic-sdlc-install-skill` command that does the same work but does **not** depend on the `postinstall` hook. After `npm install -g`, the bin shim is created regardless of `ignore-scripts`, so you can simply run:
32
-
33
- ```bash
34
- npm install -g @antoneeo/agentic-sdlc-skill@latest
35
- agentic-sdlc-install-skill
36
- ```
37
-
38
- You should see the `--- Agentic SDLC Skill Discovery ---` banner and `📦 Installed Claude Code skill at: ...`. Then restart Claude Code (or Codex) and the skill will be available.
39
-
40
- > **Note on `npx`**: because the package exposes two bin commands, the shorthand `npx @antoneeo/agentic-sdlc-skill agentic-sdlc-install-skill` does not work — npx cannot disambiguate. If you prefer npx, use the explicit `-p` form: `npx -p @antoneeo/agentic-sdlc-skill agentic-sdlc-install-skill`.
41
-
42
- Alternatively, fix the npm config and reinstall (the `postinstall` hook will then run automatically):
43
-
44
- ```bash
45
- npm config set ignore-scripts false
46
- npm uninstall -g @antoneeo/agentic-sdlc-skill
47
- npm install -g @antoneeo/agentic-sdlc-skill@latest
48
- ```
49
-
50
- ### Via Gemini CLI (local alternative)
51
-
52
- > **Tip:** Before installing, copy this folder from the USB drive to your computer's hard drive (for example, `C:\tools\agentic-sdlc-skill`). This keeps the skill available even after the USB drive is removed.
53
-
54
- To install this extension, open a terminal in the folder that contains this README and run:
55
-
56
- ```bash
57
- gemini extensions install .
58
- ```
59
-
60
- *Note: If you are in a different folder, replace `.` with the full path to the skill folder.*
61
-
62
- ## Global Availability
63
- Once installation is complete, the skill is **globally available**. You can close this folder and move to **any other project** on your PC: Gemini CLI will automatically recognize the commands and workflow of the `agentic-sdlc` skill.
64
-
65
- ## Getting Started
66
-
67
- After installation, start Gemini CLI and verify that the skill is available:
68
-
69
- 1. **List available skills:**
70
- ```bash
71
- /skills list all
72
- ```
73
- 2. **Activate the skill:**
74
- The skill activates automatically when it detects requests related to development, audits, or feature management. You can also invoke it explicitly:
75
- > "Use the agentic-sdlc skill to analyze this project"
76
-
77
- ## Project Structure
78
- - `skills/`: Contains the skill logic (`SKILL.md`).
79
- - `references/`: Markdown templates for architecture, analysis, and feature history.
80
- - `gemini-extension.json`: Extension manifest.
81
-
82
- ---
83
- Created by **Antonio Pinto** ([GitHub](https://github.com/Antoneeo))
84
- (c) 2026 Antonio Pinto. All rights reserved.
1
+ # Agentic SDLC Skill for Claude Code, Gemini CLI & Codex
2
+
3
+ `agentic-sdlc` is a Documentation-First SDLC protocol for AI coding agents. It supports Claude Code, Codex, Gemini CLI, Cursor/Windsurf-style project instructions, and optional devPNT governance.
4
+
5
+ ## Key Features
6
+
7
+ - **Risk-proportional workflow**: L1/L2/L3/Spike triage avoids heavyweight process for trivial work.
8
+ - **Vision-guided governance**: Standalone projects use `ai_docs/vision/`; Hybrid projects use devPNT `M-VISION` as the milestone north star.
9
+ - **Standalone complete**: works fully with local `ai_docs/` without requiring devPNT.
10
+ - **devPNT symbiosis**: when devPNT is available, Master Plan, Action Plan, M-VISION, and governed artifacts become the authoritative planning layer.
11
+ - **Installed support files**: Claude, Codex, and Gemini receive the full skill folder, including `templates.md`, `ENFORCEMENT.md`, and `scripts/sdlc_check.py`.
12
+ - **Mechanical checks**: optional validator for document structure, generated feature history, stale audit areas, and protected-path gates.
13
+
14
+ ## Installation
15
+
16
+ ### Via npm
17
+
18
+ ```bash
19
+ npm install -g @antoneeo/agentic-sdlc-skill@latest
20
+ agentic-sdlc-install-skill
21
+ ```
22
+
23
+ The installer copies `skills/agentic-sdlc-skill/` recursively into native skill locations:
24
+
25
+ - Claude Code: `~/.claude/skills/agentic-sdlc/`
26
+ - Codex: `~/.codex/skills/agentic-sdlc/`
27
+ - Gemini CLI: `~/.gemini/skills/agentic-sdlc/`
28
+
29
+ Restart the relevant agent, or reload skills where the CLI supports it.
30
+
31
+ The global package also exposes:
32
+
33
+ ```bash
34
+ agentic-sdlc-init
35
+ ```
36
+
37
+ 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`).
38
+
39
+ ## Runtime Shape
40
+
41
+ The actual runtime skill is the folder:
42
+
43
+ ```text
44
+ skills/agentic-sdlc-skill/
45
+ ├── SKILL.md
46
+ ├── templates.md
47
+ ├── ENFORCEMENT.md
48
+ └── scripts/
49
+ └── sdlc_check.py
50
+ ```
51
+
52
+ `SKILL.md` is the entrypoint. Supporting files are loaded or executed only when the agent needs them.
53
+
54
+ ## Standalone vs Hybrid
55
+
56
+ Standalone:
57
+
58
+ - `ai_docs/` is the source of truth.
59
+ - Vision, analysis, audit, handoff, test strategy, and feature history are maintained locally.
60
+
61
+ Hybrid/devPNT:
62
+
63
+ - devPNT governs `M-VISION`, Master Plan, Action Plan, and versioned artifacts.
64
+ - `ai_docs/` remains useful as readable context, fallback, handoff, or shadow copy.
65
+ - Divergence between user request, local Vision, and devPNT `M-VISION` must be surfaced before implementation.
66
+
67
+ ## Gemini Extension Alternative
68
+
69
+ You can still install this folder as a Gemini extension:
70
+
71
+ ```bash
72
+ gemini extensions install .
73
+ ```
74
+
75
+ For native Gemini Agent Skills, the npm installer now copies the skill folder into `~/.gemini/skills/agentic-sdlc/`.
76
+
77
+ ## Created By
78
+
79
+ Created by **Antonio Pinto** ([GitHub](https://github.com/Antoneeo)).
80
+
81
+ (c) 2026 Antonio Pinto. All rights reserved.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-sdlc-skill",
3
- "version": "1.3.1",
4
- "description": "Protocollo SDLC Documentation-First per Gemini CLI.",
3
+ "version": "1.5.0",
4
+ "description": "Protocollo SDLC Documentation-First con triage, Vision governance e integrazione opzionale devPNT.",
5
5
  "author": "Antonio Pinto (https://github.com/Antoneeo)"
6
6
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@antoneeo/agentic-sdlc-skill",
3
- "version": "1.3.1",
4
- "description": "Protocollo SDLC Documentation-First per Claude Code, Gemini CLI e Codex. Auto-installa le skill native in ~/.claude/skills/ e ~/.codex/skills/. Gestisce audit, analisi, sviluppo e chiusura feature con documentazione sincronizzata.",
3
+ "version": "1.5.0",
4
+ "description": "Protocollo SDLC Documentation-First per Claude Code, Gemini CLI e Codex con triage, Vision governance, support file installati e integrazione opzionale devPNT.",
5
5
  "keywords": [
6
6
  "claude-code",
7
7
  "claude-skill",
@@ -25,7 +25,10 @@
25
25
  "preuninstall": "node scripts/preuninstall.js"
26
26
  },
27
27
  "files": [
28
- "skills",
28
+ "skills/agentic-sdlc-skill/SKILL.md",
29
+ "skills/agentic-sdlc-skill/templates.md",
30
+ "skills/agentic-sdlc-skill/ENFORCEMENT.md",
31
+ "skills/agentic-sdlc-skill/scripts/sdlc_check.py",
29
32
  "gemini-extension.json",
30
33
  "references",
31
34
  "README.md",
@@ -1,19 +1,44 @@
1
- # Analisi della Feature: [Nome Feature]
2
-
3
- ## Obiettivo
4
- - Cosa si vuole ottenere?
5
- - Quali problemi risolve?
6
-
7
- ## Impatto
8
- - Modifiche ai file esistenti?
9
- - Impatti sulle performance?
10
- - Nuove dipendenze?
11
-
12
- ## Piano d'Azione
13
- 1. [ ] Sviluppo...
14
- 2. [ ] Test...
15
-
16
- ## Strategia di Test
17
- - Test unitari (AAA Pattern)
18
- - Test d'integrazione
19
- - Esempi di input e output attesi
1
+ ---
2
+ id: F-XXX
3
+ feature: [Nome Feature]
4
+ stato: PLANNED
5
+ livello: L3
6
+ data_inizio: YYYY-MM-DD
7
+ data_fine:
8
+ ---
9
+ # Analisi della Feature: [Nome Feature]
10
+
11
+ ## Obiettivo
12
+ - Cosa si vuole ottenere?
13
+ - Quale problema risolve?
14
+
15
+ ## Vision della Feature
16
+ - Documento guida: `ai_docs/vision/project_vision.md` o `ai_docs/vision/features/VISION_[nome_feature].md`.
17
+ - Stato della Vision guida: DRAFT oppure APPROVED.
18
+ - Beneficio atteso.
19
+ - Non-obiettivi / fuori scope.
20
+ - Segnali di successo.
21
+
22
+ ## Impatto
23
+ - File o moduli coinvolti.
24
+ - API, contratti o formati dati impattati.
25
+ - Performance, migrazioni o nuove dipendenze.
26
+
27
+ ## Sicurezza e Threat Model
28
+ - Superfici toccate: input esterni, authN/authZ, crittografia, rete, dati personali, filesystem.
29
+ - Minacce principali.
30
+ - Mitigazioni.
31
+ - Se non c'e' impatto di sicurezza, motivare perche.
32
+
33
+ ## Piano d'Azione
34
+ - [ ] Sviluppo
35
+ - [ ] Test
36
+ - [ ] Chiusura documentale
37
+
38
+ ## Strategia di Test
39
+ - Unit test AAA.
40
+ - Test di integrazione o smoke check.
41
+ - Verifica alternativa se i test automatici non sono eseguibili.
42
+
43
+ ## Diario / Stato Corrente
44
+ - YYYY-MM-DD: Stato iniziale e prossimo passo.
@@ -6,10 +6,13 @@
6
6
  - **Database:** [es. PostgreSQL]
7
7
  - **Strumenti di Test:** [es. Jest, Vitest]
8
8
 
9
- ## Struttura delle Directory
10
- - `src/`: Codice sorgente.
11
- - `docs/`: Documentazione tecnica.
12
- - `tests/`: Test automatici.
9
+ ## Struttura delle Directory
10
+ - `src/`: Codice sorgente.
11
+ - `ai_docs/vision/`: Vision di progetto, roadmap, principi e mini-vision delle feature.
12
+ - `ai_docs/strategic/`: Architettura, feature esistenti e storico feature.
13
+ - `ai_docs/solutions/`: Analisi e piani delle singole feature.
14
+ - `ai_docs/audit/`: Piano di audit e handoff di sessione.
15
+ - `tests/`: Test automatici.
13
16
 
14
17
  ## Pattern Architetturali
15
18
  - [es. MVC, Clean Architecture, Layered Architecture]
@@ -0,0 +1,21 @@
1
+ # Vision della Feature: [Nome Feature]
2
+
3
+ Usare un file separato solo quando la feature attraversa piu ANALYSIS o piu milestone. Altrimenti tenere la Vision della Feature dentro `ANALYSIS_[feature].md`.
4
+
5
+ ## Problema
6
+ - Quale problema specifico risolve questa feature?
7
+
8
+ ## Beneficio Atteso
9
+ - Quale risultato utile deve produrre per utenti o stakeholder?
10
+
11
+ ## Utenti o Stakeholder
12
+ - Chi beneficia direttamente o indirettamente della feature?
13
+
14
+ ## Segnali di Successo
15
+ - Come sapremo che la feature ha raggiunto l'obiettivo?
16
+
17
+ ## Non-Obiettivi / Fuori Scope
18
+ - Cosa non deve essere incluso in questa feature?
19
+
20
+ ## Vincoli e Principi Collegati
21
+ - Quali principi di `ai_docs/vision/principles.md` guidano questa feature?
@@ -1,6 +1,5 @@
1
- # Storico delle Feature
2
-
3
- | ID | Nome Feature | Stato | Data Inizio | Data Fine | Doc. Analisi | Note |
4
- |:---|:-------------|:------|:------------|:----------|:-------------|:-----|
5
- | [ID] | Nome | [PLANNED] | YYYY-MM-DD | - | [ANALYSIS_nome.md] | In attesa |
6
- | [ID] | Altra | [COMPLETED] | YYYY-MM-DD | YYYY-MM-DD | [ANALYSIS_altra.md] | Conclusa |
1
+ <!-- GENERATED by agentic-sdlc - update manually only if the project does not use sdlc_check.py index. -->
2
+ # Feature History
3
+
4
+ | ID | Feature Name | Level | Status | Start Date | End Date | Analysis Doc |
5
+ |:---|:---|:---|:---|:---|:---|:---|
@@ -0,0 +1,13 @@
1
+ # Principi di Vision
2
+ Stato: DRAFT
3
+
4
+ I principi in questo file guidano trade-off, scope e decisioni tecniche quando piu soluzioni sono possibili.
5
+
6
+ ## Principi
7
+ - **[Principio]**: [Descrizione pratica del criterio decisionale].
8
+
9
+ ## Trade-off Preferiti
10
+ - Preferire [A] rispetto a [B] quando [condizione].
11
+
12
+ ## Anti-Pattern Strategici
13
+ - [Comportamento o direzione da evitare perche devia dalla Vision].
@@ -0,0 +1,26 @@
1
+ # Vision del Progetto
2
+ Stato: DRAFT
3
+
4
+ ## North Star
5
+ - Qual e' l'obiettivo finale che il progetto deve preservare nel tempo?
6
+
7
+ ## Problema Centrale
8
+ - Quale problema reale risolve il progetto?
9
+
10
+ ## Utenti Target
11
+ - Chi sono utenti o stakeholder principali?
12
+
13
+ ## Valore Atteso
14
+ - Quale beneficio misurabile o osservabile deve produrre il progetto?
15
+
16
+ ## Obiettivi
17
+ - [Obiettivo 1]
18
+ - [Obiettivo 2]
19
+
20
+ ## Non-Obiettivi
21
+ - [Cosa il progetto non vuole diventare]
22
+ - [Cosa e' esplicitamente fuori scope]
23
+
24
+ ## Segnali di Successo
25
+ - [Indicatore qualitativo o quantitativo]
26
+ - [Comportamento utente o metrica attesa]
@@ -0,0 +1,9 @@
1
+ # Roadmap della Vision
2
+ Stato: DRAFT
3
+
4
+ | Milestone | Beneficio Atteso | Priorita | Segnali di Successo | Stato |
5
+ |:---|:---|:---|:---|:---|
6
+ | M1 | [Beneficio] | Alta | [Segnale] | [PLANNED] |
7
+
8
+ ## Note di Direzione
9
+ - Decisioni strategiche o cambi di priorita rilevanti.