mini-coder 0.0.13 → 0.0.14
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/dist/mc.js +1356 -415
- package/docs/custom-commands.md +24 -1
- package/package.json +1 -1
package/docs/custom-commands.md
CHANGED
|
@@ -38,7 +38,9 @@ Then in the REPL:
|
|
|
38
38
|
| Field | Required | Description |
|
|
39
39
|
|---|---|---|
|
|
40
40
|
| `description` | No | Shown in `/help`. Defaults to the command name. |
|
|
41
|
-
| `model` | No | Override the active model for this command. |
|
|
41
|
+
| `model` | No | Override the active model for this command (subagent execution). |
|
|
42
|
+
| `execution` | No | Where the command runs: `subagent` (default) or `inline`. |
|
|
43
|
+
|
|
42
44
|
|
|
43
45
|
## Arguments
|
|
44
46
|
|
|
@@ -118,6 +120,27 @@ List each occurrence with file path and line number. No explanations needed.
|
|
|
118
120
|
|
|
119
121
|
Large models for deep analysis, small models for search and lookup.
|
|
120
122
|
|
|
123
|
+
## Execution mode
|
|
124
|
+
|
|
125
|
+
By default, commands run with `execution: subagent` (even if `execution`
|
|
126
|
+
is omitted).
|
|
127
|
+
|
|
128
|
+
Use `execution: inline` to run the command in the main agent context
|
|
129
|
+
instead of spawning a subagent worktree.
|
|
130
|
+
|
|
131
|
+
```md
|
|
132
|
+
---
|
|
133
|
+
description: Safe release flow
|
|
134
|
+
execution: inline
|
|
135
|
+
---
|
|
136
|
+
|
|
137
|
+
Run the release steps in this main repo checkout.
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
Use `inline` for repo-sensitive workflows (like release flows) where branch
|
|
141
|
+
context must be exactly the current session branch.
|
|
142
|
+
|
|
143
|
+
|
|
121
144
|
## Precedence
|
|
122
145
|
|
|
123
146
|
Custom commands shadow built-ins. If you create `.agents/commands/review.md`
|