@antoneeo/agentic-sdlc-skill 1.0.4 → 1.0.5
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 +28 -0
- package/gemini-extension.json +1 -1
- package/package.json +2 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Changelog - Agentic SDLC Skill
|
|
2
|
+
|
|
3
|
+
Tutte le modifiche significative a questa skill saranno documentate in questo file.
|
|
4
|
+
|
|
5
|
+
## [1.0.5] - 2026-04-17
|
|
6
|
+
### Aggiunto
|
|
7
|
+
- File `CHANGELOG.md` per il tracciamento delle versioni.
|
|
8
|
+
|
|
9
|
+
## [1.0.4] - 2026-04-17
|
|
10
|
+
### Modificato
|
|
11
|
+
- `README.md`: Aggiunte istruzioni specifiche per l'installazione da chiavetta USB e chiarimenti sulla disponibilità globale della skill.
|
|
12
|
+
|
|
13
|
+
## [1.0.3] - 2026-04-17
|
|
14
|
+
### Aggiunto
|
|
15
|
+
- Primo `README.md` con istruzioni di installazione e attivazione.
|
|
16
|
+
|
|
17
|
+
## [1.0.2] - 2026-04-17
|
|
18
|
+
### Corretto
|
|
19
|
+
- Riorganizzata la struttura delle cartelle secondo gli standard di Gemini CLI (`skills/agentic-sdlc-skill/SKILL.md`).
|
|
20
|
+
- Aggiunto frontmatter YAML a `SKILL.md` per la scoperta automatica.
|
|
21
|
+
|
|
22
|
+
## [1.0.1] - 2026-04-17
|
|
23
|
+
### Corretto
|
|
24
|
+
- Aggiunto `gemini-extension.json` (manifest dell'estensione) mancante nella versione iniziale.
|
|
25
|
+
|
|
26
|
+
## [1.0.0] - 2026-04-17
|
|
27
|
+
### Iniziale
|
|
28
|
+
- Prima pubblicazione della skill (Protocollo SDLC Documentation-First).
|
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.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Protocollo SDLC Documentation-First per Gemini CLI. Gestisce audit, analisi, sviluppo e chiusura feature con documentazione sincronizzata.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"gemini-cli",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"gemini-extension.json",
|
|
20
20
|
"references",
|
|
21
21
|
"README.md",
|
|
22
|
+
"CHANGELOG.md",
|
|
22
23
|
"assets",
|
|
23
24
|
"scripts"
|
|
24
25
|
]
|