clebby-code 1.0.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.
- package/README.md +24 -0
- package/dist/index.js +1185 -0
- package/package.json +48 -0
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Clebby Code
|
|
2
|
+
|
|
3
|
+
An autonomous terminal developer agent and workspace companion.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
- **Agent Mode**: Fully autonomous workspace tasks execution.
|
|
7
|
+
- **Plan Mode**: Multi-step structured builder and planner.
|
|
8
|
+
- **Ask Mode**: Interactive read-only codebase Q&A.
|
|
9
|
+
- **Doctor Mode**: Local setup diagnostics for scripts, runtime, model key, MCP, and git state.
|
|
10
|
+
- **Slash Commands**: Target specific workspace files or directories directly from prompt inputs (e.g. `/src/index.ts explain this code`).
|
|
11
|
+
- **Cool TUI Theme**: Sleek, emoji-free, professional terminal layout inspired by modern developer CLI tools.
|
|
12
|
+
|
|
13
|
+
## Commands
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
bun run start
|
|
17
|
+
bun run doctor
|
|
18
|
+
bun run check
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Inside the shell, use `/doctor` to debug local setup before running longer agent work.
|
|
22
|
+
|
|
23
|
+
## Developer
|
|
24
|
+
Developed by **dev Apurv Sheldiya**
|