sdg-agents 1.1.2 → 1.1.3

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.
Files changed (2) hide show
  1. package/README.md +7 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,22 +5,15 @@
5
5
  A CLI that installs a structured instruction set for AI agents into your project.<br>
6
6
  <a href="docs/README.pt-BR.md">Versão em Português (Brasil)</a>
7
7
  </p>
8
+ <p align="center">
9
+ Read the manifesto and visual guide at <a href="https://specdrivenguide.org">specdrivenguide.org</a>
10
+ </p>
8
11
  <a href="https://nodejs.org"><img src="https://img.shields.io/badge/node-%3E%3D24-brightgreen?style=flat-square&logo=nodedotjs" alt="Node" /></a>
9
12
  <a href="./LICENSE"><img src="https://img.shields.io/badge/license-ISC-blue?style=flat-square" alt="License: ISC" /></a>
10
13
  </div>
11
14
 
12
15
  <br>
13
16
 
14
- <p align="center">
15
- Read the manifesto and visual guide at <a href="https://specdrivenguide.org">specdrivenguide.org</a>
16
- </p>
17
-
18
- <br>
19
-
20
- <p align="center">
21
- <kbd><img src="https://raw.githubusercontent.com/thiagocajadev/sgd-agents-cli/main/src/assets/img/sdg-agents-menu-v1.png" alt="Spec Driven Guide CLI in action" /></kbd>
22
- </p>
23
-
24
17
  `sdg-agents` installs a set of markdown instruction files into your project. AI agents (Claude Code, Cursor, Windsurf, Copilot, Codex, and others) read these files and follow the defined protocol for every task.
25
18
 
26
19
  > **Note:** If your agent does not pick up the rules automatically, reference `.ai/skill/AGENTS.md` at the start of the session.
@@ -41,6 +34,10 @@ The instruction set covers:
41
34
  npx sdg-agents
42
35
  ```
43
36
 
37
+ <p align="left">
38
+ <kbd><img src="https://raw.githubusercontent.com/thiagocajadev/sgd-agents-cli/main/src/assets/img/sdg-agents-menu-v1.png" alt="Spec Driven Guide CLI in action" /></kbd>
39
+ </p>
40
+
44
41
  The interactive wizard guides you through selecting an architectural flavor and one or more language idioms. For non-interactive use:
45
42
 
46
43
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sdg-agents",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "Structured working protocol and engineering rules for AI agents. Works with Claude Code, Antigravity, Codex, and others.",
5
5
  "type": "module",
6
6
  "main": "./src/engine/bin/index.mjs",