Files
Zero/apps/mail/scripts/run.ts
Dak Washbrook b745822a61 Add writing style matrix processing and AI email body updates
Introduced writing style matrix extraction and persistence during email actions to enhance personalized email composition. Key updates include style matrix generation, storage, updates, and integration with AI-generated email bodies for improved adaptability.
2025-04-26 20:54:23 -07:00

13 lines
270 B
TypeScript

import { subcommands, run } from 'cmd-ts'
import { seedStyleCommand } from '@zero/mail/scripts/seed-style/seeder';
const app = subcommands({
name: 'scripts',
cmds: {
'seed-style': seedStyleCommand,
},
})
await run(app, process.argv.slice(2))
process.exit(0)