@contractspec/lib.support-bot
v4.0.4
Published
AI support bot framework with RAG and ticket management
Downloads
3,689
Maintainers
Readme
@contractspec/lib.support-bot
Website: https://contractspec.io
AI support bot framework with RAG and ticket management.
What It Provides
- Layer: lib.
- Consumers: bundles.
- Related ContractSpec packages include
@contractspec/lib.contracts-integrations,@contractspec/lib.contracts-spec,@contractspec/lib.knowledge,@contractspec/lib.schema,@contractspec/tool.bun, ...
Installation
npm install @contractspec/lib.support-bot
or
bun add @contractspec/lib.support-bot
Usage
Import the root entrypoint from @contractspec/lib.support-bot, or choose a documented subpath when you only need one part of the package surface.
Architecture
src/botis part of the package's public or composition surface.src/i18nis part of the package's public or composition surface.src/index.tsis the root public barrel and package entrypoint.src/ragis part of the package's public or composition surface.src/spec.tsis part of the package's public or composition surface.src/ticketsis part of the package's public or composition surface.src/types.tsis shared public type definitions.
Public Entry Points
- Export
.resolves through./src/index.ts. - Export
./botresolves through./src/bot/index.ts. - Export
./bot/auto-responderresolves through./src/bot/auto-responder.ts. - Export
./bot/feedback-loopresolves through./src/bot/feedback-loop.ts. - Export
./bot/toolsresolves through./src/bot/tools.ts. - Export
./i18nresolves through./src/i18n/index.ts. - Export
./i18n/catalogsresolves through./src/i18n/catalogs/index.ts. - Export
./i18n/catalogs/enresolves through./src/i18n/catalogs/en.ts. - Export
./i18n/catalogs/esresolves through./src/i18n/catalogs/es.ts. - Export
./i18n/catalogs/frresolves through./src/i18n/catalogs/fr.ts. - The package publishes 19 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 test— bun test --pass-with-no-testsbun 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.
- Resolve lint/test regressions after voice capability updates.
- Add full i18n support across all 10 packages (en/fr/es, 460 keys).
Notes
- Bot spec interface follows ai-agent patterns — keep aligned with contracts-spec.
- Ticket schema is shared — changes affect consumers downstream.
- RAG pipeline must stay compatible with the knowledge lib.
