@circuitorg/agent-cli 1.1.11 → 1.1.13

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 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
 
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@circuitorg/agent-cli",
3
- "version": "1.1.11",
3
+ "version": "1.1.13",
4
4
  "description": "A CLI tool for publishing agents to the Circuit platform",
5
5
  "type": "module",
6
6
  "bin": {
@@ -12,6 +12,7 @@
12
12
  ],
13
13
  "scripts": {
14
14
  "build": "bun scripts/build.ts",
15
+ "build:windows": "bun scripts/build-windows.ts",
15
16
  "dev": "bun --hot src/index.ts",
16
17
  "test": "bun test",
17
18
  "test:coverage": "bun test --coverage",