feat: public API — createObserver() factory + selective exports#8
Merged
Conversation
src/index.ts — selective exports, public surface area only:
Types: SignalType, RawSignal, AnonymizedSignal, ActiveSession,
CompletedSession, FeatureVector, ObserverStatus,
ObserverState, ICollector, WrkmarkObserverError
Classes: AuditLog, SignalAnonymizer, SignalExtractor,
SessionManager, VSCodeCollector
Functions: createDatabase, createObserver
Constants: VERSION = '0.1.0'
createObserver(dbPath): wires all dependencies in one call.
Internal types (AuditEntry, DB row types, schema SQL) not exported.
README: Quick Start + Individual Imports usage examples
Tests: 10 integration tests including full lifecycle smoke test
(start session → record signals → end session → verify audit chain)
Root: 69/69 passing | Extension: 17/17 passing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this adds
src/index.ts— public entry point for @wrkmark/observertests/index.test.ts— 10 integration testsREADME.md— Quick Start + Individual Imports sectionsPublic API surface
createObserver() — fully wired observer in one call
createDatabase() — for custom wiring
SessionManager, VSCodeCollector, AuditLog,
SignalAnonymizer, SignalExtractor, WrkmarkObserverError
VERSION = '0.1.0'
Intentionally NOT exported
Internal DB row types, audit entry types, schema SQL —
implementation details that may change without semver bump.
Tests
69/69 root passing | 17/17 extension passing
Full lifecycle smoke test: session → signals → features → audit chain