@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Circuit CLI
2
2
 
3
- The official command-line tool for creating, testing, and deploying agents on the Circuit platform.
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 deploying
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 deployment status |
155
+ | `circuit agent status` | Check agent ment status |
143
156
 
144
157
  ### Wallet Commands
145
158
 
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.8",
3
+ "version": "1.1.11",
4
4
  "description": "A CLI tool for publishing agents to the Circuit platform",
5
5
  "type": "module",
6
6
  "bin": {