erosolar-cli 1.6.9 → 1.6.12
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 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,32 @@
|
|
|
1
1
|
# erosolar-cli
|
|
2
2
|
|
|
3
|
+
## AI Coding Agent Comparison
|
|
4
|
+
|
|
5
|
+
A comparison of AI coding agents for building complete projects from scratch:
|
|
6
|
+
|
|
7
|
+
| Agent | Screenshot |
|
|
8
|
+
|-------|------------|
|
|
9
|
+
| **Claude Code** |  |
|
|
10
|
+
| **OpenAI Codex CLI** |  |
|
|
11
|
+
| **Erosolar CLI** |  |
|
|
12
|
+
|
|
13
|
+
### Current State
|
|
14
|
+
|
|
15
|
+
**Claude Code** currently delivers the best results for creating complete projects from scratch. It successfully built a CS50 final project end-to-end and launched it without manual intervention.
|
|
16
|
+
|
|
17
|
+
**OpenAI Codex CLI** provides solid coding assistance but requires more human guidance for complex multi-step project creation.
|
|
18
|
+
|
|
19
|
+
**Erosolar CLI** is actively being developed by Bo Shang to match and eventually exceed these capabilities. The goal is to achieve the same level of autonomous project creation, constrained only by the underlying model's limits—not by the CLI tooling itself. This work is ongoing.
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
3
23
|
> Thank you to [Anthropic](https://www.anthropic.com/) for allowing me to use [Claude Code](https://www.claude.com/product/claude-code) to build erosolar-cli.
|
|
4
24
|
>
|
|
5
25
|
> Thank you to [OpenAI](https://openai.com) for allowing me to use [ChatGPT](https://chatgpt.com) initially, then [Codex CLI](https://developers.openai.com/codex/cli/).
|
|
6
26
|
>
|
|
7
27
|
> As for [Gemini CLI](https://docs.cloud.google.com/gemini/docs/codeassist/gemini-cli)... maybe one day it'll work well enough to deserve a thank you note.
|
|
8
28
|
|
|
9
|
-

|
|
29
|
+

|
|
10
30
|
|
|
11
31
|
A unified AI agent framework for the command line. Multi-provider support with schema-driven tools, code intelligence, competitive RL, and transparent reasoning.
|
|
12
32
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "erosolar-cli",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.12",
|
|
4
4
|
"description": "Unified AI agent framework for the command line - Multi-provider support with schema-driven tools, code intelligence, and transparent reasoning",
|
|
5
5
|
"main": "dist/bin/erosolar-optimized.js",
|
|
6
6
|
"type": "module",
|