/** * SMRT Configuration * * This file configures the SMRT framework for your project. * See: https://github.com/happyvertical/smrt */ export default { // Agent/developer knowledge artifacts are generated by smrtPlugin(). // HTTP API routes stay off unless explicitly enabled for a dev/admin-only workflow. knowledge: { enabled: true, api: { enabled: false, basePath: '/__smrt/knowledge', requireAdmin: true, includeDocs: false, includePrompts: false, }, }, // Package-specific configuration packages: { // CLI configuration cli: { database: { type: 'sqlite', url: process.env.DATABASE_URL || './app.db', }, verbose: false, }, }, };