ai-advisory-board 0.2.0 → 0.4.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 +26 -0
- package/dist/bin/aab.js +916 -558
- package/dist/bin/aab.js.map +1 -1
- package/gui/app.js +113 -22
- package/gui/style.css +54 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# CHANGELOG — AI Advisory Board CLI
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 81661f9: Action items now capture the discussion context they were born from. When you add an action step to the board (UI, the extract route, or `aab actions add --discussion`), the server snapshots a `sourceContext` onto the item: the original board question, the suggesting member's name + title/expertise, their actual reasoning behind the step, their related key points, and the round number. Previously an action carried only its one-line title plus "Suggested by <member>".
|
|
8
|
+
|
|
9
|
+
The Skill Planner now receives this as a dedicated, self-describing `<source_context>` prompt block (authoritative statement of intent — it designs the skill for what the advisor _meant_, not just the literal title), and the skill-creator brief carries it through as `action.sourceContext`. In the web UI, action cards show a "↩ From discussion" link and the edit modal gains a read-only **Source** section (question, member, reasoning, key points) that deep-links back to the originating discussion.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- ad82fa0: fix(ui): live discussion view no longer shows false "No response" after a streaming glitch. When a live `member_response` event failed to match its typing bubble, the view left a perpetual-"No response" orphan in place and appended a misplaced duplicate of the real answer further down. `finalizeChat` now rebuilds the chat stream from the authoritative discussion record the server sends with `discussion_completed` / `discussion_gated`, so the live view matches exactly what a page reload renders.
|
|
14
|
+
|
|
15
|
+
## 0.3.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- db32add: Board members now actually use the Knowledge Wiki, and ingest captures user facts:
|
|
20
|
+
|
|
21
|
+
- **Members read the wiki before answering.** Previously members were told to read `wiki/`, but that path doesn't resolve from their working directory (the wiki lives under the workspace root, not the project dir), so they silently fell back to web search. Member calls now receive the wiki's absolute path in their task, are granted access to it via `--add-dir`, and are instructed to consult it first and only use web search to fill genuine gaps. Their answers are now grounded in the user's own data instead of being generic.
|
|
22
|
+
- **Inline business context is no longer suppressed** when a wiki is present, so members always have baseline grounding even if their wiki pass is thin.
|
|
23
|
+
- **Ingest prioritizes durable facts about the user and their business** (goals, needs, ideas, decisions, constraints) and dedupes against existing pages instead of capturing only advisor opinion. Discussion transcripts now surface the user's own words (question, follow-ups, HITL replies) in a dedicated section so those facts get mined.
|
|
24
|
+
|
|
25
|
+
After updating, run `aab members sync-agents` to regenerate existing members' agent files with the improved wiki instructions.
|
|
26
|
+
|
|
27
|
+
- 9b35377: Add an "update available" notifier. The CLI now shows a one-line notice when a newer version is published to npm (`↑ Update available 0.2.0 → 0.3.0 run: npm i -g ai-advisory-board@latest`), and `aab doctor` reports a "CLI version" check. The version is cached in `~/.aabcli/.update-check.json` and refreshed in the background at most once per 24h, so it never blocks or slows a command. Suppressed for non-interactive/`--json`/CI usage; opt out with `AAB_NO_UPDATE_NOTIFIER=1` (or `NO_UPDATE_NOTIFIER=1`).
|
|
28
|
+
|
|
3
29
|
## 0.2.0
|
|
4
30
|
|
|
5
31
|
### Minor Changes
|