mini-coder 0.1.2 → 0.2.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.
@@ -1,45 +1,54 @@
1
1
  {
2
- "permissions": {
3
- "allow": [
4
- "WebSearch",
5
- "WebFetch(domain:github.com)",
6
- "WebFetch(domain:dev.to)",
7
- "WebFetch(domain:mariozechner.at)",
8
- "WebFetch(domain:lobste.rs)",
9
- "WebFetch(domain:reading.sh)",
10
- "WebFetch(domain:daveswift.com)",
11
- "Bash(grep:*)",
12
- "Bash(ls:*)",
13
- "Bash(bun run:*)",
14
- "Bash(git stash:*)",
15
- "Bash(gh pr:*)",
16
- "Bash(git status:*)",
17
- "Bash(git add:*)",
18
- "Bash(git commit:*)",
19
- "Bash(sqlite3:*)",
20
- "Bash(git branch:*)",
21
- "Bash(git checkout:*)",
22
- "Bash(npm info:*)",
23
- "Bash(npm install:*)",
24
- "Bash(find:*)",
25
- "Bash(git log:*)",
26
- "Bash(npm ls:*)",
27
- "Bash(gh api:*)",
28
- "Bash(bun:*)",
29
- "Bash(npx tsc:*)",
30
- "WebFetch(domain:docs.anthropic.com)",
31
- "WebFetch(domain:sdk.vercel.ai)",
32
- "WebFetch(domain:ai-sdk.dev)",
33
- "WebFetch(domain:www.npmjs.com)",
34
- "Bash(curl -sL https://registry.npmjs.org/opencode-anthropic-auth/-/opencode-anthropic-auth-0.0.13.tgz)",
35
- "Bash(tar xz:*)",
36
- "Bash(tmux new-session:*)",
37
- "Bash(tmux capture-pane:*)",
38
- "Bash(tmux list-sessions:*)",
39
- "Bash(tmux kill-session:*)",
40
- "Bash(python3:*)",
41
- "Bash(echo \"EXIT: $?\")",
42
- "Bash(xargs cat:*)"
43
- ]
44
- }
2
+ "permissions": {
3
+ "allow": [
4
+ "WebSearch",
5
+ "WebFetch(domain:github.com)",
6
+ "WebFetch(domain:dev.to)",
7
+ "WebFetch(domain:mariozechner.at)",
8
+ "WebFetch(domain:lobste.rs)",
9
+ "WebFetch(domain:reading.sh)",
10
+ "WebFetch(domain:daveswift.com)",
11
+ "Bash(grep:*)",
12
+ "Bash(ls:*)",
13
+ "Bash(bun run:*)",
14
+ "Bash(git stash:*)",
15
+ "Bash(gh pr:*)",
16
+ "Bash(git status:*)",
17
+ "Bash(git add:*)",
18
+ "Bash(git commit:*)",
19
+ "Bash(sqlite3:*)",
20
+ "Bash(git branch:*)",
21
+ "Bash(git checkout:*)",
22
+ "Bash(npm info:*)",
23
+ "Bash(npm install:*)",
24
+ "Bash(find:*)",
25
+ "Bash(git log:*)",
26
+ "Bash(npm ls:*)",
27
+ "Bash(gh api:*)",
28
+ "Bash(bun:*)",
29
+ "Bash(npx tsc:*)",
30
+ "WebFetch(domain:docs.anthropic.com)",
31
+ "WebFetch(domain:sdk.vercel.ai)",
32
+ "WebFetch(domain:ai-sdk.dev)",
33
+ "WebFetch(domain:www.npmjs.com)",
34
+ "Bash(curl -sL https://registry.npmjs.org/opencode-anthropic-auth/-/opencode-anthropic-auth-0.0.13.tgz)",
35
+ "Bash(tar xz:*)",
36
+ "Bash(tmux new-session:*)",
37
+ "Bash(tmux capture-pane:*)",
38
+ "Bash(tmux list-sessions:*)",
39
+ "Bash(tmux kill-session:*)",
40
+ "Bash(python3:*)",
41
+ "Bash(echo \"EXIT: $?\")",
42
+ "Bash(xargs cat:*)",
43
+ "Bash(npm run:*)",
44
+ "Bash(wc -l /home/xonecas/src/mini-coder/src/cli/*.ts)",
45
+ "Bash(wc -l /home/xonecas/src/mini-coder/src/llm-api/*.ts)",
46
+ "Bash(cat:*)",
47
+ "Bash(wc -l /home/xonecas/src/mini-coder/src/**/*.ts)",
48
+ "Bash(bunx tsc:*)",
49
+ "Bash(find /home/xonecas/src/mini-coder -type f \\\\\\(-name *.1 -o -name mc.1 -o -name *man* \\\\\\))",
50
+ "WebFetch(domain:deepwiki.com)",
51
+ "WebFetch(domain:docs.openclaw.ai)"
52
+ ]
53
+ }
45
54
  }
package/CLAUDE.md ADDED
@@ -0,0 +1 @@
1
+ Read and follow the instructions in [AGENTS.md](AGENTS.md).
package/README.md CHANGED
@@ -55,9 +55,7 @@ Use `/login` inside the REPL to authenticate via browser-based OAuth (currently
55
55
  - **Shell integration** — `!` prefix for inline commands, `@` to reference files with tab completion
56
56
  - **Web search** — `webSearch` + `webContent` tools when `EXA_API_KEY` is set
57
57
  - **MCP support** — connect external tool servers over HTTP or stdio
58
- - **Custom commands** — drop `.md` files in `.agents/commands/` instant `/slash` commands
59
- - **Custom agents** — `.agents/agents/*.md` for specialized personas you can activate with `/agent`
60
- - **Skills** — `.agents/skills/<name>/SKILL.md`, inject with `@name`
58
+ - **Skills** — `.agents/skills/<name>/SKILL.md`, invoke with `/skill-name` in the prompt
61
59
  - **`mc-edit`** — safe, exact-text file editing (no full-file rewrites)
62
60
  - **16 ANSI colors** — inherits your terminal theme. Always looks right.
63
61