@codedir/mimir-code 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +661 -0
- package/README.md +47 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +7105 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.d.ts +754 -0
- package/dist/index.js +1656 -0
- package/dist/index.js.map +1 -0
- package/package.json +110 -0
- package/scripts/templates/commands/docs.yml +53 -0
- package/scripts/templates/commands/perf.yml +56 -0
- package/scripts/templates/commands/refactor.yml +52 -0
- package/scripts/templates/commands/review.yml +62 -0
- package/scripts/templates/commands/security.yml +51 -0
- package/scripts/templates/commands/test.yml +50 -0
- package/src/cli/themes/dark-colorblind.json +20 -0
- package/src/cli/themes/dark.json +20 -0
- package/src/cli/themes/light-colorblind.json +20 -0
- package/src/cli/themes/light.json +20 -0
- package/src/cli/themes/mimir.json +20 -0
package/README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Mimir Code
|
|
2
|
+
|
|
3
|
+
Platform-agnostic AI coding agent CLI. Supports 7+ LLM providers (DeepSeek, Anthropic, OpenAI, Google/Gemini, Qwen, Ollama) with permission-based security.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Clone and install
|
|
9
|
+
git clone https://github.com/codedir-labs/@codedir/mimir-code.git
|
|
10
|
+
cd mimir
|
|
11
|
+
yarn install
|
|
12
|
+
|
|
13
|
+
# Run setup wizard
|
|
14
|
+
yarn mimir setup
|
|
15
|
+
|
|
16
|
+
# Start chatting
|
|
17
|
+
yarn mimir
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Manual Testing
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
# Development
|
|
24
|
+
yarn dev
|
|
25
|
+
|
|
26
|
+
# Tests
|
|
27
|
+
yarn test
|
|
28
|
+
yarn test:unit
|
|
29
|
+
yarn test:integration
|
|
30
|
+
|
|
31
|
+
# Build
|
|
32
|
+
yarn build
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Commands
|
|
36
|
+
|
|
37
|
+
- `mimir` - Interactive chat
|
|
38
|
+
- `mimir setup` - Configuration wizard
|
|
39
|
+
- `mimir init` - Initialize project
|
|
40
|
+
- `mimir history list` - View conversations
|
|
41
|
+
- `mimir cost today` - Cost analytics
|
|
42
|
+
- `mimir permissions list` - Manage allowlist
|
|
43
|
+
- `mimir doctor` - Run diagnostics
|
|
44
|
+
|
|
45
|
+
## Development
|
|
46
|
+
|
|
47
|
+
See [CLAUDE.md](CLAUDE.md) for architecture details and development guidelines.
|
package/dist/cli.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|