@antoneeo/agentic-sdlc-skill 1.3.0 → 1.3.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 +7 -1
- package/README.md +8 -5
- package/gemini-extension.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Tutte le modifiche significative a questa skill saranno documentate in questo file.
|
|
4
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.
|
|
8
|
+
- Nessuna modifica al codice della skill: il bin di 1.3.0 funziona correttamente, era solo la doc a indicare la sintassi sbagliata.
|
|
9
|
+
|
|
5
10
|
## [1.3.0] - 2026-05-14
|
|
6
11
|
### Added
|
|
7
12
|
- Nuovo comando esplicito `agentic-sdlc-install-skill` (registrato come `bin`): installa la skill in `~/.claude/skills/agentic-sdlc/` e `~/.codex/skills/agentic-sdlc/` **senza dipendere dal `postinstall` hook**. Risolve i casi in cui `npm` salta gli script (configurazioni `ignore-scripts=true`, policy IT aziendali, alcuni installer Node) e l'auto-install fallisce silenziosamente.
|
|
@@ -9,7 +14,8 @@ Tutte le modifiche significative a questa skill saranno documentate in questo fi
|
|
|
9
14
|
|
|
10
15
|
### Usage
|
|
11
16
|
```bash
|
|
12
|
-
|
|
17
|
+
npm install -g @antoneeo/agentic-sdlc-skill@latest
|
|
18
|
+
agentic-sdlc-install-skill
|
|
13
19
|
```
|
|
14
20
|
|
|
15
21
|
## [1.2.4] - 2026-05-14
|
package/README.md
CHANGED
|
@@ -28,13 +28,18 @@ The `postinstall` script automatically detects installed CLIs and configures eac
|
|
|
28
28
|
|
|
29
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
30
|
|
|
31
|
-
|
|
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
32
|
|
|
33
33
|
```bash
|
|
34
|
-
|
|
34
|
+
npm install -g @antoneeo/agentic-sdlc-skill@latest
|
|
35
|
+
agentic-sdlc-install-skill
|
|
35
36
|
```
|
|
36
37
|
|
|
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):
|
|
38
43
|
|
|
39
44
|
```bash
|
|
40
45
|
npm config set ignore-scripts false
|
|
@@ -42,8 +47,6 @@ npm uninstall -g @antoneeo/agentic-sdlc-skill
|
|
|
42
47
|
npm install -g @antoneeo/agentic-sdlc-skill@latest
|
|
43
48
|
```
|
|
44
49
|
|
|
45
|
-
Then restart Claude Code (or Codex) and the skill will be available.
|
|
46
|
-
|
|
47
50
|
### Via Gemini CLI (local alternative)
|
|
48
51
|
|
|
49
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.
|
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.
|
|
3
|
+
"version": "1.3.1",
|
|
4
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.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|