gigaspec 4.0.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/logo.svg ADDED
@@ -0,0 +1,55 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" width="200" height="200">
2
+ <defs>
3
+ <!-- Gradient for main shape -->
4
+ <linearGradient id="mainGradient" x1="0%" y1="0%" x2="100%" y2="100%">
5
+ <stop offset="0%" style="stop-color:#667eea;stop-opacity:1" />
6
+ <stop offset="50%" style="stop-color:#764ba2;stop-opacity:1" />
7
+ <stop offset="100%" style="stop-color:#f093fb;stop-opacity:1" />
8
+ </linearGradient>
9
+
10
+ <!-- Gradient for inner glow -->
11
+ <radialGradient id="innerGlow" cx="50%" cy="50%" r="50%">
12
+ <stop offset="0%" style="stop-color:#ffffff;stop-opacity:0.3" />
13
+ <stop offset="100%" style="stop-color:#ffffff;stop-opacity:0" />
14
+ </radialGradient>
15
+
16
+ <!-- Drop shadow filter -->
17
+ <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
18
+ <feDropShadow dx="0" dy="4" stdDeviation="8" flood-color="#667eea" flood-opacity="0.4"/>
19
+ </filter>
20
+ </defs>
21
+
22
+ <!-- Background circle with gradient -->
23
+ <circle cx="100" cy="100" r="90" fill="url(#mainGradient)" filter="url(#shadow)"/>
24
+
25
+ <!-- Inner glow overlay -->
26
+ <circle cx="100" cy="100" r="85" fill="url(#innerGlow)"/>
27
+
28
+ <!-- G letter stylized as code brackets -->
29
+ <g fill="none" stroke="#ffffff" stroke-width="8" stroke-linecap="round" stroke-linejoin="round">
30
+ <!-- Left bracket curved -->
31
+ <path d="M75 55 Q55 55 55 75 L55 125 Q55 145 75 145" />
32
+
33
+ <!-- Right bracket (dot for spec) -->
34
+ <circle cx="135" cy="100" r="8" fill="#ffffff" stroke="none"/>
35
+
36
+ <!-- Connecting line representing spec -->
37
+ <path d="M75 100 L115 100" stroke-width="6" opacity="0.8"/>
38
+ </g>
39
+
40
+ <!-- Circuit/AI dots around -->
41
+ <g fill="#ffffff" opacity="0.6">
42
+ <circle cx="100" cy="30" r="3"/>
43
+ <circle cx="100" cy="170" r="3"/>
44
+ <circle cx="30" cy="100" r="3"/>
45
+ <circle cx="170" cy="100" r="3"/>
46
+ </g>
47
+
48
+ <!-- Connection lines for AI feel -->
49
+ <g stroke="#ffffff" stroke-width="1.5" opacity="0.3" fill="none">
50
+ <path d="M100 30 L100 55"/>
51
+ <path d="M100 145 L100 170"/>
52
+ <path d="M30 100 L55 100"/>
53
+ <path d="M145 100 L170 100"/>
54
+ </g>
55
+ </svg>
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "gigaspec",
3
+ "version": "4.0.0",
4
+ "description": "AI collaboration framework for software specification",
5
+ "main": "lib/framework.js",
6
+ "bin": {
7
+ "gigaspec": "bin/gigaspec.js",
8
+ "gigaspec-mcp": "bin/mcp-server.js"
9
+ },
10
+ "scripts": {
11
+ "test": "jest",
12
+ "test:watch": "jest --watch",
13
+ "test:coverage": "jest --coverage"
14
+ },
15
+ "mcp": {
16
+ "name": "gigaspec",
17
+ "description": "AI collaboration framework for software specification",
18
+ "entrypoint": "bin/mcp-server.js"
19
+ },
20
+ "keywords": [
21
+ "specification",
22
+ "ai",
23
+ "llm",
24
+ "claude",
25
+ "framework",
26
+ "collaboration",
27
+ "gigaspec"
28
+ ],
29
+ "author": "Gigaspec Team",
30
+ "license": "Apache-2.0",
31
+ "engines": {
32
+ "node": ">=16.0.0"
33
+ },
34
+ "dependencies": {
35
+ "@modelcontextprotocol/sdk": "^1.26.0",
36
+ "chalk": "^4.1.2",
37
+ "commander": "^11.0.0",
38
+ "fs-extra": "^11.1.1",
39
+ "inquirer": "^9.3.8",
40
+ "zod": "^4.3.6",
41
+ "zod-to-json-schema": "^3.25.1"
42
+ },
43
+ "devDependencies": {
44
+ "jest": "^30.2.0"
45
+ }
46
+ }
package/prompts/fix.md ADDED
@@ -0,0 +1,2 @@
1
+ # Fix Protocol
2
+ Input: Violation + Code → Output: Before/After diff
@@ -0,0 +1,2 @@
1
+ # Implementation Protocol
2
+ Phase A: Interface → Phase B: Logic → Phase C: Fault tolerance
@@ -0,0 +1,2 @@
1
+ # Planning Protocol
2
+ Read STATE.md → Identify critical path → Output: Assessment → Chunks → Checklist
@@ -0,0 +1,2 @@
1
+ # Verification Protocol
2
+ Static analysis → Tests → AGENT.md compliance