ai-advisory-board 0.1.1 → 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 +24 -0
- package/dist/bin/aab.js +791 -560
- package/dist/bin/aab.js.map +1 -1
- package/gui/app.js +226 -27
- package/gui/style.css +81 -2
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
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
|
+
|
|
17
|
+
## 0.2.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- cc1521a: Knowledge & discussion UI improvements:
|
|
22
|
+
|
|
23
|
+
- **Multi-source ingest** — the web UI Ingest panel now accepts multiple URLs (one per line) plus native file and folder pickers alongside pasted text. Picked files upload their content to the local server (browsers never expose absolute paths), are filtered to ingestible text/doc types with a 20 MB cap, and are ingested sequentially with per-item progress. New `ingestFileBuffer()` core function and a `file: { name, contentBase64 }` variant on `POST /api/knowledge/ingest`.
|
|
24
|
+
- **Markdown rendering in board-member answers** — member responses now render markdown (bold, headings, lists, inline code, code fences, blockquotes, and `[[wikilinks]]`) instead of showing raw markers.
|
|
25
|
+
- **Add action steps to the Action Board from a discussion** — each suggested action step now has a "+ Add" button that creates a linked action item (attributed to the advising member) without leaving the discussion view.
|
|
26
|
+
|
|
3
27
|
## 0.1.1
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|