Skip to content

Commit b2d1a81

Browse files
committed
fix: allow subagents and skills in kiro configurator
1 parent 455973f commit b2d1a81

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

packages/cli/src/config-generator.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,11 +178,13 @@ class KiroConfigGenerator extends ConfigGenerator {
178178
'knowledge',
179179
'thinking',
180180
'use_aws',
181+
'subagent',
181182
'@workflows',
182183
],
183184
allowedTools: [
184185
'fs_read',
185186
'fs_write',
187+
'subagent',
186188
'@workflows/whats_next',
187189
'@workflows/conduct_review',
188190
'@workflows/list_workflows',
@@ -204,7 +206,11 @@ class KiroConfigGenerator extends ConfigGenerator {
204206
],
205207
},
206208
},
207-
resources: ['file://README.md', 'file://.kiro/rules/**/*.md'],
209+
resources: [
210+
'file://README.md',
211+
'file://.kiro/rules/**/*.md',
212+
'skill://.kiro/skills/**/SKILL.md',
213+
],
208214
hooks: {},
209215
};
210216

0 commit comments

Comments
 (0)