forgecodecli 0.2.0__tar.gz → 2.0.0__tar.gz
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.
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/PKG-INFO +10 -23
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/README.md +9 -22
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/forgecodecli.egg-info/PKG-INFO +10 -23
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/pyproject.toml +1 -1
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/forgecodecli/__init__.py +0 -0
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/forgecodecli/agent.py +0 -0
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/forgecodecli/cli.py +0 -0
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/forgecodecli/config.py +0 -0
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/forgecodecli/git_tools.py +0 -0
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/forgecodecli/path_resolver.py +0 -0
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/forgecodecli/secrets.py +0 -0
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/forgecodecli/tools.py +0 -0
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/forgecodecli.egg-info/SOURCES.txt +0 -0
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/forgecodecli.egg-info/dependency_links.txt +0 -0
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/forgecodecli.egg-info/entry_points.txt +0 -0
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/forgecodecli.egg-info/requires.txt +0 -0
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/forgecodecli.egg-info/top_level.txt +0 -0
- {forgecodecli-0.2.0 → forgecodecli-2.0.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: forgecodecli
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.0
|
|
4
4
|
Summary: A minimal agentic CLI for forging code
|
|
5
5
|
Author: Sudhanshu
|
|
6
6
|
License: MIT
|
|
@@ -157,30 +157,17 @@ The agent can execute these operations:
|
|
|
157
157
|
|
|
158
158
|
All actions are executed safely with validation and error handling.
|
|
159
159
|
|
|
160
|
-
##
|
|
160
|
+
## What's Available
|
|
161
161
|
|
|
162
|
-
|
|
162
|
+
- File operations (read, list, create, write, delete, move)
|
|
163
|
+
- Undo functionality - Stack-based operation reversal
|
|
164
|
+
- Git operations - init, add, commit, push, pull, status, log, branch, clone, set_origin
|
|
165
|
+
- Multi-provider support - Gemini, OpenAI, Anthropic, Groq
|
|
166
|
+
- Model selection - Choose specific models per provider
|
|
167
|
+
- Auto-install SDKs - Anthropic SDK installs on demand
|
|
168
|
+
- Proper conversation flow with max actions per request
|
|
163
169
|
|
|
164
|
-
|
|
165
|
-
- Gemini support
|
|
166
|
-
- Interactive CLI
|
|
167
|
-
|
|
168
|
-
### ✅ v2 (Released)
|
|
169
|
-
|
|
170
|
-
- **Undo functionality** - Stack-based operation reversal
|
|
171
|
-
- **Delete & move operations** - Full file/directory manipulation
|
|
172
|
-
- **Multi-provider support** - Gemini, OpenAI, Anthropic, Groq
|
|
173
|
-
- **Model selection** - Choose specific models per provider
|
|
174
|
-
- **Auto-install SDKs** - Anthropic SDK installs on demand
|
|
175
|
-
- **Fixed agent loop** - Proper conversation flow with max actions
|
|
176
|
-
|
|
177
|
-
### ✅ v3 (Current)
|
|
178
|
-
|
|
179
|
-
- **Git operations** - init, add, commit, push, pull, status, log, branch, clone, set_origin
|
|
180
|
-
- **Git workflow support** - Full version control integration
|
|
181
|
-
- **Repository management** - Clone and manage git repos
|
|
182
|
-
|
|
183
|
-
### 🚀 v4 (Planned)
|
|
170
|
+
## Coming Soon
|
|
184
171
|
|
|
185
172
|
- Copy files/directories
|
|
186
173
|
- Full undo/redo history (not just last operation)
|
|
@@ -139,30 +139,17 @@ The agent can execute these operations:
|
|
|
139
139
|
|
|
140
140
|
All actions are executed safely with validation and error handling.
|
|
141
141
|
|
|
142
|
-
##
|
|
142
|
+
## What's Available
|
|
143
143
|
|
|
144
|
-
|
|
144
|
+
- File operations (read, list, create, write, delete, move)
|
|
145
|
+
- Undo functionality - Stack-based operation reversal
|
|
146
|
+
- Git operations - init, add, commit, push, pull, status, log, branch, clone, set_origin
|
|
147
|
+
- Multi-provider support - Gemini, OpenAI, Anthropic, Groq
|
|
148
|
+
- Model selection - Choose specific models per provider
|
|
149
|
+
- Auto-install SDKs - Anthropic SDK installs on demand
|
|
150
|
+
- Proper conversation flow with max actions per request
|
|
145
151
|
|
|
146
|
-
|
|
147
|
-
- Gemini support
|
|
148
|
-
- Interactive CLI
|
|
149
|
-
|
|
150
|
-
### ✅ v2 (Released)
|
|
151
|
-
|
|
152
|
-
- **Undo functionality** - Stack-based operation reversal
|
|
153
|
-
- **Delete & move operations** - Full file/directory manipulation
|
|
154
|
-
- **Multi-provider support** - Gemini, OpenAI, Anthropic, Groq
|
|
155
|
-
- **Model selection** - Choose specific models per provider
|
|
156
|
-
- **Auto-install SDKs** - Anthropic SDK installs on demand
|
|
157
|
-
- **Fixed agent loop** - Proper conversation flow with max actions
|
|
158
|
-
|
|
159
|
-
### ✅ v3 (Current)
|
|
160
|
-
|
|
161
|
-
- **Git operations** - init, add, commit, push, pull, status, log, branch, clone, set_origin
|
|
162
|
-
- **Git workflow support** - Full version control integration
|
|
163
|
-
- **Repository management** - Clone and manage git repos
|
|
164
|
-
|
|
165
|
-
### 🚀 v4 (Planned)
|
|
152
|
+
## Coming Soon
|
|
166
153
|
|
|
167
154
|
- Copy files/directories
|
|
168
155
|
- Full undo/redo history (not just last operation)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: forgecodecli
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.0
|
|
4
4
|
Summary: A minimal agentic CLI for forging code
|
|
5
5
|
Author: Sudhanshu
|
|
6
6
|
License: MIT
|
|
@@ -157,30 +157,17 @@ The agent can execute these operations:
|
|
|
157
157
|
|
|
158
158
|
All actions are executed safely with validation and error handling.
|
|
159
159
|
|
|
160
|
-
##
|
|
160
|
+
## What's Available
|
|
161
161
|
|
|
162
|
-
|
|
162
|
+
- File operations (read, list, create, write, delete, move)
|
|
163
|
+
- Undo functionality - Stack-based operation reversal
|
|
164
|
+
- Git operations - init, add, commit, push, pull, status, log, branch, clone, set_origin
|
|
165
|
+
- Multi-provider support - Gemini, OpenAI, Anthropic, Groq
|
|
166
|
+
- Model selection - Choose specific models per provider
|
|
167
|
+
- Auto-install SDKs - Anthropic SDK installs on demand
|
|
168
|
+
- Proper conversation flow with max actions per request
|
|
163
169
|
|
|
164
|
-
|
|
165
|
-
- Gemini support
|
|
166
|
-
- Interactive CLI
|
|
167
|
-
|
|
168
|
-
### ✅ v2 (Released)
|
|
169
|
-
|
|
170
|
-
- **Undo functionality** - Stack-based operation reversal
|
|
171
|
-
- **Delete & move operations** - Full file/directory manipulation
|
|
172
|
-
- **Multi-provider support** - Gemini, OpenAI, Anthropic, Groq
|
|
173
|
-
- **Model selection** - Choose specific models per provider
|
|
174
|
-
- **Auto-install SDKs** - Anthropic SDK installs on demand
|
|
175
|
-
- **Fixed agent loop** - Proper conversation flow with max actions
|
|
176
|
-
|
|
177
|
-
### ✅ v3 (Current)
|
|
178
|
-
|
|
179
|
-
- **Git operations** - init, add, commit, push, pull, status, log, branch, clone, set_origin
|
|
180
|
-
- **Git workflow support** - Full version control integration
|
|
181
|
-
- **Repository management** - Clone and manage git repos
|
|
182
|
-
|
|
183
|
-
### 🚀 v4 (Planned)
|
|
170
|
+
## Coming Soon
|
|
184
171
|
|
|
185
172
|
- Copy files/directories
|
|
186
173
|
- Full undo/redo history (not just last operation)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|