mini-coder 0.2.2 → 0.3.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 +5 -3
- package/dist/mc.js +666 -438
- package/docs/design-decisions.md +31 -0
- package/docs/mini-coder.1.md +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
|
|
11
11
|
A terminal coding agent for developers who want a sharp tool, not a bloated IDE plugin. Shell-first, multi-provider, minimal tool surface. Just you, your terminal, and an AI that keeps up.
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
<p align="center">
|
|
14
|
+
<img src="./assets/preview.gif" alt="Minicoder Preview"/>
|
|
15
|
+
</p>
|
|
14
16
|
|
|
15
17
|
---
|
|
16
18
|
|
|
@@ -44,13 +46,13 @@ Useful flags: `-c` continue last session, `-r <id>` resume, `-l` list sessions,
|
|
|
44
46
|
|
|
45
47
|
## 🔑 OAuth Login
|
|
46
48
|
|
|
47
|
-
Use `/login` inside the REPL to authenticate via browser-based OAuth (
|
|
49
|
+
Use `/login` inside the REPL to authenticate via browser-based OAuth. Supported providers: `anthropic` and `openai` (`/login openai` uses the Codex / ChatGPT Plus/Pro flow). No need to manage API keys manually.
|
|
48
50
|
|
|
49
51
|
---
|
|
50
52
|
|
|
51
53
|
## 🛠️ Features
|
|
52
54
|
|
|
53
|
-
- **Multi-provider** —
|
|
55
|
+
- **Multi-provider** — supports Anthropic and OpenAI (direct + OAuth), plus Gemini and Ollama
|
|
54
56
|
- **Session memory** — SQLite-backed. Resume with `-c` or `-r <id>`
|
|
55
57
|
- **Shell integration** — `!` prefix for inline commands, `@` to reference files with tab completion
|
|
56
58
|
- **Web search** — `webSearch` + `webContent` tools when `EXA_API_KEY` is set
|