DOCUMENTATION_INDEX

> Quick start guides / API reference / Integration tutorials

QUICK_START

01_INSTALLATION

# Install via npm
$ npm install -g @devmind/cli
[SUCCESS] DevMind CLI v2.4.1 installed

02_AUTHENTICATION

# Login with API key
$ devmind auth login
Enter API key: ████████████████
[SUCCESS] Authenticated as user@example.com

03_FIRST_COMPLETION

# Generate code from prompt
$ devmind generate "create express api endpoint"
[ANALYZE] Reading project context...
[GENERATE] Creating routes/api.js
✓ Generated 47 lines in 1.2s

CLI_REFERENCE

devmind generate [prompt]

Generate code from natural language description

Options:
--lang [typescript|python|rust] Language preference
--output [path] Output file path
--verbose Show detailed logs
devmind review [files]

AI code review and suggestions

Options:
--fix Auto-fix issues
--strict Strict mode (fail on warnings)
devmind test-gen [files]

Generate unit tests automatically

Options:
--framework [jest|mocha|vitest] Test framework
--coverage Target coverage percentage

API_REFERENCE

AUTHENTICATION

All API requests require bearer token authentication.

Authorization: Bearer YOUR_API_KEY

ENDPOINTS

POST /v1/completions

Generate code completions

{
  "prompt": "create authentication middleware",
  "context": { "framework": "express" },
  "language": "typescript"
}
POST /v1/review

AI code review

{
  "code": "function example() {...}",
  "strict": true
}

INTEGRATIONS_GUIDE

VS_CODE

Install from marketplace

ext install devmind.vscode

JETBRAINS

Plugin for all IDEs

Settings → Plugins → DevMind

VIM_/_NEOVIM

LSP integration

:LspInstall devmind

GITHUB_ACTIONS

CI/CD workflow

uses: devmind/review@v1

TROUBLESHOOTING_GUIDE

[ERROR] Authentication failed

Verify API key is valid. Check ~/.devmind/config.json

[ERROR] Context limit exceeded

Reduce codebase size with .devmindignore file

[WARN] Slow completions

Check network latency. Consider local model deployment.