@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/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