kiro-agents 1.6.1 → 1.7.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.
- package/README.md +9 -6
- package/package.json +3 -1
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
|
-
|
|
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
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kiro-agents",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
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",
|