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.
- package/CHANGELOG.md +490 -0
- package/LICENSE +201 -0
- package/NOTICE +10 -0
- package/README.md +297 -0
- package/dist/bin/aab.js +16843 -0
- package/dist/bin/aab.js.map +1 -0
- package/gui/app.js +4555 -0
- package/gui/index.html +275 -0
- package/gui/style.css +2312 -0
- package/gui/wikilinks.js +0 -0
- package/package.json +87 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for describing the origin of the Work and
|
|
141
|
+
reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2026 Julian Bent Singh
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/NOTICE
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
ai-advisory-board
|
|
2
|
+
Copyright 2026 Julian Bent Singh
|
|
3
|
+
|
|
4
|
+
This product includes software developed by Julian Bent Singh
|
|
5
|
+
(https://www.linkedin.com/in/julianbentsingh/).
|
|
6
|
+
|
|
7
|
+
This project is independent and is not affiliated with, sponsored by,
|
|
8
|
+
or endorsed by Anthropic PBC. "Claude" and "Claude Code" are trademarks
|
|
9
|
+
of Anthropic PBC and are used here only descriptively to identify the
|
|
10
|
+
external tool that this project integrates with.
|
package/README.md
ADDED
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
# AI Advisory Board CLI
|
|
2
|
+
|
|
3
|
+
Convene a panel of Claude sub-agents on any business question — from your terminal or a local web dashboard. Each board member runs as a real Claude Code sub-agent with its own persona, voice, expertise, and a strict structured-output contract. The orchestrator decides when the discussion should continue, conclude, redirect, or ask **you** a clarifying question.
|
|
4
|
+
|
|
5
|
+
**No API key. No cloud. No extra cost.** The CLI shells out to your local `claude` binary, so it uses the Claude Max/Pro subscription you already have.
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g ai-advisory-board
|
|
9
|
+
cd path/to/your/project
|
|
10
|
+
aab init
|
|
11
|
+
aab discuss start "Should we charge usage-based or per-seat for our new B2B tool?"
|
|
12
|
+
# or:
|
|
13
|
+
aab ui # opens a messaging-app dashboard at localhost:3737
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## What you get
|
|
19
|
+
|
|
20
|
+
- **3 starter board members** seeded into your workspace — Elon Musk (visionary engineer), Julian Bent Singh (AI strategist), Alexandra Chen, CFA (capital allocator). Each one is a real Claude Code sub-agent at `.claude/agents/<slug>.md` you can also invoke directly inside a Claude Code session.
|
|
21
|
+
- **8 starter principles** (Ray Dalio inspired) for principle-based decision making.
|
|
22
|
+
- **Multi-member discussions** where members read each other's responses and build / challenge / extend them in character.
|
|
23
|
+
- **Strict JSON contract** per response — every member returns `response`, `keyPoints[]`, `questionsForOthers[]`, `actionSteps[]`, `confidence`, and optionally `assumptions`, `tradeoffs`, `riskMitigations`, `firstPrinciplesApplied`, `sources[]`.
|
|
24
|
+
- **Orchestrator HITL** — when the board needs more info from you to continue, the orchestrator surfaces a numbered-options question.
|
|
25
|
+
- **Web dashboard** — `aab ui` starts a localhost messaging-app UI with live typing-dot animations while members are responding, structured response cards, kanban view for action items, read-only browser of members / principles / settings.
|
|
26
|
+
- **Token-usage logging** — every `claude` call logs prompt / completion / cache tokens to `<workspace>/token-usage/<date>.jsonl`.
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
## Requirements
|
|
31
|
+
|
|
32
|
+
- **Node 20+**
|
|
33
|
+
- **Claude Code CLI** on PATH — install once: `npm install -g @anthropic-ai/claude-code`
|
|
34
|
+
- A **Claude Max / Pro subscription** (or `ANTHROPIC_API_KEY` if you don't have a subscription — Claude Code handles the auth)
|
|
35
|
+
|
|
36
|
+
That's it. No `.env` file, no separate setup.
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## Install
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
npm install -g ai-advisory-board
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Or, to install from a local checkout:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
git clone https://github.com/jbsingh93/ai-advisory-board-cli
|
|
50
|
+
cd ai-advisory-board-cli
|
|
51
|
+
npm install
|
|
52
|
+
npm run build
|
|
53
|
+
npm link # exposes `aab` globally
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Verify:
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
aab --version
|
|
60
|
+
aab doctor # 9-check diagnostic
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## First run
|
|
66
|
+
|
|
67
|
+
```bash
|
|
68
|
+
mkdir my-board && cd my-board
|
|
69
|
+
aab init
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
`aab init` will:
|
|
73
|
+
|
|
74
|
+
1. Detect Claude Code on PATH.
|
|
75
|
+
2. Ask whether the workspace should live at `~/.aabcli/<slug>/` (shared across projects) or `./.aabcli/` (project-mounted, travels with the repo).
|
|
76
|
+
3. Seed 3 starter members + 8 starter principles into the workspace.
|
|
77
|
+
4. Write `.claude/agents/<member-slug>.md` for each member with spec-compliant frontmatter (`name`, `description`, `tools: WebSearch, WebFetch, Read, Grep, Glob`, `model: inherit`, `permissionMode: default`, `maxTurns: 5`, `color`).
|
|
78
|
+
|
|
79
|
+
After init you can immediately use the members both ways:
|
|
80
|
+
|
|
81
|
+
- From `aab` (terminal or web UI) — they participate in advisory-board discussions.
|
|
82
|
+
- From inside Claude Code — say "use the elon-musk subagent and ask him whether we should pivot" and Claude Code will route to the agent file.
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
## Two ways to use it
|
|
87
|
+
|
|
88
|
+
### Terminal
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
aab discuss start "Should the team work on docs or onboarding flow this week?"
|
|
92
|
+
aab discuss list
|
|
93
|
+
aab discuss show <short-id> # pretty-print a saved discussion
|
|
94
|
+
aab discuss show <short-id> --round 1 # one round only
|
|
95
|
+
aab discuss show <short-id> --json # machine-readable (good for piping)
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
You'll see each member responding in real-time with structured output:
|
|
99
|
+
|
|
100
|
+
```
|
|
101
|
+
▸ Round 1
|
|
102
|
+
|
|
103
|
+
● Elon Musk · turn 1
|
|
104
|
+
[response paragraphs]
|
|
105
|
+
|
|
106
|
+
key points:
|
|
107
|
+
• [3-5 insights]
|
|
108
|
+
questions for others:
|
|
109
|
+
? [strategic challenges]
|
|
110
|
+
action steps:
|
|
111
|
+
→ [concrete recommendations]
|
|
112
|
+
confidence: 88%
|
|
113
|
+
|
|
114
|
+
● Julian Bent Singh · turn 2
|
|
115
|
+
[building on Elon's points...]
|
|
116
|
+
|
|
117
|
+
orchestrator → continue (confidence 75%)
|
|
118
|
+
reason: [orchestrator's reasoning]
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
If the orchestrator decides the board needs more info from you, it surfaces a `request_user_input` panel with numbered options. Reply with:
|
|
122
|
+
|
|
123
|
+
```bash
|
|
124
|
+
aab discuss respond <id> "Your answer here" --option 1 # --option is optional
|
|
125
|
+
aab discuss continue <id> # drive the next round when no input is pending
|
|
126
|
+
aab discuss follow-up <id> "But what about X?" # ask everyone a sharper question
|
|
127
|
+
aab discuss follow-up <id> "..." --member "Elon Musk" # or push back on one specific member
|
|
128
|
+
aab discuss follow-up <id> "..." --members "Elon,Alexandra Chen" # or a subset
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
The pre-round clarification gate runs the orchestrator *before* spawning members for round 2+, so if the board still needs input from you, no tokens are wasted on a round that would just ask the same question again. `follow-up` is strict: if any targeted member fails, the round aborts cleanly so you don't end up with a partial answer.
|
|
132
|
+
|
|
133
|
+
### Web dashboard
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
aab ui
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
Opens `http://127.0.0.1:3737` in your browser. The UI is messaging-app style:
|
|
140
|
+
|
|
141
|
+
- **Sidebar:** Discussions / Action Board / Members / Principles / Settings
|
|
142
|
+
- **Discussions tab:** click `+ New discussion`, type a question, toggle which members participate, click Start
|
|
143
|
+
- While Claude responds you see **animated typing-dot bubbles** per member
|
|
144
|
+
- When responses land, the typing bubble morphs into the full structured message with key-points / questions / action-steps / confidence-bar
|
|
145
|
+
- **Orchestrator decisions** appear as system messages
|
|
146
|
+
- **HITL prompts** show as a yellow `⚠ The board is asking you a question` panel with the options
|
|
147
|
+
|
|
148
|
+
Other tabs are read-only for now:
|
|
149
|
+
|
|
150
|
+
- **Action Board** — kanban view of action items (manual add / extract / solve coming with later phases)
|
|
151
|
+
- **Members** — persona browser
|
|
152
|
+
- **Principles** — card view of starter + custom principles
|
|
153
|
+
- **Settings** — read-only table of config (use `aab settings set <key> <value>` to edit)
|
|
154
|
+
|
|
155
|
+
### Run options
|
|
156
|
+
|
|
157
|
+
```bash
|
|
158
|
+
aab discuss start "..." --members "Elon Musk,Alexandra Chen, CFA" # subset
|
|
159
|
+
aab discuss start "..." --max-turns 5 # override
|
|
160
|
+
aab ui --port 4000 # custom port
|
|
161
|
+
aab ui --no-open # don't auto-launch browser
|
|
162
|
+
aab --debug discuss start "..." # verbose logs
|
|
163
|
+
aab --json discuss list # JSON output
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
---
|
|
167
|
+
|
|
168
|
+
## Available commands
|
|
169
|
+
|
|
170
|
+
```
|
|
171
|
+
aab init Bootstrap workspace + seed starters + write .claude/agents/
|
|
172
|
+
aab doctor 9-check diagnostic
|
|
173
|
+
aab settings get [key] View settings (JSON or table)
|
|
174
|
+
aab settings set <key> <value> Update one setting (with type coercion + validation)
|
|
175
|
+
|
|
176
|
+
aab workspace list List workspaces under ~/.aabcli/
|
|
177
|
+
aab workspace new <id> Create + switch
|
|
178
|
+
aab workspace switch <id> Set active pointer
|
|
179
|
+
aab workspace delete <id> [--yes] Move to ~/.aabcli/.trash/
|
|
180
|
+
|
|
181
|
+
aab discuss start "<question>" Round 1 — multi-member, structured JSON, orchestrator HITL
|
|
182
|
+
[--members "name1,name2"] Subset by member name
|
|
183
|
+
[--max-turns N] Override settings.maxTurnsPerDiscussion
|
|
184
|
+
[--agents-dir <path>] Where .claude/agents/ lives (default: cwd)
|
|
185
|
+
aab discuss continue <id> Drive the next round (orchestrator-gated)
|
|
186
|
+
aab discuss respond <id> "<answer>" Answer the orchestrator's pending question
|
|
187
|
+
[--option <i>] Pick a 1-based option from the listed choices
|
|
188
|
+
aab discuss follow-up <id> "<q>" Ask a targeted follow-up question
|
|
189
|
+
[--all] Default — every original member responds
|
|
190
|
+
[--member <name>] Just one member (name, slug, or id)
|
|
191
|
+
[--members <names>] Comma-separated subset
|
|
192
|
+
aab discuss list List saved discussions
|
|
193
|
+
aab discuss show <id> [--round N] Pretty-print
|
|
194
|
+
aab discuss delete <id>
|
|
195
|
+
|
|
196
|
+
aab ui [--port 3737] [--bind 127.0.0.1] [--no-open]
|
|
197
|
+
Start the local web dashboard
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
Everything supports `--workspace <id>`, `--json`, `--debug`, `--log-level <lvl>`, `--quiet`.
|
|
201
|
+
|
|
202
|
+
---
|
|
203
|
+
|
|
204
|
+
## Where data lives
|
|
205
|
+
|
|
206
|
+
```
|
|
207
|
+
~/.aabcli/<workspace-id>/ home-scoped workspace (default)
|
|
208
|
+
./.aabcli/ project-scoped workspace (travels with repo)
|
|
209
|
+
|
|
210
|
+
settings.json AppSettings
|
|
211
|
+
members.json AdvisoryBoardMember[]
|
|
212
|
+
principles.json Principle[]
|
|
213
|
+
business-context.json BusinessContext[]
|
|
214
|
+
business-profile.json BusinessProfile
|
|
215
|
+
action-items.json ActionItem[]
|
|
216
|
+
prompts.json user prompt overrides
|
|
217
|
+
discussions/<discussion-id>.json one file per discussion
|
|
218
|
+
decision-sessions/<id>.json decision-coach sessions
|
|
219
|
+
sparring/<discussion-id>/<session-id>.json 1:1 deep dives
|
|
220
|
+
skill-runs/<action-item-id>/<run-id>.json skill-generation runs
|
|
221
|
+
token-usage/YYYY-MM-DD.jsonl per-day token + cost log
|
|
222
|
+
jobs/<job-id>.json in-progress runs
|
|
223
|
+
.snapshots/ rolling backups (last 20 per entity)
|
|
224
|
+
.lock per-workspace mutex
|
|
225
|
+
.version storage schema version
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
Atomic writes (`.tmp` + rename), per-workspace lock (proper-lockfile), automatic snapshots before settings/members/principles overwrite.
|
|
229
|
+
|
|
230
|
+
---
|
|
231
|
+
|
|
232
|
+
## How members work
|
|
233
|
+
|
|
234
|
+
Each board member is realized two ways simultaneously:
|
|
235
|
+
|
|
236
|
+
1. **A row in `members.json`** with `id, name, title, expertise[], persona, voiceGuide?, allowedTools?, isActive`.
|
|
237
|
+
2. **A file at `.claude/agents/<slug>.md`** with spec-compliant frontmatter and the persona pre-filled into the body.
|
|
238
|
+
|
|
239
|
+
When `aab discuss start` runs, the CLI spawns one `claude --agent <slug> -p "<round payload>"` per member, with `--output-format json --dangerously-skip-permissions --allowedTools "WebSearch,WebFetch,Read,Grep,Glob" --model <alias>`. Each member responds in their own isolated Claude Code session, returns a JSON envelope, and we parse out the structured response.
|
|
240
|
+
|
|
241
|
+
The agent files default to **read/web only tools**, so even with `--dangerously-skip-permissions` a member literally cannot `Edit`, `Write`, or `Bash` — it can only read your repo, search the web, and reason. That's why the dangerous flag is safe in this context.
|
|
242
|
+
|
|
243
|
+
The same agent files work natively from inside Claude Code itself — say "use the elon-musk subagent" and Claude Code routes to it.
|
|
244
|
+
|
|
245
|
+
---
|
|
246
|
+
|
|
247
|
+
## Status
|
|
248
|
+
|
|
249
|
+
This is a partial, in-progress implementation. The full design is in `docs/development/PLAN.md` (1700+ lines, six parts including two extreme-review addenda). Live progress against deliverables is tracked in `docs/development/CHECKLIST.md`.
|
|
250
|
+
|
|
251
|
+
**Working today:**
|
|
252
|
+
|
|
253
|
+
- ✅ `aab init`, `doctor`, `settings`, `workspace`
|
|
254
|
+
- ✅ `aab discuss start | continue | respond | follow-up | list | show | delete` — multi-round discussions with structured JSON, orchestrator HITL, pre-round clarification gate, token-usage logging
|
|
255
|
+
- ✅ `aab ui` web dashboard with messaging-app chat view, typing-dot animations, **Continue + Follow up buttons + inline HITL reply form** so the whole multi-round flow works in the browser, read-only browsers for Members / Actions / Principles / Settings
|
|
256
|
+
- ✅ Filesystem storage with atomic writes, snapshots, per-workspace locks
|
|
257
|
+
- ✅ `--dangerously-skip-permissions` so it works from any shell, not just inside a Claude Code session
|
|
258
|
+
|
|
259
|
+
**Coming next:**
|
|
260
|
+
|
|
261
|
+
- 🟡 Summary (`summarize`), markdown export (`export`), archive (`archive`/`unarchive`), 1:1 sparring (`spar`)
|
|
262
|
+
- ⬜ Members CRUD (`add` / `edit` / `enhance` / `sync-agents`)
|
|
263
|
+
- ⬜ Principles wizard + Decision Coach REPL
|
|
264
|
+
- ⬜ Action Board Kanban (full CRUD + extract from discussion)
|
|
265
|
+
- ⬜ Skill creator — turn one action point into an installed Claude Code skill (the headline feature)
|
|
266
|
+
- ⬜ UI editing flows (members / actions / principles / settings)
|
|
267
|
+
- ⬜ Token-usage / cost dashboard
|
|
268
|
+
|
|
269
|
+
---
|
|
270
|
+
|
|
271
|
+
## Troubleshooting
|
|
272
|
+
|
|
273
|
+
**`aab` not found after `npm install -g`** → restart your terminal so PATH refreshes.
|
|
274
|
+
|
|
275
|
+
**`aab init` says "claude CLI not found"** → run `claude --version`. If that fails, install Claude Code: `npm install -g @anthropic-ai/claude-code`.
|
|
276
|
+
|
|
277
|
+
**Discussion hangs at "asking <Member> (1/3)..."** → make sure you're on the latest build. The CLI now passes `--dangerously-skip-permissions` so cold shells don't block on trust prompts. Run with `aab --debug discuss start ...` to see the exact spawn args + stderr.
|
|
278
|
+
|
|
279
|
+
**One member fails / partial round** → other members keep going; only an all-failure aborts. Re-run with `--debug` to see what went wrong.
|
|
280
|
+
|
|
281
|
+
**JSON parse fallback warnings** → harmless. The CLI's tolerant parser tries 5 strategies (raw, fenced, balanced-brace, regex object, regex array) before giving up; the warning means it had to fall back to raw text and continued.
|
|
282
|
+
|
|
283
|
+
**Want to nuke everything and start over** → `rm -rf ~/.aabcli/<workspace-id>/` (or `./.aabcli/` for project-scoped). Re-run `aab init`.
|
|
284
|
+
|
|
285
|
+
---
|
|
286
|
+
|
|
287
|
+
## Architecture
|
|
288
|
+
|
|
289
|
+
The CLI is structured around a single `StorageService` interface (filesystem-backed) and a `ClaudeCodeRunner` that shells out to `claude`. Discussions flow through `ConversationFlowManager` → `runMember` (one spawn per member) → `analyzeConversation` (one orchestrator spawn) → persistence. The web UI (`src/gui/server.ts`) is an Express + WebSocket server that calls the same engine and broadcasts progress events to a vanilla-JS frontend in `gui/`.
|
|
290
|
+
|
|
291
|
+
See `docs/development/PLAN.md` for the full architecture, the multi-phase build plan, and the 27-zod-schema contract surface that every LLM call validates against.
|
|
292
|
+
|
|
293
|
+
---
|
|
294
|
+
|
|
295
|
+
## License
|
|
296
|
+
|
|
297
|
+
MIT
|