dimcode 0.0.5-beta.21 → 0.0.5-beta.22
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 +27 -24
- package/dist/cli.mjs +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
> A powerful AI agent CLI with an interactive terminal UI (TUI)
|
|
4
4
|
|
|
5
5
|
[](https://badge.fury.io/js/dimcode)
|
|
6
|
-
[](https://opensource.org/licenses/MIT)
|
|
7
6
|
|
|
8
7
|
Dimcode is a command-line interface for AI-powered coding assistance, featuring:
|
|
9
8
|
|
|
@@ -69,31 +68,31 @@ Press `Ctrl+P` to open the command palette, which provides quick access to:
|
|
|
69
68
|
|
|
70
69
|
Type slash commands directly in the input field:
|
|
71
70
|
|
|
72
|
-
| Command
|
|
73
|
-
|
|
74
|
-
| `/settings`
|
|
75
|
-
| `/config`
|
|
76
|
-
| `/approvals`
|
|
77
|
-
| `/approval`
|
|
78
|
-
| `/connect`
|
|
79
|
-
| `/models`
|
|
80
|
-
| `/sessions`
|
|
81
|
-
| `/new`
|
|
82
|
-
| `/redo`
|
|
83
|
-
| `/rename <title>` | Rename current session
|
|
84
|
-
| `/timeline`
|
|
85
|
-
| `/tl`
|
|
86
|
-
| `/review`
|
|
87
|
-
| `/debug`
|
|
71
|
+
| Command | Description |
|
|
72
|
+
| ----------------- | --------------------------------------- |
|
|
73
|
+
| `/settings` | Open settings dialog (custom providers) |
|
|
74
|
+
| `/config` | Alternative for `/settings` |
|
|
75
|
+
| `/approvals` | Manage tool approvals (auto/all) |
|
|
76
|
+
| `/approval` | Alternative for `/approvals` |
|
|
77
|
+
| `/connect` | Connect a provider |
|
|
78
|
+
| `/models` | Select a model |
|
|
79
|
+
| `/sessions` | List all sessions |
|
|
80
|
+
| `/new` | Create a new session |
|
|
81
|
+
| `/redo` | Redo last interaction |
|
|
82
|
+
| `/rename <title>` | Rename current session |
|
|
83
|
+
| `/timeline` | Jump to a user message |
|
|
84
|
+
| `/tl` | Alternative for `/timeline` |
|
|
85
|
+
| `/review` | Review code changes |
|
|
86
|
+
| `/debug` | Open debug dialog (node mode only) |
|
|
88
87
|
|
|
89
88
|
### Keyboard Shortcuts
|
|
90
89
|
|
|
91
|
-
| Shortcut
|
|
92
|
-
|
|
93
|
-
| `Ctrl+P`
|
|
94
|
-
| `Ctrl+C`
|
|
95
|
-
| `Enter`
|
|
96
|
-
| `Shift+Enter` | New line in input
|
|
90
|
+
| Shortcut | Action |
|
|
91
|
+
| ------------- | -------------------- |
|
|
92
|
+
| `Ctrl+P` | Open command palette |
|
|
93
|
+
| `Ctrl+C` | Exit the application |
|
|
94
|
+
| `Enter` | Send message |
|
|
95
|
+
| `Shift+Enter` | New line in input |
|
|
97
96
|
|
|
98
97
|
## ⚙️ Configuration
|
|
99
98
|
|
|
@@ -126,26 +125,31 @@ Settings are stored in `~/.dimcode/dimcode/` directory by default (can be custom
|
|
|
126
125
|
Dimcode comes with powerful built-in tools:
|
|
127
126
|
|
|
128
127
|
### File Operations
|
|
128
|
+
|
|
129
129
|
- **Read** - Read file contents
|
|
130
130
|
- **Write** - Create or overwrite files
|
|
131
131
|
- **Edit** - Make precise edits to existing files
|
|
132
132
|
|
|
133
133
|
### Code Analysis
|
|
134
|
+
|
|
134
135
|
- **Grep** - Search content using patterns
|
|
135
136
|
- **Glob** - Find files by pattern
|
|
136
137
|
- **AstGrepSearch** - AST-based code search
|
|
137
138
|
- **AstGrepReplace** - AST-based code refactoring
|
|
138
139
|
|
|
139
140
|
### Web & Research
|
|
141
|
+
|
|
140
142
|
- **WebSearch** - Search the web using Serper API
|
|
141
143
|
- **WebFetch** - Fetch web page content
|
|
142
144
|
|
|
143
145
|
### Task Management
|
|
146
|
+
|
|
144
147
|
- **TodoWrite** - Create and manage TODO lists
|
|
145
148
|
- **Task** - Execute complex multi-step tasks
|
|
146
149
|
- **Skill** - Store and reuse common workflows
|
|
147
150
|
|
|
148
151
|
### System
|
|
152
|
+
|
|
149
153
|
- **Bash** - Execute shell commands (requires approval)
|
|
150
154
|
- **AskUser** - Request input from user
|
|
151
155
|
|
|
@@ -176,4 +180,3 @@ dim
|
|
|
176
180
|
|
|
177
181
|
- **Tool Approvals**: By default, sensitive operations (file writes, shell commands) require user approval
|
|
178
182
|
- **Local Storage**: All session data is stored locally in `~/.dimcode/dimcode/` (customizable via `DIMCODE_HOME`)
|
|
179
|
-
|