@circuitorg/agent-cli 1.1.12 → 1.1.14
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 +0 -13
- 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 +6 -6
package/README.md
CHANGED
|
@@ -117,19 +117,6 @@ 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
|
-
|
|
133
120
|
> **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.
|
|
134
121
|
|
|
135
122
|
|
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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@circuitorg/agent-cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.14",
|
|
4
4
|
"description": "A CLI tool for publishing agents to the Circuit platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -32,18 +32,18 @@
|
|
|
32
32
|
"author": "circuitorg",
|
|
33
33
|
"license": "MIT",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"chalk": "^5.
|
|
35
|
+
"chalk": "^5.6.2",
|
|
36
36
|
"enquirer": "^2.4.1",
|
|
37
|
-
"minimatch": "^10.0.
|
|
37
|
+
"minimatch": "^10.0.3",
|
|
38
38
|
"ora": "^8.2.0",
|
|
39
39
|
"terminal-link": "^4.0.0",
|
|
40
40
|
"tty-table": "^4.2.3",
|
|
41
|
-
"zod": "^4.
|
|
41
|
+
"zod": "^4.1.8"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"bun-types": "latest",
|
|
45
|
-
"typescript": "^5.
|
|
46
|
-
"prettier": "^3.
|
|
45
|
+
"typescript": "^5.9.2",
|
|
46
|
+
"prettier": "^3.6.2"
|
|
47
47
|
},
|
|
48
48
|
"repository": {
|
|
49
49
|
"type": "git",
|