19 tasks covering core testing, Redis hardening, WebSocket client/server adapters, Worker adapter, and final review gates. Iroh adapters are tracked as a deferred placeholder blocked on the @alkdev/iroh fork. Phases: core validation → Redis hardening → review gate → WebSocket adapters → review gate → Worker adapter → review gate → final validation.
1.9 KiB
1.9 KiB
id: final-review-and-ci-validation
name: Final review: full test suite, build, and CI readiness
status: pending
depends_on: [review-worker-adapter, integration-test-ws-client-server]
scope: moderate
risk: low
impact: project
level: review
Description
Final review before considering the package ready for use (excluding Iroh, which is deferred). Verify:
- Full test suite passes (core + operators + Redis + WS client + WS server + Worker + integration)
- Build produces correct dual ESM/CJS output with declarations for all entry points
- Type-check passes for all source files
- Package.json exports map covers all adapters
- Each adapter has its own sub-path export configured correctly
- Barrel re-export in
src/index.tsincludes everything - No test regressions
- No extraneous files in npm package (check
npm packoutput)
Acceptance Criteria
npm run buildpasses cleanlynpm run lintpasses (tsc --noEmit)npm testpasses with full test suitenpm run test:coveragereports reasonable coverage (core > 80%)- All sub-path exports resolve correctly
- Package can be consumed as
import { createPubSub } from '@alkdev/pubsub' - Package can be consumed as
import { createRedisEventTarget } from '@alkdev/pubsub/event-target-redis' - Package can be consumed as
import { createWebSocketClientEventTarget } from '@alkdev/pubsub/event-target-websocket-client' - Package can be consumed as
import { createWebSocketServerEventTarget } from '@alkdev/pubsub/event-target-websocket-server' - Package can be consumed as
import { createWorkerHostEventTarget } from '@alkdev/pubsub/event-target-worker' - No runtime dependencies (Repeater is inlined)
- Peer deps are optional and correct
References
- docs/architecture/build-distribution.md
- All architecture docs
Notes
To be filled by implementation agent
Summary
To be filled on completion