@contractspec/example.workflow-system
v3.8.25
Published
Workflow and approval system example for ContractSpec - State machine with role-based transitions
Readme
@contractspec/example.workflow-system
Website: https://contractspec.io
Workflow and approval system example for ContractSpec - State machine with role-based transitions.
What This Demonstrates
- State machine pattern for workflow transitions.
- Approval flow with role-based access.
- Multi-entity domain (workflow, instance, approval).
- Per-entity schema/enum/event/handler/operations pattern.
- React UI with WorkflowDashboard, hooks, and renderers.
- Contract-backed visualizations for workflow status, throughput, and workload comparison.
- Capability and feature definition patterns.
- Seeder and test-spec patterns.
Running Locally
From packages/examples/workflow-system:
bun run devbun run buildbun run testbun run typecheck
Usage
Use @contractspec/example.workflow-system as a reference implementation, or import its exported surfaces into a workspace that composes ContractSpec examples and bundles.
Architecture
src/approvalis 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/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.src/instanceis part of the package's public or composition surface.
Public Entry Points
- Export
.resolves through./src/index.ts. - Export
./approvalresolves through./src/approval/index.ts. - Export
./approval/approval.enumresolves through./src/approval/approval.enum.ts. - Export
./approval/approval.eventresolves through./src/approval/approval.event.ts. - Export
./approval/approval.handlerresolves through./src/approval/approval.handler.ts. - Export
./approval/approval.operationsresolves through./src/approval/approval.operations.ts. - Export
./approval/approval.schemaresolves through./src/approval/approval.schema.ts. - Export
./docsresolves through./src/docs/index.ts. - Export
./docs/workflow-system.docblockresolves through./src/docs/workflow-system.docblock.ts. - Export
./entitiesresolves through./src/entities/index.ts. - The package publishes 44 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 prebuildbun run test— bun test
Recent Updates
- Replace eslint+prettier by biomejs to optimize speed.
- Missing contract layers.
Notes
- Works alongside
@contractspec/lib.contracts-spec,@contractspec/lib.design-system,@contractspec/lib.example-shared-ui,@contractspec/lib.runtime-sandbox,@contractspec/lib.schema, ...
