@mimicai/cli
v0.7.0
Published
CLI for Mimic — generate, seed, serve, and test synthetic data for AI agents
Maintainers
Readme
@mimicai/cli
CLI for Mimic — generate, seed, serve, and test synthetic data for AI agents.
Install
npm install -g @mimicai/cliCommands
mimic init Create a new mimic.json project config
mimic run Generate blueprints and expand persona data
mimic seed Seed databases from persona blueprint
mimic host Start mock API + MCP servers
mimic test Run test scenarios against your agent
mimic inspect View schema, data, or blueprint information
mimic clean Remove all seeded data
mimic adapters Manage API mock adapters (add, remove, list)Quick start
mimic init
mimic run
mimic seed
mimic hostConfiguration
The CLI reads mimic.json from the current working directory. Run mimic init to generate one interactively.
{
"domain": "fintech agent testing",
"personas": [{ "name": "finance-alex", "blueprint": "young-professional" }],
"databases": [{ "adapter": "postgres", "connectionString": "postgresql://localhost:5432/testdb" }],
"apis": [{ "adapter": "stripe" }, { "adapter": "plaid" }]
}Requirements
- Node.js >= 22
