warden-code 0.1.4 → 0.1.5

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.
Files changed (2) hide show
  1. package/README.md +11 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,20 +2,26 @@
2
2
 
3
3
  Interactive CLI for bootstrapping Warden agents with support for both A2A and LangGraph protocols.
4
4
 
5
- ## Installation
5
+ ## Getting Started
6
+
7
+ Install the CLI globally:
6
8
 
7
9
  ```bash
8
10
  npm install -g warden-code
9
- # or
10
- npx warden-code
11
11
  ```
12
12
 
13
- ## Usage
13
+ Then run it with:
14
14
 
15
15
  ```bash
16
16
  warden
17
17
  ```
18
18
 
19
+ Or just run it directly:
20
+
21
+ ```bash
22
+ npx warden-code
23
+ ```
24
+
19
25
  This launches an interactive CLI where you can create new agents.
20
26
 
21
27
  ### Commands
@@ -33,7 +39,7 @@ Run `/new` to start the agent creation wizard:
33
39
 
34
40
  1. **Agent name** - a name for your agent
35
41
  2. **Description** - what your agent does
36
- 3. **Model** - Echo (echoes input) or OpenAI (GPT-powered)
42
+ 3. **Model** - Echo (just a demo that echoes input) or OpenAI (GPT-powered)
37
43
  4. **Capability** - Streaming or Multi-turn conversations
38
44
  5. **Skills** - Define agent capabilities (optional)
39
45
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "warden-code",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Interactive CLI for bootstrapping Warden agents",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",