didev 1.0.0 → 1.0.1
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 +21 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,21 +34,39 @@ didev is a CLI tool that brings an entire team of specialized AI agents to your
|
|
|
34
34
|
## Installation
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
|
-
npm install -g didev
|
|
37
|
+
npm install -g didev
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
+
Requirements: **Node.js 18+**
|
|
41
|
+
|
|
40
42
|
---
|
|
41
43
|
|
|
42
44
|
## Quick Start
|
|
43
45
|
|
|
44
46
|
```bash
|
|
47
|
+
# 1. Install globally
|
|
48
|
+
npm install -g didev
|
|
49
|
+
|
|
50
|
+
# 2. Go to your project
|
|
45
51
|
cd my-project
|
|
52
|
+
|
|
53
|
+
# 3. Initialize didev
|
|
46
54
|
didev init
|
|
47
|
-
|
|
48
|
-
|
|
55
|
+
|
|
56
|
+
# 4. Set your DeepSeek API key
|
|
57
|
+
didev config set DEEPSEEK_API_KEY=sk-xxxxxxxxxxxxxxxx
|
|
58
|
+
|
|
59
|
+
# 5. Start chatting with your codebase
|
|
49
60
|
didev chat
|
|
61
|
+
|
|
62
|
+
# Or run the full AI agent pipeline on a task
|
|
63
|
+
didev agent "Add JWT authentication to Express API"
|
|
50
64
|
```
|
|
51
65
|
|
|
66
|
+
Get a DeepSeek API key at **[platform.deepseek.com](https://platform.deepseek.com)** → API Keys.
|
|
67
|
+
|
|
68
|
+
> Running `didev` with no arguments opens interactive chat immediately.
|
|
69
|
+
|
|
52
70
|
---
|
|
53
71
|
|
|
54
72
|
## Commands
|