Quick Start
This guide creates and runs a minimal CoreMind project. CoreMind currently requires Node.js 22.19 or later. Python embedding requires Python 3.10 or later.
1. Choose your language
When creating a project, choose TypeScript, JavaScript, or Python. TypeScript is recommended for first-time users because configuration and SDK calls receive the strongest editor feedback.
2. Install and create a project
coremind-cli@0.3.0 is published on npm and can be installed directly as the stable release.
npm install coremind-ai@0.3.0 coremind-cli@0.3.0
npx coremind-cli@0.3.0 providers
npx coremind-cli@0.3.0 create my-agent --provider alibaba-model-studio
cd my-agentSelect a template, language, provider, and permission mode when prompted. Non-interactive scripts must provide --provider. The generated project contains configuration, environment examples, tests, and local operating instructions.
3. Configure credentials
Copy .env.example to .env and add only the credential required by your selected provider. Never commit .env.
DASHSCOPE_API_KEY=replace_meProvider support does not imply live certification. Check the provider matrix before production evaluation.
4. Validate before running
npx coremind doctor
npx coremind check
npx coremind run coremind.yaml --dry-rundoctor checks the environment, check validates the project contract, and --dry-run resolves configuration without sending a model request.
5. Run interactively
npx coremind chat coremind.yamlStart with the ask permission mode. Review every requested operation until you understand the tool and data boundaries.
Next steps
- Learn the configuration model.
- Add reusable instructions through Skills.
- Define quality gates.
- Explore the complete CLI reference.