@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 +25 -5
- package/README.md +81 -84
- package/gemini-extension.json +2 -2
- package/package.json +6 -3
- package/references/analysis_template.md +44 -19
- package/references/architecture_template.md +7 -4
- package/references/feature_vision_template.md +21 -0
- package/references/features_history_template.md +5 -6
- package/references/principles_template.md +13 -0
- package/references/project_vision_template.md +26 -0
- package/references/roadmap_template.md +9 -0
- package/scripts/init.js +142 -69
- package/scripts/postinstall.js +39 -13
- package/scripts/preuninstall.js +7 -4
- package/skills/agentic-sdlc-skill/ENFORCEMENT.md +55 -0
- package/skills/agentic-sdlc-skill/SKILL.md +141 -80
- package/skills/agentic-sdlc-skill/scripts/sdlc_check.py +474 -0
- package/skills/agentic-sdlc-skill/templates.md +169 -0
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.
|
|
6
|
-
###
|
|
7
|
-
-
|
|
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
|
-
|
|
4
|
-
|
|
5
|
-
## Key Features
|
|
6
|
-
|
|
7
|
-
- **
|
|
8
|
-
- **
|
|
9
|
-
- **
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
The package
|
|
32
|
-
|
|
33
|
-
```bash
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
##
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
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.
|
package/gemini-extension.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-sdlc-skill",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "Protocollo SDLC Documentation-First
|
|
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.
|
|
4
|
-
"description": "Protocollo SDLC Documentation-First per Claude Code, Gemini CLI e Codex
|
|
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
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
-
|
|
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
|
-
- `
|
|
12
|
-
- `
|
|
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
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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.
|