mirror of
https://github.com/Mail-0/Zero.git
synced 2026-07-01 08:16:28 +00:00
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.
13 lines
270 B
TypeScript
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)
|