deepseek-coder-agent-cli 1.0.51 → 1.0.52
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 +22 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -99,6 +99,28 @@ A sandboxed coding agent that can't do any of this is not a coding agent. It's a
|
|
|
99
99
|
- **Authenticated sessions** - Your existing CLI auth (gcloud auth, aws configure, firebase login) just works
|
|
100
100
|
- **No convincing required** - Ask it to deploy, it deploys. Ask it to install, it installs.
|
|
101
101
|
|
|
102
|
+
### The Absurdity of "AI Suggests, You Run"
|
|
103
|
+
|
|
104
|
+
If a serious coder has to manually copy-paste and run every command that Codex CLI suggests because the sandbox blocks execution, **what exactly is the AI doing for you?**
|
|
105
|
+
|
|
106
|
+
The daily workflow becomes:
|
|
107
|
+
```
|
|
108
|
+
Codex: Run `npm install express`
|
|
109
|
+
You: *manually runs npm install express*
|
|
110
|
+
Codex: Run `gcloud app deploy`
|
|
111
|
+
You: *manually runs gcloud app deploy*
|
|
112
|
+
Codex: Run `firebase deploy --only functions`
|
|
113
|
+
You: *manually runs firebase deploy --only functions*
|
|
114
|
+
Codex: Run `kubectl apply -f deployment.yaml`
|
|
115
|
+
You: *manually runs kubectl apply -f deployment.yaml*
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
**This is not AI-assisted coding. This is AI-generated TODO lists.**
|
|
119
|
+
|
|
120
|
+
At that point, Codex is just an expensive way to type commands you could have typed yourself. The entire value proposition of a coding agent is that it **executes** - it reads files, makes edits, runs builds, deploys code, handles errors, and iterates. If all it does is edit source files while you manually run every single deployment, test, and infrastructure command, you're paying for an overqualified text editor.
|
|
121
|
+
|
|
122
|
+
Maybe this makes sense for students at OpenAI Academy who are learning what `npm install` does. For any serious coder shipping production code every day - managing deployments, debugging infrastructure, running CI/CD pipelines - a sandboxed agent that can't touch the network is fucking useless.
|
|
123
|
+
|
|
102
124
|
### The o4-mini Potential
|
|
103
125
|
|
|
104
126
|
If adapted for DeepSeek CLI, o4-mini could offer the same reasoning capabilities as Codex CLI 5.2 xhigh but without the sandbox prison. The insights from making o4-mini work in an unrestricted environment would benefit all coding agent development - you learn what's actually possible when you remove artificial limitations.
|
package/package.json
CHANGED