dimcode 0.0.15-beta.5 → 0.0.15-beta.6
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 +59 -27
- package/dist/cli.mjs +746 -732
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -90,32 +90,53 @@ Press `Ctrl+P` to open the command palette, which provides quick access to:
|
|
|
90
90
|
|
|
91
91
|
Type slash commands directly in the input field:
|
|
92
92
|
|
|
93
|
-
| Command
|
|
94
|
-
|
|
|
95
|
-
| `/settings`
|
|
96
|
-
| `/config`
|
|
97
|
-
| `/approvals`
|
|
98
|
-
| `/approval`
|
|
99
|
-
| `/connect`
|
|
100
|
-
| `/models`
|
|
101
|
-
| `/sessions`
|
|
102
|
-
| `/new`
|
|
103
|
-
| `/redo`
|
|
104
|
-
| `/rename <title>`
|
|
105
|
-
| `/timeline`
|
|
106
|
-
| `/tl`
|
|
107
|
-
| `/review`
|
|
108
|
-
| `/debug`
|
|
93
|
+
| Command | Description |
|
|
94
|
+
| -------------------- | ---------------------------------------------- |
|
|
95
|
+
| `/settings` | Open settings dialog (custom providers) |
|
|
96
|
+
| `/config` | Alternative for `/settings` |
|
|
97
|
+
| `/approvals` | Manage tool approvals (auto/all) |
|
|
98
|
+
| `/approval` | Alternative for `/approvals` |
|
|
99
|
+
| `/connect` | Connect a provider |
|
|
100
|
+
| `/models` | Select a model |
|
|
101
|
+
| `/sessions` | List all sessions |
|
|
102
|
+
| `/new` | Create a new session |
|
|
103
|
+
| `/redo` | Redo last interaction |
|
|
104
|
+
| `/rename <title>` | Rename current session |
|
|
105
|
+
| `/timeline` | Jump to a user message |
|
|
106
|
+
| `/tl` | Alternative for `/timeline` |
|
|
107
|
+
| `/review` | Review code changes |
|
|
108
|
+
| `/debug` | Open debug dialog (node mode only) |
|
|
109
|
+
| `/compact` | Compact session context |
|
|
110
|
+
| `/init` | Initialize/improve AGENTS.md |
|
|
111
|
+
| `/exit` | Exit the application |
|
|
112
|
+
| `/longrunning` | Toggle long-running mode |
|
|
113
|
+
| `/tool-settings` | Configure tool-specific settings |
|
|
114
|
+
| `/toolsettings` | Alternative for `/tool-settings` |
|
|
115
|
+
| `/mcp` | Open MCP settings |
|
|
116
|
+
| `/mcphub` | Alternative for `/mcp` |
|
|
117
|
+
| `/mcp-settings` | Alternative for `/mcp` |
|
|
118
|
+
| `/codexlogin` | Login with Codex OAuth |
|
|
119
|
+
| `/codex-login` | Alternative for `/codexlogin` |
|
|
120
|
+
| `/language` | Switch UI language |
|
|
121
|
+
| `/lang` | Alternative for `/language` |
|
|
122
|
+
| `/locale` | Alternative for `/language` |
|
|
123
|
+
| `/theme` | Toggle light/dark theme |
|
|
109
124
|
|
|
110
125
|
### Keyboard Shortcuts
|
|
111
126
|
|
|
112
|
-
| Shortcut | Action
|
|
113
|
-
| ------------- |
|
|
114
|
-
| `Ctrl+P` | Open command palette
|
|
115
|
-
| `
|
|
116
|
-
| `Ctrl+
|
|
117
|
-
| `
|
|
118
|
-
| `
|
|
127
|
+
| Shortcut | Action |
|
|
128
|
+
| ------------- | ------------------------------------------- |
|
|
129
|
+
| `Ctrl+P` | Open command palette |
|
|
130
|
+
| `F1` | Open help dialog |
|
|
131
|
+
| `Ctrl+O` | Expand/collapse all tool calls & thinking |
|
|
132
|
+
| `Ctrl+K` | Open settings (custom providers) |
|
|
133
|
+
| `Ctrl+C` | Clear input (if non-empty); otherwise exit |
|
|
134
|
+
| `Ctrl+W` | Clear input (alternative) |
|
|
135
|
+
| `Enter` | Send message |
|
|
136
|
+
| `Shift+Enter` | New line in input |
|
|
137
|
+
| `Ctrl+J` | New line in input (alternative) |
|
|
138
|
+
| `Tab` | Switch mode (Agent/Plan/Debug) |
|
|
139
|
+
| `Esc` | Cancel/close dialog or interrupt response |
|
|
119
140
|
|
|
120
141
|
### Input Tips
|
|
121
142
|
|
|
@@ -139,8 +160,16 @@ DIMCODE_MODEL=deepseek-v3.1 # Default model
|
|
|
139
160
|
|
|
140
161
|
# Serper API for web search (optional)
|
|
141
162
|
SERPER_API_KEY=your_serper_key_here
|
|
163
|
+
|
|
164
|
+
# Custom home directory (optional)
|
|
165
|
+
DIMCODE_HOME=~/.dimcode
|
|
166
|
+
|
|
167
|
+
# Debug mode (optional)
|
|
168
|
+
DIMCODE_DEBUG=1
|
|
142
169
|
```
|
|
143
170
|
|
|
171
|
+
**Note**: For backward compatibility, `GOATCHAIN_` prefix is also supported (e.g., `GOATCHAIN_MODEL`, `GOATCHAIN_DEBUG`).
|
|
172
|
+
|
|
144
173
|
### First-time Setup
|
|
145
174
|
|
|
146
175
|
On first launch, Dimcode will guide you through:
|
|
@@ -165,8 +194,6 @@ Dimcode comes with powerful built-in tools:
|
|
|
165
194
|
|
|
166
195
|
- **Grep** - Search content using patterns
|
|
167
196
|
- **Glob** - Find files by pattern
|
|
168
|
-
- **AstGrepSearch** - AST-based code search
|
|
169
|
-
- **AstGrepReplace** - AST-based code refactoring
|
|
170
197
|
|
|
171
198
|
### Web & Research
|
|
172
199
|
|
|
@@ -176,14 +203,19 @@ Dimcode comes with powerful built-in tools:
|
|
|
176
203
|
### Task Management
|
|
177
204
|
|
|
178
205
|
- **TodoWrite** - Create and manage TODO lists
|
|
179
|
-
- **Task** - Execute complex multi-step tasks
|
|
180
|
-
- **Skill** - Store and reuse common workflows
|
|
181
206
|
|
|
182
207
|
### System
|
|
183
208
|
|
|
184
209
|
- **Bash** - Execute shell commands (requires approval)
|
|
185
210
|
- **AskUser** - Request input from user
|
|
186
211
|
|
|
212
|
+
### Skills
|
|
213
|
+
|
|
214
|
+
Skills are specialized capabilities that can be activated to extend DimCode's functionality. Built-in skills include:
|
|
215
|
+
|
|
216
|
+
- **skill-installer** - Install Codex skills from curated list or GitHub repos
|
|
217
|
+
- **skill-creator** - Guide for creating effective skills
|
|
218
|
+
|
|
187
219
|
## 📚 Examples
|
|
188
220
|
|
|
189
221
|
### Basic Coding Assistant
|