@circuitorg/agent-cli 1.1.6 → 1.1.10

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
@@ -96,8 +96,8 @@ uv sync # For Python agents
96
96
  # 5. Test your agent (handles setup, session creation automatically)
97
97
  circuit run
98
98
 
99
- # 6. Deploy to production when ready
100
- circuit deploy
99
+ # 6. Publish to production when ready
100
+ circuit publish
101
101
  ```
102
102
 
103
103
  **Existing Agent Setup:**
@@ -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
 
@@ -131,7 +144,7 @@ circuit run
131
144
  | `circuit logout` | Sign out from Circuit platform |
132
145
  | `circuit init` | Initialize a new agent project |
133
146
  | `circuit run` | Run/test your agent (handles setup automatically) |
134
- | `circuit deploy` | Deploy agent to production |
147
+ | `circuit publish` | Publish agent to production |
135
148
  | `circuit help` | Show detailed help and getting started guide |
136
149
 
137
150
  ### Agent Management Commands
@@ -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,7 +1,7 @@
1
1
  {
2
2
  "name": "@circuitorg/agent-cli",
3
- "version": "1.1.6",
4
- "description": "A CLI tool for deploying agents to the Circuit platform",
3
+ "version": "1.1.10",
4
+ "description": "A CLI tool for publishing agents to the Circuit platform",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "circuit": "./bin/circuit"