@codedir/mimir-code 0.1.0 → 0.1.2

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