kiro-agents 1.2.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.
- package/README.md +56 -227
- package/build/npm/dist/agent-system.md +44 -281
- package/build/npm/dist/agents.md +165 -132
- package/build/npm/dist/modes-system.md +22 -199
- package/build/npm/dist/protocols/agent-activation.mdx +50 -0
- package/build/npm/dist/protocols/mode-switching.mdx +84 -0
- package/package.json +26 -3
package/package.json
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kiro-agents",
|
|
3
|
-
"version": "1.
|
|
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
|
-
"
|
|
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",
|