kiro-agents 1.3.0 → 1.4.0

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 +56 -227
  2. package/package.json +26 -3
package/README.md CHANGED
@@ -1,266 +1,95 @@
1
1
  # kiro-agents
2
2
 
3
- Advanced AI agent system for Kiro IDE that enhances your development workflow with minimal cognitive overhead.
4
-
5
- ## What is kiro-agents?
6
-
7
- kiro-agents is a steering document system that extends Kiro IDE with:
8
-
9
- - **Agent System** - Create and manage specialized AI agents with `/agent` and `/agents` commands
10
- - **Mode System** - Switch between interaction styles with `/mode` command (vibe/spec modes)
11
- - **Strict Mode** - Precision mode for experimental development with `/strict` command
12
- - **Interactive Workflows** - Choice-based interactions that minimize cognitive load
13
- - **Progressive Enhancement** - Start minimal, add agents as needed
14
-
15
- ## Installation
16
-
17
- ### Option 1: Global Installation (npm)
3
+ AI agent system for Kiro IDE. Create specialized agents, switch interaction modes, and reduce cognitive load during development.
18
4
 
19
5
  ```bash
20
6
  npx kiro-agents
21
- # or
22
- bunx kiro-agents
23
- ```
24
-
25
- This installs steering documents to `~/.kiro/steering/` (global, available in all workspaces).
26
-
27
- ### Option 2: Workspace Installation (Kiro Power)
28
-
29
- 1. Open Kiro IDE
30
- 2. Open Powers panel (Ghosty icon ⚡)
31
- 3. Click "Add power from GitHub"
32
- 4. Enter: `https://github.com/theadd/kiro-agents`
33
- 5. Click Install
34
-
35
- This installs to `.kiro/powers/kiro-agents/` (workspace-specific).
36
-
37
- **Differences:**
38
- - **npm**: Global installation, available in all workspaces
39
- - **Power**: Workspace-specific, auto-updates, better Kiro integration
40
-
41
- ## Core Features
42
-
43
- ### Agent System
44
-
45
- Create specialized AI agents for different tasks. Each agent has:
46
-
47
- - Defined capabilities and responsibilities
48
- - Custom interaction protocols
49
- - Specific workflows and tools
50
- - Integration with other agents
51
-
52
- **Commands:**
53
- - `/agents` - Interactive agent management (visual menu)
54
- - `/agents {name}` - Activate specific agent directly
55
-
56
- **Example workflow:**
57
- ```
58
- User: /agents
59
- AI: [Shows available agents with numbered choices]
60
- User: 2 (Create new agent)
61
- AI: [Guides through agent creation wizard]
62
7
  ```
63
8
 
64
- Agents are stored in `.kiro/agents/` and can be:
65
- - Created interactively through wizard
66
- - Modified and updated
67
- - Activated on-demand
68
- - Coordinated with other agents
69
-
70
- ### Mode System
71
-
72
- Switch between interaction styles based on your needs:
73
-
74
- **Vibe Mode** - Flexible, conversational development
75
- - Quick iterations and prototyping
76
- - Direct code changes
77
- - Exploratory development
78
- - Minimal ceremony
79
-
80
- **Spec Mode** - Structured feature development
81
- - Formal requirements (EARS/INCOSE compliant)
82
- - Design with correctness properties
83
- - Task-based implementation
84
- - Property-based testing focus
85
-
86
- **Commands:**
87
- - `/modes` - Interactive mode management (visual menu)
88
- - `/modes vibe` - Switch to flexible development
89
- - `/modes spec` - Switch to structured planning
90
-
91
- ### Strict Mode
92
-
93
- Precision mode for experimental or critical development:
94
-
95
- - Blocks execution on ambiguous input
96
- - Requires explicit clarification
97
- - Prevents assumption propagation
98
- - Ideal for architectural decisions
99
-
100
- **Commands:**
101
- - `/strict` - Interactive control (visual buttons)
102
- - `/strict on` - Activate precision mode
103
- - `/strict off` - Return to normal mode
104
-
105
- ### Interactive Workflows
106
-
107
- All interactions use choice-based patterns:
9
+ ## Features
108
10
 
109
- - Numbered options (typically 4-6, up to 16 when needed)
110
- - Visual progress indicators (diff blocks)
111
- - Single focus per interaction
112
- - Minimal cognitive load
11
+ - **Agents** - Specialized AI personas with defined capabilities (`/agents`)
12
+ - **Modes** - Switch between vibe (flexible) and spec (structured) workflows (`/modes`)
13
+ - **Strict Mode** - Precision mode that blocks on ambiguity (`/strict`)
14
+ - **Zero Config** - Works immediately after installation ⇨ <kbd>/agents</kbd>
113
15
 
114
- This design reduces decision fatigue and maintains context during long conversations.
115
-
116
- ## How It Works
117
-
118
- kiro-agents provides steering documents that Kiro loads to enhance AI capabilities:
119
-
120
- **npm installation:**
121
- - Installs to `~/.kiro/steering/` (global)
122
- - Available in all workspaces
123
- - Manual updates via re-running npx/bunx
124
-
125
- **Power installation:**
126
- - Installs to `.kiro/powers/kiro-agents/` (workspace)
127
- - Auto-updates from GitHub
128
- - Better integration with Kiro ecosystem
129
- - Keyword-based activation
130
-
131
- Both methods provide:
132
- 1. New slash commands (`/agents`, `/modes`, `/strict`)
133
- 2. Protocols for AI behavior
134
- 3. Agent and mode systems
135
- 4. Optimized interactions for reduced cognitive load
136
-
137
- The system adds minimal overhead while enabling progressive enhancement.
138
-
139
- ## File Structure After Installation
140
-
141
- **npm installation** (`~/.kiro/steering/`):
142
- ```
143
- ~/.kiro/steering/
144
- ├── agent-system.md
145
- ├── modes-system.md
146
- └── agent-system/
147
- ├── strict-mode.md
148
- ├── kiro-spec-mode.md
149
- ├── kiro-vibe-mode.md
150
- ├── interactions/
151
- └── tools/
152
- ```
16
+ ## Installation
153
17
 
154
- **Power installation** (`.kiro/powers/kiro-agents/`):
155
- ```
156
- .kiro/powers/kiro-agents/
157
- ├── POWER.md # Power metadata
158
- ├── mcp.json # MCP server config (empty for now)
159
- └── steering/
160
- ├── agent-system.md # Core system (always loaded)
161
- ├── agents.md # Interactive menu (manual)
162
- ├── modes-system.md # Core system (always loaded)
163
- ├── modes.md # Interactive menu (manual)
164
- ├── strict-mode.md # Core system (always loaded)
165
- ├── strict.md # Interactive control (manual)
166
- ├── interactions/ # Interaction patterns
167
- └── modes/ # Mode definitions
18
+ **Global (npm):**
19
+ ```bash
20
+ npx kiro-agents
168
21
  ```
22
+ Installs to `~/.kiro/steering/kiro-agents/` - available in all workspaces.
169
23
 
170
- npm files are read-only after installation. Power files managed by Kiro.
24
+ <!--
25
+ **Workspace (Kiro Power):**
26
+ 1. Open Powers panel in Kiro IDE
27
+ 2. Add from GitHub: `https://github.com/theadd/kiro-agents`
171
28
 
172
- ## Usage Examples
29
+ Installs to `.kiro/powers/kiro-agents/` - auto-updates, workspace-specific.
30
+ -->
173
31
 
174
- ### Creating a Custom Agent
32
+ ## Quick Start
175
33
 
34
+ **Create an agent:**
176
35
  ```
177
- User: /agents
178
- AI: [Shows agent management options]
179
- User: 2 (Create new agent)
180
- AI: What type of agent? [Shows options]
181
- User: 1 (Code-focused agent)
182
- AI: [Collects name, capabilities, workflows]
183
- AI: Agent created! Activate now? [Yes/No]
36
+ /agents
37
+ Choose "Create new agent"
38
+ Follow wizard
184
39
  ```
185
40
 
186
- ### Switching Modes
187
-
188
- ```
189
- User: /modes spec
190
- AI: [Loads spec mode protocols]
191
- AI: What feature do you want to work on?
192
- User: User authentication system
193
- AI: [Guides through requirements → design → tasks]
194
- ```
195
-
196
- ### Using Strict Mode
197
-
41
+ **Switch modes:**
198
42
  ```
199
- User: /strict on
200
- AI: Strict mode activated
201
- User: Add caching to the API
202
- AI: [Asks clarifying questions about cache strategy, TTL, invalidation, etc.]
43
+ /modes spec # Structured feature development
44
+ /modes vibe # Flexible, conversational coding
203
45
  ```
204
46
 
205
- ### Agent Coordination
206
-
47
+ **Enable precision mode:**
207
48
  ```
208
- User: /modes spec
209
- [Work on feature planning]
210
- User: /agents kiro-master
211
- [Use kiro-master capabilities while in spec mode]
49
+ /strict on # Blocks on ambiguous input
212
50
  ```
213
51
 
214
- ## Key Benefits
52
+ ## How It Works
215
53
 
216
- **Minimal Initial Overhead**
217
- - Core system adds small context footprint
218
- - Agents created progressively as needed
219
- - Only load what you use
54
+ kiro-agents installs steering documents (markdown files with AI instructions) that extend Kiro's capabilities:
220
55
 
221
- **Reduced Cognitive Load**
222
- - Choice-based interactions
223
- - Visual progress tracking
224
- - Single focus per message
225
- - Clear context maintenance
56
+ - **Agents** - Stored in `.kiro/agents/{name}.md`, activated via `/agents {name}`
57
+ - **Modes** - Define interaction style (vibe = flexible, spec = structured)
58
+ - **Strict Mode** - Requires explicit clarification before execution
226
59
 
227
- **Flexible Workflows**
228
- - Switch between modes as needs change
229
- - Combine modes with agents
230
- - Adapt to your working style
60
+ All interactions use numbered choices to reduce cognitive load.
231
61
 
232
- **Extensible System**
233
- - Create custom agents for your needs
234
- - Define specialized workflows
235
- - Integrate with existing Kiro features
62
+ ## Use Cases
236
63
 
237
- ## Advanced Features
64
+ **Specialized Development:**
65
+ - Create agents for frontend, backend, testing, DevOps
66
+ - Each agent has domain-specific knowledge and workflows
67
+ - Switch agents based on current task
238
68
 
239
- ### Agent Coordination
69
+ **Workflow Flexibility:**
70
+ - Vibe mode for prototyping and exploration
71
+ - Spec mode for production features with formal requirements
72
+ - Combine modes with agents for maximum control
240
73
 
241
- Multiple agents can work together:
242
- - Handoff procedures between agents
243
- - Context sharing across agents
244
- - Conflict resolution protocols
245
- - Collaborative workflows
74
+ **Precision Work:**
75
+ - Enable strict mode for architectural decisions
76
+ - Prevents AI from making assumptions
77
+ - Forces explicit clarification on ambiguous requests
246
78
 
247
- ### Mode + Agent Combinations
79
+ ## Why kiro-agents?
248
80
 
249
- Modes and agents work together:
250
- - Agents inherit mode protocols
251
- - Mode workflows use agent capabilities
252
- - Context preserved across switches
81
+ Traditional AI assistants overwhelm you with context and options. kiro-agents:
82
+ - Starts minimal, grows with your needs
83
+ - Uses numbered choices instead of open-ended questions
84
+ - Maintains single focus per interaction
85
+ - Reduces decision fatigue during long sessions
253
86
 
254
- ## Contributing
87
+ ## Links
255
88
 
256
- This is an experimental system that relies on AI understanding and following instructions. Feedback and improvements welcome!
89
+ - [npm Package](https://www.npmjs.com/package/kiro-agents)
90
+ - [GitHub](https://github.com/Theadd/kiro-agents)
91
+ - [Kiro IDE](https://kiro.dev)
257
92
 
258
93
  ## License
259
94
 
260
95
  MIT
261
-
262
- ## Links
263
-
264
- - [GitHub Repository](https://github.com/theadd/kiro-agents)
265
- - [npm Package](https://www.npmjs.com/package/kiro-agents)
266
- - [Kiro IDE](https://kiro.dev)
package/package.json CHANGED
@@ -1,7 +1,15 @@
1
1
  {
2
2
  "name": "kiro-agents",
3
- "version": "1.3.0",
4
- "description": "AI agent system for Kiro IDE",
3
+ "version": "1.4.0",
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
+ "homepage": "https://github.com/Theadd/kiro-agents#readme",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/Theadd/kiro-agents.git"
9
+ },
10
+ "bugs": {
11
+ "url": "https://github.com/Theadd/kiro-agents/issues"
12
+ },
5
13
  "type": "module",
6
14
  "bin": {
7
15
  "kiro-agents": "build/npm/bin/cli.js"
@@ -24,7 +32,22 @@
24
32
  },
25
33
  "keywords": [
26
34
  "kiro",
27
- "ai-agents"
35
+ "kiro-ide",
36
+ "ai-agents",
37
+ "ai-assistant",
38
+ "agent-system",
39
+ "development-tools",
40
+ "ide-extension",
41
+ "ai-workflow",
42
+ "code-assistant",
43
+ "developer-productivity",
44
+ "steering-documents",
45
+ "ai-modes",
46
+ "strict-mode",
47
+ "vibe-mode",
48
+ "spec-mode",
49
+ "typescript",
50
+ "bun"
28
51
  ],
29
52
  "author": "R. Beltran",
30
53
  "license": "MIT",