@wairon/cli 5.0.1-dev.4
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/LICENSE +21 -0
- package/README.md +208 -0
- package/dist/cli/index.js +36984 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/index.js +16791 -0
- package/dist/index.js.map +1 -0
- package/dist/templates/architect.yaml +40 -0
- package/dist/templates/canvas/README.md +9 -0
- package/dist/templates/canvas/cytoscape.min.js +31 -0
- package/dist/templates/domain-owner.yaml +48 -0
- package/dist/templates/guardian.yaml +46 -0
- package/dist/templates/implementer.yaml +31 -0
- package/dist/templates/reviewer.yaml +42 -0
- package/dist/templates/skills/sdd-architect.md +107 -0
- package/dist/templates/skills/sdd-auditor.md +28 -0
- package/dist/templates/skills/sdd-implement.md +129 -0
- package/dist/templates/skills/sdd-narrative.md +63 -0
- package/dist/templates/tester.yaml +42 -0
- package/package.json +85 -0
package/package.json
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@wairon/cli",
|
|
3
|
+
"version": "5.0.1-dev.4",
|
|
4
|
+
"description": "SYW Waffle AIron — CLI for managing AI coding agent topology across projects",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ai",
|
|
7
|
+
"agents",
|
|
8
|
+
"cli",
|
|
9
|
+
"topology",
|
|
10
|
+
"claude",
|
|
11
|
+
"gemini",
|
|
12
|
+
"developer-tools"
|
|
13
|
+
],
|
|
14
|
+
"author": "SYW",
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"homepage": "https://github.com/SYW-Apps/Waffle-AIron",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/SYW-Apps/Waffle-AIron.git"
|
|
20
|
+
},
|
|
21
|
+
"type": "commonjs",
|
|
22
|
+
"bin": {
|
|
23
|
+
"wairon": "./dist/cli/index.js",
|
|
24
|
+
"wai": "./dist/cli/index.js"
|
|
25
|
+
},
|
|
26
|
+
"main": "./dist/index.js",
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"README.md"
|
|
30
|
+
],
|
|
31
|
+
"workspaces": [
|
|
32
|
+
"sdk"
|
|
33
|
+
],
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=18.0.0"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"dev": "tsx src/cli/index.ts",
|
|
39
|
+
"build:sdk": "npm --prefix sdk run build",
|
|
40
|
+
"prebuild": "npm --prefix sdk run build",
|
|
41
|
+
"build": "tsup && node -e \"const fs=require('fs'); fs.cpSync('src/templates','dist/templates',{recursive:true});\" && node scripts/embed-web.mjs",
|
|
42
|
+
"gen:canvas": "node scripts/gen-canvas-engine.mjs",
|
|
43
|
+
"build:web": "node scripts/gen-canvas-engine.mjs && npm --prefix web install --no-audit --no-fund && npm --prefix web run build",
|
|
44
|
+
"build:all": "npm run build:web && npm run build",
|
|
45
|
+
"build:watch": "tsup --watch",
|
|
46
|
+
"build:binary": "npm run build && pkg dist/cli/index.js --config package.json --target node20-linux-x64,node20-win-x64,node20-macos-x64 --output wairon --compress GZip",
|
|
47
|
+
"typecheck": "tsc --noEmit",
|
|
48
|
+
"test": "vitest run",
|
|
49
|
+
"test:watch": "vitest",
|
|
50
|
+
"test:coverage": "vitest run --coverage",
|
|
51
|
+
"clean": "rimraf dist"
|
|
52
|
+
},
|
|
53
|
+
"pkg": {
|
|
54
|
+
"assets": [
|
|
55
|
+
"dist/templates/**/*",
|
|
56
|
+
"dist/webapp.html"
|
|
57
|
+
],
|
|
58
|
+
"scripts": [],
|
|
59
|
+
"outputPath": "bin"
|
|
60
|
+
},
|
|
61
|
+
"dependencies": {
|
|
62
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
63
|
+
"chalk": "^4.1.2",
|
|
64
|
+
"commander": "^12.1.0",
|
|
65
|
+
"inquirer": "^8.2.6",
|
|
66
|
+
"js-yaml": "^4.1.0",
|
|
67
|
+
"ora": "^5.4.1",
|
|
68
|
+
"swagger-ui-dist": "^5.32.9",
|
|
69
|
+
"zod": "^3.23.8"
|
|
70
|
+
},
|
|
71
|
+
"devDependencies": {
|
|
72
|
+
"@types/inquirer": "^8.2.10",
|
|
73
|
+
"@types/js-yaml": "^4.0.9",
|
|
74
|
+
"@types/node": "^20.14.0",
|
|
75
|
+
"@vitest/coverage-v8": "^4.1.9",
|
|
76
|
+
"@wairon/sdk": "*",
|
|
77
|
+
"@yao-pkg/pkg": "^5.12.0",
|
|
78
|
+
"cytoscape": "^3.34.0",
|
|
79
|
+
"rimraf": "^5.0.7",
|
|
80
|
+
"tsup": "^8.1.0",
|
|
81
|
+
"tsx": "^4.15.7",
|
|
82
|
+
"typescript": "^5.5.2",
|
|
83
|
+
"vitest": "^4.1.9"
|
|
84
|
+
}
|
|
85
|
+
}
|