ai-advisory-board 0.1.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.
Binary file
package/package.json ADDED
@@ -0,0 +1,87 @@
1
+ {
2
+ "name": "ai-advisory-board",
3
+ "version": "0.1.0",
4
+ "description": "AI Advisory Board CLI — convene a panel of Claude sub-agents on any business question, and turn the resulting action items into installed Claude Code skills.",
5
+ "type": "module",
6
+ "bin": {
7
+ "aab": "dist/bin/aab.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "gui",
12
+ "README.md",
13
+ "LICENSE",
14
+ "NOTICE",
15
+ "CHANGELOG.md"
16
+ ],
17
+ "engines": {
18
+ "node": ">=20"
19
+ },
20
+ "scripts": {
21
+ "build": "tsup",
22
+ "dev": "tsx bin/aab.ts",
23
+ "typecheck": "tsc --noEmit",
24
+ "test": "vitest",
25
+ "test:run": "vitest run",
26
+ "test:e2e": "playwright test",
27
+ "test:e2e:ui": "playwright test --ui",
28
+ "test:e2e:install": "playwright install --with-deps",
29
+ "lint": "eslint .",
30
+ "prepublishOnly": "npm run build",
31
+ "changeset": "changeset",
32
+ "changeset:version": "changeset version",
33
+ "changeset:publish": "npm run build && changeset publish"
34
+ },
35
+ "dependencies": {
36
+ "chalk": "^5.3.0",
37
+ "commander": "^12.1.0",
38
+ "enquirer": "^2.4.1",
39
+ "express": "^4.21.0",
40
+ "open": "^10.1.0",
41
+ "ora": "^8.1.1",
42
+ "proper-lockfile": "^4.1.2",
43
+ "slugify": "^1.6.6",
44
+ "ws": "^8.18.0",
45
+ "zod": "^3.23.8"
46
+ },
47
+ "devDependencies": {
48
+ "@changesets/cli": "^2.31.0",
49
+ "@playwright/mcp": "0.0.75",
50
+ "@playwright/test": "^1.49.0",
51
+ "@types/express": "^5.0.0",
52
+ "@types/node": "^22.5.5",
53
+ "@types/proper-lockfile": "^4.1.4",
54
+ "@types/ws": "^8.5.12",
55
+ "tsup": "^8.3.0",
56
+ "tsx": "^4.19.1",
57
+ "typescript": "^5.6.2",
58
+ "vitest": "^2.1.1"
59
+ },
60
+ "keywords": [
61
+ "claude",
62
+ "claude-code",
63
+ "claude-sub-agents",
64
+ "advisory-board",
65
+ "multi-agent",
66
+ "agents",
67
+ "skills",
68
+ "cli",
69
+ "decision-making",
70
+ "kanban"
71
+ ],
72
+ "license": "Apache-2.0",
73
+ "author": "Julian Bent Singh <dinegenboss@gmail.com> (https://github.com/jbsingh93)",
74
+ "repository": {
75
+ "type": "git",
76
+ "url": "git+https://github.com/jbsingh93/ai-advisory-board-cli.git"
77
+ },
78
+ "homepage": "https://github.com/jbsingh93/ai-advisory-board-cli#readme",
79
+ "bugs": {
80
+ "url": "https://github.com/jbsingh93/ai-advisory-board-cli/issues"
81
+ },
82
+ "funding": "https://github.com/sponsors/jbsingh93",
83
+ "publishConfig": {
84
+ "access": "public",
85
+ "provenance": true
86
+ }
87
+ }