@codedir/mimir-code 0.1.0 → 0.1.1
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/README.md +53 -47
- package/dist/binaries/resources/sql-wasm.wasm +0 -0
- package/dist/{cli.js → cli.mjs} +424 -1407
- package/dist/cli.mjs.map +1 -0
- package/dist/index.d.ts +19 -19
- package/dist/index.js +6 -10
- package/dist/index.js.map +1 -1
- package/package.json +23 -11
- package/scripts/templates/commands/{docs.yml → update-docs.yml} +5 -5
- package/dist/cli.d.ts +0 -1
- package/dist/cli.js.map +0 -1
- package/scripts/templates/commands/perf.yml +0 -56
- package/scripts/templates/commands/refactor.yml +0 -52
- package/scripts/templates/commands/review.yml +0 -62
- package/scripts/templates/commands/security.yml +0 -51
- package/scripts/templates/commands/test.yml +0 -50
package/README.md
CHANGED
|
@@ -1,47 +1,53 @@
|
|
|
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
|
-
##
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
##
|
|
46
|
-
|
|
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
|
+
## Development Setup
|
|
21
|
+
|
|
22
|
+
After cloning the repository, configure Git to use LF line endings:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
git config core.autocrlf false
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
This ensures consistent line endings across platforms (required for Prettier formatting checks).
|
|
29
|
+
|
|
30
|
+
## Manual Testing
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
# Development
|
|
34
|
+
yarn dev
|
|
35
|
+
|
|
36
|
+
# Tests
|
|
37
|
+
yarn test
|
|
38
|
+
yarn test:unit
|
|
39
|
+
yarn test:integration
|
|
40
|
+
|
|
41
|
+
# Build
|
|
42
|
+
yarn build
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Commands
|
|
46
|
+
|
|
47
|
+
- `mimir` - Interactive chat
|
|
48
|
+
- `mimir setup` - Configuration wizard
|
|
49
|
+
- `mimir init` - Initialize project
|
|
50
|
+
- `mimir history list` - View conversations
|
|
51
|
+
- `mimir cost today` - Cost analytics
|
|
52
|
+
- `mimir permissions list` - Manage allowlist
|
|
53
|
+
- `mimir doctor` - Run diagnostics
|
|
Binary file
|