{{ theme.skipToContentLabel || 'Skip to content' }}

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.

bash
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-agent

Select 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.

dotenv
DASHSCOPE_API_KEY=replace_me

Provider support does not imply live certification. Check the provider matrix before production evaluation.

4. Validate before running

bash
npx coremind doctor
npx coremind check
npx coremind run coremind.yaml --dry-run

doctor checks the environment, check validates the project contract, and --dry-run resolves configuration without sending a model request.

5. Run interactively

bash
npx coremind chat coremind.yaml

Start with the ask permission mode. Review every requested operation until you understand the tool and data boundaries.

Next steps

{{ theme.lastUpdated?.text || theme.lastUpdatedText || 'Last updated' }}:

Released under the MIT License.