@hermenics/deepseek-code 0.4.3 → 0.4.4
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 +6 -0
- package/dist/cli.mjs +455 -415
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,6 +33,8 @@
|
|
|
33
33
|
- **Unified agents** — scoped primary agents and sub-agents with editable base prompts
|
|
34
34
|
- **Settings center** — fullscreen, searchable User/Project/Local configuration with visible origins
|
|
35
35
|
- **MCP support** — connect to any Model Context Protocol server for extended tooling
|
|
36
|
+
- **Project guidance** — loads a root `AGENTS.md` alongside `DEEPSEEK.md`
|
|
37
|
+
- **Optional LSP navigation** — user-configured language servers expose definitions, references, hover, and symbols to the agent
|
|
36
38
|
- **Extensible** — slash commands, custom tools, memory, sessions, themes
|
|
37
39
|
|
|
38
40
|
## Quick start
|
|
@@ -89,6 +91,10 @@ Each provider also exposes provider-specific models (Bedrock, Vertex, local).
|
|
|
89
91
|
| `/vim` | Toggle vim keybindings |
|
|
90
92
|
| `/theme` | Change color theme |
|
|
91
93
|
| `/tools` | List available tools |
|
|
94
|
+
| `/doctor` | Check runtime, workspace, credentials, settings, and MCP configuration |
|
|
95
|
+
| `/verify` | Run the detected project test command |
|
|
96
|
+
| `/sessions export <id> [json\|md]` | Export a sanitized session transcript |
|
|
97
|
+
| `/catalog`, `/marketplace` | Browse curated MCP, plugin, and skill integrations |
|
|
92
98
|
| `/permissions` | Explain mode, allow/deny rules, risk checks, and session approvals |
|
|
93
99
|
| `/config`, `/settings` | Open the fullscreen settings center |
|
|
94
100
|
| `/help` | Show all commands |
|