@contractspec/example.team-hub
v3.7.17
Published
Team Hub example with spaces, tasks, rituals, and announcements
Downloads
6,451
Readme
@contractspec/example.team-hub
Website: https://contractspec.io
Team Hub example with spaces, tasks, rituals, and announcements.
What This Demonstrates
- Multi-entity team collaboration domain (space, task, ritual, announcement).
- Per-entity schema and operations pattern.
- Capability and feature definition patterns.
- Presentation layer with team-hub presentation.
src/docs/contains docblocks and documentation-facing exports.src/handlers/contains handlers or demo adapters wired to contract surfaces.
Running Locally
From packages/examples/team-hub:
bun run devbun run buildbun run typecheck
Usage
Use @contractspec/example.team-hub as a reference implementation, or import its exported surfaces into a workspace that composes ContractSpec examples and bundles.
Architecture
src/announcementis part of the package's public or composition surface.src/docs/contains docblocks and documentation-facing exports.src/entities/contains domain entities and value objects.src/events.tsis package-level event definitions.src/example.tsis the runnable example entrypoint.src/handlers/contains handlers or demo adapters wired to contract surfaces.src/index.tsis the root public barrel and package entrypoint.
Public Entry Points
- Export
.resolves through./src/index.ts. - Export
./announcementresolves through./src/announcement/index.ts. - Export
./announcement/announcement.operationsresolves through./src/announcement/announcement.operations.ts. - Export
./announcement/announcement.schemaresolves through./src/announcement/announcement.schema.ts. - Export
./docsresolves through./src/docs/index.ts. - Export
./docs/team-hub.docblockresolves through./src/docs/team-hub.docblock.ts. - Export
./entitiesresolves through./src/entities/index.ts. - Export
./eventsresolves through./src/events.ts. - Export
./exampleresolves through./src/example.ts. - Export
./handlersresolves through./src/handlers/index.ts. - The package publishes 23 total export subpaths; keep docs aligned with
package.json.
Local Commands
bun run dev— contractspec-bun-build devbun run build— bun run prebuild && bun run build:bundle && bun run build:typesbun run lint— bun lint:fixbun run lint:check— biome check .bun run lint:fix— biome check --write --unsafe --only=nursery/useSortedClasses . && biome check --write .bun run typecheck— tsc --noEmitbun run publish:pkg— bun publish --tolerate-republish --ignore-scripts --verbosebun run publish:pkg:canary— bun publish:pkg --tag canarybun run clean— rimraf dist .turbobun run build:bundle— contractspec-bun-build transpilebun run build:types— contractspec-bun-build typesbun run prebuild— contractspec-bun-build prebuild
Recent Updates
- Replace eslint+prettier by biomejs to optimize speed.
- Missing contract layers.
Notes
- Works alongside
@contractspec/lib.contracts-spec,@contractspec/lib.schema,@contractspec/tool.bun,@contractspec/tool.typescript.
