kiro-agents 1.6.1 → 1.7.1

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
@@ -23,13 +23,16 @@ npx kiro-agents
23
23
  ```
24
24
  Installs to `~/.kiro/steering/kiro-agents/` - available in all workspaces.
25
25
 
26
- <!--
27
- **Workspace (Kiro Power):**
28
- 1. Open Powers panel in Kiro IDE
29
- 2. Add from GitHub: `https://github.com/theadd/kiro-agents`
26
+ **Kiro Powers (recommended):**
30
27
 
31
- Installs to `.kiro/powers/kiro-agents/` - auto-updates, workspace-specific.
32
- -->
28
+ This repository provides multiple Kiro Powers that can be installed independently:
29
+
30
+ 1. **kiro-protocols** - Reusable protocol library for AI agents
31
+ - Install via Kiro IDE Powers panel
32
+ - Add repository: `https://github.com/theadd/kiro-agents`
33
+ - Select "Kiro Protocols" power
34
+
35
+ See [powers/README.md](powers/README.md) for detailed power documentation.
33
36
 
34
37
  ## Quick Start
35
38
 
@@ -57,7 +57,9 @@ Begin with a diff block showing:
57
57
  Execute `listDirectory` on `.kiro/agents/`:
58
58
 
59
59
  **If directory doesn't exist OR directory is empty:**
60
- 1. **Read #[[file:protocols/agent-creation.md]] into context** - Load agent creation protocol
60
+ 1. **Load agent creation protocol**:
61
+ - Call `kiroPowers` with action="activate", powerName="kiro-protocols"
62
+ - Call `kiroPowers` with action="readSteering", powerName="kiro-protocols", steeringFile="agent-creation.md"
61
63
  2. Create `.kiro/agents/kiro-master.md` agent automatically using the description from "Initial Agent" section
62
64
  3. Follow the agent definition structure from agent-creation.md protocol
63
65
  4. Show diff block indicating setup completion
@@ -109,7 +111,9 @@ Based on user selection:
109
111
 
110
112
  #### Option 2 - Create New Agent
111
113
 
112
- - **Read #[[file:protocols/agent-creation.md]] into context** - Load agent creation protocol
114
+ - **Load agent creation protocol**:
115
+ - Call `kiroPowers` with action="activate", powerName="kiro-protocols"
116
+ - Call `kiroPowers` with action="readSteering", powerName="kiro-protocols", steeringFile="agent-creation.md"
113
117
  - Follow all steps from the "Agent Creation Steps" section in agent-creation.md
114
118
  - Start agent creation workflow with interactive wizard
115
119
  - Ask for agent type (code-focused, documentation, testing, etc.)
@@ -120,7 +124,9 @@ Based on user selection:
120
124
 
121
125
  #### Option 3 - Manage Existing Agent
122
126
 
123
- - **Read #[[file:protocols/agent-creation.md]] into context** - Load agent structure reference
127
+ - **Load agent structure reference**:
128
+ - Call `kiroPowers` with action="activate", powerName="kiro-protocols"
129
+ - Call `kiroPowers` with action="readSteering", powerName="kiro-protocols", steeringFile="agent-creation.md"
124
130
  - Show numbered list of available agents
125
131
  - User selects agent to manage
126
132
  - Offer management options:
@@ -31,7 +31,9 @@ Begin with a diff block showing:
31
31
  Execute `listDirectory` on `.kiro/agents/`:
32
32
 
33
33
  **If directory doesn't exist OR directory is empty:**
34
- 1. **Read #[[file:protocols/agent-creation.md]] into context** - Load agent creation protocol
34
+ 1. **Load agent creation protocol**:
35
+ - Call `kiroPowers` with action="activate", powerName="kiro-protocols"
36
+ - Call `kiroPowers` with action="readSteering", powerName="kiro-protocols", steeringFile="agent-creation.md"
35
37
  2. Create `.kiro/agents/kiro-master.md` agent automatically using the description from "Initial Agent" section
36
38
  3. Follow the agent definition structure from agent-creation.md protocol
37
39
  4. Show diff block indicating setup completion
@@ -83,7 +85,9 @@ Based on user selection:
83
85
 
84
86
  #### Option 2 - Create New Agent
85
87
 
86
- - **Read #[[file:protocols/agent-creation.md]] into context** - Load agent creation protocol
88
+ - **Load agent creation protocol**:
89
+ - Call `kiroPowers` with action="activate", powerName="kiro-protocols"
90
+ - Call `kiroPowers` with action="readSteering", powerName="kiro-protocols", steeringFile="agent-creation.md"
87
91
  - Follow all steps from the "Agent Creation Steps" section in agent-creation.md
88
92
  - Start agent creation workflow with interactive wizard
89
93
  - Ask for agent type (code-focused, documentation, testing, etc.)
@@ -94,7 +98,9 @@ Based on user selection:
94
98
 
95
99
  #### Option 3 - Manage Existing Agent
96
100
 
97
- - **Read #[[file:protocols/agent-creation.md]] into context** - Load agent structure reference
101
+ - **Load agent structure reference**:
102
+ - Call `kiroPowers` with action="activate", powerName="kiro-protocols"
103
+ - Call `kiroPowers` with action="readSteering", powerName="kiro-protocols", steeringFile="agent-creation.md"
98
104
  - Show numbered list of available agents
99
105
  - User selects agent to manage
100
106
  - Offer management options:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kiro-agents",
3
- "version": "1.6.1",
3
+ "version": "1.7.1",
4
4
  "description": "Advanced AI agent system for Kiro IDE - Create specialized AI agents, switch interaction modes, and enhance development workflows with minimal cognitive overhead",
5
5
  "homepage": "https://github.com/Theadd/kiro-agents#readme",
6
6
  "repository": {
@@ -21,6 +21,8 @@
21
21
  "scripts": {
22
22
  "build": "bun run scripts/build.ts npm",
23
23
  "build:power": "bun run scripts/build.ts power",
24
+ "build:powers": "bun run scripts/build-powers.ts",
25
+ "validate:powers": "bun run scripts/validate-powers.ts",
24
26
  "dev": "bun run scripts/build.ts dev",
25
27
  "test": "bun run scripts/test.ts",
26
28
  "clean": "bun run scripts/clean.ts",