fix(steering): add missing name attribute to auto-inclusion steering files (#2416)

* fix(steering): add missing name attribute to auto-inclusion steering files

* docs: include name attribute on steering file example

---------

Co-authored-by: Jucelio Brandao Goncalves Junior <jbgjunior@simpress.com.br>
This commit is contained in:
Jucélio Brandão Gonçalves Junior
2026-07-03 20:39:50 -07:00
committed by GitHub
co-authored by Jucelio Brandao Goncalves Junior
parent 0a926b45ba
commit 41599069c3
9 changed files with 9 additions and 0 deletions
+1
View File
@@ -188,6 +188,7 @@ To create your own, add a markdown file to `.kiro/steering/` with YAML frontmatt
```yaml
---
inclusion: auto # auto | fileMatch | manual
name: my-steering # required if inclusion is auto
description: Brief explanation of what this steering file contains
fileMatchPattern: "*.ts" # required if inclusion is fileMatch
---
+1
View File
@@ -1,5 +1,6 @@
---
inclusion: auto
name: coding-style
description: Core coding style rules including immutability, file organization, error handling, and code quality standards.
---
+1
View File
@@ -1,5 +1,6 @@
---
inclusion: auto
name: development-workflow
description: Development workflow guidelines for planning, TDD, code review, and commit pipeline
---
+1
View File
@@ -1,5 +1,6 @@
---
inclusion: auto
name: git-workflow
description: Git workflow guidelines for conventional commits and pull request process
---
+1
View File
@@ -1,5 +1,6 @@
---
inclusion: auto
name: lessons-learned
description: Project-specific patterns, preferences, and lessons learned over time (user-editable)
---
+1
View File
@@ -1,5 +1,6 @@
---
inclusion: auto
name: patterns
description: Common design patterns including repository pattern, API response format, and skeleton project approach
---
+1
View File
@@ -1,5 +1,6 @@
---
inclusion: auto
name: performance
description: Performance optimization guidelines including model selection strategy, context window management, and build troubleshooting
---
+1
View File
@@ -1,5 +1,6 @@
---
inclusion: auto
name: security
description: Security best practices including mandatory checks, secret management, and security response protocol.
---
+1
View File
@@ -1,5 +1,6 @@
---
inclusion: auto
name: testing
description: Testing requirements including 80% coverage, TDD workflow, and test types.
---