@esneiderbravo/speclaw 0.1.0 → 0.1.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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  <div align="center">
2
2
 
3
- <img src="brand/speclaw-banner.svg" width="820" alt="speclaw — where specs become law">
3
+ <img src="https://raw.githubusercontent.com/esneiderbravo/speclaw/main/brand/speclaw-banner.png" width="820" alt="speclaw — where specs become law">
4
4
 
5
5
  <br/>
6
6
 
@@ -38,7 +38,7 @@ One command. No cloud, no LLM, no API keys — <b>everything runs on your machin
38
38
  ## ◆ Quick start
39
39
 
40
40
  <p align="center">
41
- <img src="brand/terminal-quickstart.svg" width="800" alt="npx @esneiderbravo/speclaw init">
41
+ <img src="https://raw.githubusercontent.com/esneiderbravo/speclaw/main/brand/terminal-quickstart.png" width="800" alt="npx @esneiderbravo/speclaw init">
42
42
  </p>
43
43
 
44
44
  <p align="center">Copy &amp; run in your project root: <code>npx @esneiderbravo/speclaw init</code></p>
@@ -60,7 +60,7 @@ Works with `npm`, `pnpm` (`pnpm dlx @esneiderbravo/speclaw init`), and `yarn`.
60
60
  ## ◆ It looks like this
61
61
 
62
62
  <p align="center">
63
- <img src="brand/terminal-init.svg" width="800" alt="speclaw init — terminal output">
63
+ <img src="https://raw.githubusercontent.com/esneiderbravo/speclaw/main/brand/terminal-init.png" width="800" alt="speclaw init — terminal output">
64
64
  </p>
65
65
 
66
66
  <p align="center"><i>Teal steps, green checks, a live progress bar — themed with the speclaw palette.</i></p>
@@ -88,17 +88,17 @@ for a smoother, integrated experience once configured. An agent without MCP can
88
88
  still use Compass and the spec engine by calling the CLI from its shell.
89
89
 
90
90
  <p align="center"><b>CLI</b> — the installer &amp; operator, runs anywhere <code>node</code> does</p>
91
- <p align="center"><img src="brand/terminal-cli.svg" width="800" alt="speclaw CLI commands"></p>
91
+ <p align="center"><img src="https://raw.githubusercontent.com/esneiderbravo/speclaw/main/brand/terminal-cli.png" width="800" alt="speclaw CLI commands"></p>
92
92
 
93
93
  <p align="center"><b>MCP</b> — the integrated agent surface, auto-registered by <code>init</code></p>
94
- <p align="center"><img src="brand/terminal-mcp.svg" width="800" alt="speclaw MCP tools"></p>
94
+ <p align="center"><img src="https://raw.githubusercontent.com/esneiderbravo/speclaw/main/brand/terminal-mcp.png" width="800" alt="speclaw MCP tools"></p>
95
95
 
96
96
  <br/>
97
97
 
98
98
  ## ◆ What lands in your project
99
99
 
100
100
  <p align="center">
101
- <img src="brand/terminal-tree.svg" width="800" alt="what speclaw writes into your project">
101
+ <img src="https://raw.githubusercontent.com/esneiderbravo/speclaw/main/brand/terminal-tree.png" width="800" alt="what speclaw writes into your project">
102
102
  </p>
103
103
 
104
104
  <br/>
package/dist/cli/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esneiderbravo/speclaw",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -17,6 +17,14 @@
17
17
  ],
18
18
  "author": "Esneider Bravo",
19
19
  "license": "MIT",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/esneiderbravo/speclaw.git"
23
+ },
24
+ "homepage": "https://github.com/esneiderbravo/speclaw#readme",
25
+ "bugs": {
26
+ "url": "https://github.com/esneiderbravo/speclaw/issues"
27
+ },
20
28
  "type": "module",
21
29
  "bin": {
22
30
  "speclaw": "dist/cli/index.js"
@@ -28,6 +36,7 @@
28
36
  ],
29
37
  "scripts": {
30
38
  "build": "tsc && node scripts/copy-assets.mjs",
39
+ "brand": "node scripts/render-brand.mjs",
31
40
  "start": "node dist/cli/index.js",
32
41
  "prepublishOnly": "npm run build"
33
42
  },
@@ -43,6 +52,7 @@
43
52
  "zod": "^3.23.0"
44
53
  },
45
54
  "devDependencies": {
55
+ "@resvg/resvg-js": "^2.6.2",
46
56
  "@types/node": "^22.0.0",
47
57
  "typescript": "^5.6.0"
48
58
  }