@gencode/web 0.6.9 → 0.7.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @gencode/web
2
2
 
3
+ ## 0.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 82f4ca0: 支持通过 `aimax run --team <name>`(或 server `run.team`)使用 Agent 团队:团队的可选 `mainAgent` 负责协调,未配置时使用默认 Agent;团队 `members` 会按名称和描述注入协调 Agent 的系统提示词,并限制 SubAgent 调用范围;可通过 `--system-agent-teams-dir` 或 `AIMAX_SYSTEM_AGENT_TEAMS_DIR` 指定系统团队配置目录。
8
+
9
+ ### Patch Changes
10
+
11
+ - 08214df: Bun compiled executables that host Pi extensions now load Jiti via the static entry so Babel transform assets are included in the standalone snapshot; Node.js CLI paths keep the regular Jiti entry. Fixes external extensions (including transform-heavy plugins such as pi-lens) failing with a missing `babel.cjs` module under `/$bunfs/root/`.
12
+ - 12db0bf: Builtin memory now writes canonical Markdown through a shared document store with cross-process locking, so concurrent agents no longer silently drop recent notes. Appends, recent logs, updates, structured merges, and deletes refresh only their affected SQLite projection files; search stays available from canonical Markdown if refresh fails. External file watches use affected refresh when the file is known and retain full-sync compatibility for directory or unknown events.
13
+
14
+ Builtin memory projection now persists deterministic memory, session, recipe, target, and projected revisions in a versioned meta envelope. Freshness is true only when the persisted target revision equals the projected revision—not dirty flags or chunk counts. Concurrent sync, rebuild, affected, session, and recovery work share a single-flight scheduler so one manager never runs overlapping applies. Failed or partial applies keep the previous projected revision, surface error diagnostics, and recover on a later sync while search can fall back to canonical Markdown. Enabling or disabling session sources, changing the session store identity, or changing embedding recipe settings (provider/model key, chunk size/overlap, vector settings) invalidates the projection until a full-compatible sync repairs it; ranking-only overrides such as max results do not force a rebuild.
15
+
16
+ - 221dd2f: Builtin memory search now honors per-call `MemorySearchOptions.limit` and `sources` on all four paths (fresh SQLite, stale filesystem fallback, runtime corruption fallback, and construction-unavailable filesystem provider). Omitted `limit` uses the configured `maxResults` (construction-unavailable uses the builtin default of 6 instead of a hidden 20). `limit: 0` or `sources: []` returns an empty list without scanning; invalid limits or source tokens throw `RangeError`; positive limits are floored and clamped to 100. Requested sources only narrow the configured source set and never enable session projection or rewrite manager config. Filesystem fallback can discover session transcripts when sessions are in the resolved source set, while ranking and locators remain in the shared filesystem search. Plugin providers still receive options unchanged; the `memory_search` tool schema remains query-only.
17
+ - 766962b: Structured `MEMORY.md` search, update, and forget now share the same `path#heading` locator.
18
+
19
+ Fresh SQLite projection and filesystem fallback both return that locator for structured hits, so tools no longer depend on guessing a heading from the snippet. Reordering sections or changing only metadata keeps the locator stable when the path and heading are unchanged; renaming a heading or file yields a new locator. Daily and session notes continue to use line-based ids.
20
+
21
+ - Updated dependencies [82f4ca0]
22
+ - Updated dependencies [08214df]
23
+ - Updated dependencies [12db0bf]
24
+ - Updated dependencies [221dd2f]
25
+ - Updated dependencies [766962b]
26
+ - @gencode/console@0.7.0
27
+
3
28
  ## 0.6.9
4
29
 
5
30
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gencode/web",
3
- "version": "0.6.9",
3
+ "version": "0.7.0",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -13,7 +13,7 @@
13
13
  "CHANGELOG.md"
14
14
  ],
15
15
  "dependencies": {
16
- "@gencode/console": "0.6.9",
16
+ "@gencode/console": "0.7.0",
17
17
  "@gencode/shared": "0.7.0"
18
18
  },
19
19
  "devDependencies": {},