Skip to content

Commit bc11c5e

Browse files
author
Miya
committed
docs: record post publish npm smoke test blocker
1 parent a18248f commit bc11c5e

1 file changed

Lines changed: 23 additions & 3 deletions

File tree

docs/current-state.md

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
Date: 2026-04-13
44

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+
57
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.
68

79
---
@@ -47,17 +49,24 @@ Run: `npx vitest run`
4749

4850
## Known Blockers
4951

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
5160
- **Impact:** `@agent-assistant/connectivity` tests cannot run; `@agent-assistant/coordination` tests also blocked as a result.
5261
- **Resolution:** Run `npm install` from repo root. Then verify: `cd packages/connectivity && npx vitest run`.
5362
- **Risk:** Do not consume connectivity or coordination in products until tests pass.
5463

55-
### 2. `@agent-assistant/routing` DoD gap
64+
### 3. `@agent-assistant/routing` DoD gap
5665
- **Impact:** 12 tests pass but the target is 40+. The routing implementation is incomplete relative to spec.
5766
- **Resolution:** Implementation work required to bring routing tests to DoD target.
5867
- **Risk:** Do not wire routing into product integration until resolved.
5968

60-
### 3. `@agent-relay/memory` missing
69+
### 4. `@agent-relay/memory` missing
6170
- **Impact:** `@agent-assistant/memory` package and tests cannot run.
6271
- **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.
6372
- **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:
7685

7786
---
7887

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 |
93+
| `@agent-assistant/connectivity` | blocked test verification + publish boundary cleanup | unblock/install tests, verify export/dependency hygiene |
94+
| `@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 |
96+
97+
---
98+
7999
## Workflow Completion
80100

81101
| Workflow | Status |

0 commit comments

Comments
 (0)