forgexa-cli 1.11.1__tar.gz → 1.11.4__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.
- {forgexa_cli-1.11.1 → forgexa_cli-1.11.4}/PKG-INFO +13 -4
- {forgexa_cli-1.11.1 → forgexa_cli-1.11.4}/README.md +12 -3
- {forgexa_cli-1.11.1 → forgexa_cli-1.11.4}/forgexa_cli/__init__.py +1 -1
- {forgexa_cli-1.11.1 → forgexa_cli-1.11.4}/forgexa_cli/daemon.py +761 -98
- {forgexa_cli-1.11.1 → forgexa_cli-1.11.4}/forgexa_cli/main.py +123 -60
- {forgexa_cli-1.11.1 → forgexa_cli-1.11.4}/forgexa_cli.egg-info/PKG-INFO +13 -4
- {forgexa_cli-1.11.1 → forgexa_cli-1.11.4}/forgexa_cli.egg-info/SOURCES.txt +2 -1
- {forgexa_cli-1.11.1 → forgexa_cli-1.11.4}/pyproject.toml +1 -1
- forgexa_cli-1.11.4/tests/test_auth_and_runtime_commands.py +236 -0
- {forgexa_cli-1.11.1 → forgexa_cli-1.11.4}/forgexa_cli/_build_config.py +0 -0
- {forgexa_cli-1.11.1 → forgexa_cli-1.11.4}/forgexa_cli/py.typed +0 -0
- {forgexa_cli-1.11.1 → forgexa_cli-1.11.4}/forgexa_cli.egg-info/dependency_links.txt +0 -0
- {forgexa_cli-1.11.1 → forgexa_cli-1.11.4}/forgexa_cli.egg-info/entry_points.txt +0 -0
- {forgexa_cli-1.11.1 → forgexa_cli-1.11.4}/forgexa_cli.egg-info/requires.txt +0 -0
- {forgexa_cli-1.11.1 → forgexa_cli-1.11.4}/forgexa_cli.egg-info/top_level.txt +0 -0
- {forgexa_cli-1.11.1 → forgexa_cli-1.11.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: forgexa-cli
|
|
3
|
-
Version: 1.11.
|
|
3
|
+
Version: 1.11.4
|
|
4
4
|
Summary: Forgexa CLI — command-line client and AI agent runtime for the Forgexa platform
|
|
5
5
|
Author-email: Jason Sun <dev.winds@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -100,9 +100,9 @@ forgexa board --project <project-id>
|
|
|
100
100
|
| `forgexa budget --workspace <id>` | Budget overview |
|
|
101
101
|
| `forgexa daemon start` | Start local daemon (discover agents, run tasks) |
|
|
102
102
|
| `forgexa daemon start -d` | Start daemon in background |
|
|
103
|
-
| `forgexa daemon status` | Show daemon statuses |
|
|
103
|
+
| `forgexa daemon status` | Show your daemon statuses |
|
|
104
104
|
| `forgexa daemon stop` | Stop local daemon |
|
|
105
|
-
| `forgexa runtimes list` | List runtimes |
|
|
105
|
+
| `forgexa runtimes list` | List your runtimes |
|
|
106
106
|
| `forgexa version` | Show CLI version |
|
|
107
107
|
|
|
108
108
|
## Configuration
|
|
@@ -144,11 +144,20 @@ forgexa-daemon
|
|
|
144
144
|
### Other Daemon Commands
|
|
145
145
|
|
|
146
146
|
```bash
|
|
147
|
-
# Check daemon status (from server)
|
|
147
|
+
# Check your daemon status (from server)
|
|
148
148
|
forgexa daemon status
|
|
149
149
|
|
|
150
|
+
# Platform admin: list all runtimes
|
|
151
|
+
forgexa daemon status --all
|
|
152
|
+
|
|
150
153
|
# Stop background daemon
|
|
151
154
|
forgexa daemon stop
|
|
155
|
+
|
|
156
|
+
# List your runtimes
|
|
157
|
+
forgexa runtimes list
|
|
158
|
+
|
|
159
|
+
# Platform admin: list all runtimes
|
|
160
|
+
forgexa runtimes list --all
|
|
152
161
|
```
|
|
153
162
|
|
|
154
163
|
### Supported AI Agents
|
|
@@ -70,9 +70,9 @@ forgexa board --project <project-id>
|
|
|
70
70
|
| `forgexa budget --workspace <id>` | Budget overview |
|
|
71
71
|
| `forgexa daemon start` | Start local daemon (discover agents, run tasks) |
|
|
72
72
|
| `forgexa daemon start -d` | Start daemon in background |
|
|
73
|
-
| `forgexa daemon status` | Show daemon statuses |
|
|
73
|
+
| `forgexa daemon status` | Show your daemon statuses |
|
|
74
74
|
| `forgexa daemon stop` | Stop local daemon |
|
|
75
|
-
| `forgexa runtimes list` | List runtimes |
|
|
75
|
+
| `forgexa runtimes list` | List your runtimes |
|
|
76
76
|
| `forgexa version` | Show CLI version |
|
|
77
77
|
|
|
78
78
|
## Configuration
|
|
@@ -114,11 +114,20 @@ forgexa-daemon
|
|
|
114
114
|
### Other Daemon Commands
|
|
115
115
|
|
|
116
116
|
```bash
|
|
117
|
-
# Check daemon status (from server)
|
|
117
|
+
# Check your daemon status (from server)
|
|
118
118
|
forgexa daemon status
|
|
119
119
|
|
|
120
|
+
# Platform admin: list all runtimes
|
|
121
|
+
forgexa daemon status --all
|
|
122
|
+
|
|
120
123
|
# Stop background daemon
|
|
121
124
|
forgexa daemon stop
|
|
125
|
+
|
|
126
|
+
# List your runtimes
|
|
127
|
+
forgexa runtimes list
|
|
128
|
+
|
|
129
|
+
# Platform admin: list all runtimes
|
|
130
|
+
forgexa runtimes list --all
|
|
122
131
|
```
|
|
123
132
|
|
|
124
133
|
### Supported AI Agents
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
"""forgexa-cli — Forgexa command-line client."""
|
|
2
|
-
__version__ = "1.11.
|
|
2
|
+
__version__ = "1.11.4"
|