You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/current-state.md
+23-3Lines changed: 23 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,8 @@
2
2
3
3
Date: 2026-04-13
4
4
5
+
> Public release note: the repo is now public and wave-1 packages have been published to npm. A post-publish external smoke test found that the published baseline packages are missing `dist/` artifacts in the installed tarballs for at least `@agent-assistant/core`, so the npm install story is not yet healthy despite successful local `npm pack --dry-run` verification.
6
+
5
7
Authoritative snapshot of package implementation status, test results, and known blockers. Derived from `npx vitest run` output and code inspection. This document is a status record, not a design doc — see `docs/index.md` for navigation and `docs/specs/` for canonical contracts.
6
8
7
9
---
@@ -47,17 +49,24 @@ Run: `npx vitest run`
47
49
48
50
## Known Blockers
49
51
50
-
### 1. `@agent-assistant/connectivity` workspace not installed
52
+
### 1. Published npm packages missing runtime build artifacts
53
+
-**Impact:** A clean npm-only install of `@agent-assistant/sdk@0.1.0` currently fails at runtime because installed dependency packages such as `@agent-assistant/core` do not contain `dist/index.js` even though their manifests export it.
54
+
-**Evidence:** external smoke test in `/tmp/agent-assistant-smoke` failed with `ERR_MODULE_NOT_FOUND` for `node_modules/@agent-assistant/core/dist/index.js`; installed package contents contained only `README.md` and `package.json`.
55
+
-**Likely cause:** packages were published from repo state where `dist/` was not actually present in the published tarball, despite later local `npm pack --dry-run` checks passing.
56
+
-**Resolution:** inspect the published npm tarballs, republish/fix the affected wave-1 packages, then rerun the npm-only smoke test.
57
+
-**Risk:** treat the current npm release as needing immediate remediation before external adoption.
58
+
59
+
### 2. `@agent-assistant/connectivity` workspace not installed
51
60
-**Impact:**`@agent-assistant/connectivity` tests cannot run; `@agent-assistant/coordination` tests also blocked as a result.
52
61
-**Resolution:** Run `npm install` from repo root. Then verify: `cd packages/connectivity && npx vitest run`.
53
62
-**Risk:** Do not consume connectivity or coordination in products until tests pass.
54
63
55
-
### 2. `@agent-assistant/routing` DoD gap
64
+
### 3. `@agent-assistant/routing` DoD gap
56
65
-**Impact:** 12 tests pass but the target is 40+. The routing implementation is incomplete relative to spec.
57
66
-**Resolution:** Implementation work required to bring routing tests to DoD target.
58
67
-**Risk:** Do not wire routing into product integration until resolved.
59
68
60
-
### 3. `@agent-relay/memory` missing
69
+
### 4. `@agent-relay/memory` missing
61
70
-**Impact:**`@agent-assistant/memory` package and tests cannot run.
62
71
-**Status:** Memory is marked `"private": true` and excluded from the workspace install graph. It will be re-enabled when `@agent-relay/memory` is published publicly.
63
72
-**Note:**`@agent-assistant/memory` is not yet installable. It depends on `@agent-relay/memory` (relay foundation infrastructure) which is not publicly available.
@@ -76,6 +85,17 @@ These packages are stable and can be consumed in products:
76
85
77
86
---
78
87
88
+
## Deferred Publish Tracking (Wave 2+)
89
+
90
+
| Package | Current blocker | Publish gate |
91
+
| --- | --- | --- |
92
+
|`@agent-assistant/routing`| DoD gap: 12 tests vs 40+ target | reach DoD threshold and re-review |
|`@agent-assistant/coordination`| depends on connectivity readiness | connectivity green + dependency cleanup + review |
95
+
|`@agent-assistant/memory`| blocked on `@agent-relay/memory` public installability | publish/install `@agent-relay/memory`, then re-enable and validate |
0 commit comments