@circuitorg/agent-cli 1.1.8 → 1.1.11
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 +16 -3
- package/bin/circuit-darwin-arm64 +0 -0
- package/bin/circuit-darwin-x64 +0 -0
- package/bin/circuit-linux-arm64 +0 -0
- package/bin/circuit-linux-x64 +0 -0
- package/bin/circuit-win32-x64.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Circuit CLI
|
|
2
2
|
|
|
3
|
-
The official command-line tool for creating, testing, and
|
|
3
|
+
The official command-line tool for creating, testing, and publishing agents on the Circuit platform.
|
|
4
4
|
|
|
5
5
|
## 📑 Table of Contents
|
|
6
6
|
|
|
@@ -30,7 +30,7 @@ The official command-line tool for creating, testing, and deploying agents on th
|
|
|
30
30
|
## 🚀 Features
|
|
31
31
|
|
|
32
32
|
- **Easy Setup**: Initialize new agents with a single command
|
|
33
|
-
- **Local Testing**: Test your agents locally before
|
|
33
|
+
- **Local Testing**: Test your agents locally before publishing
|
|
34
34
|
- **Interactive Mode**: User-friendly menus for all commands
|
|
35
35
|
- **Multi-Language**: Support for both TypeScript and Python agents
|
|
36
36
|
- **Zero Dependencies**: Standalone executables work out of the box
|
|
@@ -117,6 +117,19 @@ bun install # or uv sync for Python
|
|
|
117
117
|
circuit run
|
|
118
118
|
```
|
|
119
119
|
|
|
120
|
+
**Agent Debugging:**
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
# Spin up a separate terminal, then run a local custom server
|
|
124
|
+
cd <existing-agent-dir>
|
|
125
|
+
|
|
126
|
+
# Run a custom server locally on default port 3000
|
|
127
|
+
bun run dev
|
|
128
|
+
|
|
129
|
+
# Go back to original terminal, test your agent then view logs in the server terminal window
|
|
130
|
+
circuit run --port 3000
|
|
131
|
+
```
|
|
132
|
+
|
|
120
133
|
> **Note**: For existing agents, copy your execution logic into the execute/stop functions in the generated template files. See the SDK documentation for details on the Agent class structure.
|
|
121
134
|
|
|
122
135
|
|
|
@@ -139,7 +152,7 @@ circuit run
|
|
|
139
152
|
| Command | Description |
|
|
140
153
|
|---------|-------------|
|
|
141
154
|
| `circuit agent info` | Show current agent information |
|
|
142
|
-
| `circuit agent status` | Check agent
|
|
155
|
+
| `circuit agent status` | Check agent ment status |
|
|
143
156
|
|
|
144
157
|
### Wallet Commands
|
|
145
158
|
|
package/bin/circuit-darwin-arm64
CHANGED
|
Binary file
|
package/bin/circuit-darwin-x64
CHANGED
|
Binary file
|
package/bin/circuit-linux-arm64
CHANGED
|
Binary file
|
package/bin/circuit-linux-x64
CHANGED
|
Binary file
|
|
Binary file
|