ai-advisory-board 0.2.0 → 0.3.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 +14 -0
- package/dist/bin/aab.js +752 -553
- package/dist/bin/aab.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# CHANGELOG — AI Advisory Board CLI
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- db32add: Board members now actually use the Knowledge Wiki, and ingest captures user facts:
|
|
8
|
+
|
|
9
|
+
- **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.
|
|
10
|
+
- **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.
|
|
11
|
+
- **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.
|
|
12
|
+
|
|
13
|
+
After updating, run `aab members sync-agents` to regenerate existing members' agent files with the improved wiki instructions.
|
|
14
|
+
|
|
15
|
+
- 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`).
|
|
16
|
+
|
|
3
17
|
## 0.2.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|