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-04 00:39:50 -03:00 committed by GitHub
parent 0a926b45ba
commit 41599069c3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 9 additions and 0 deletions

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
---

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.
---

View file

@ -1,5 +1,6 @@
---
inclusion: auto
name: development-workflow
description: Development workflow guidelines for planning, TDD, code review, and commit pipeline
---

View file

@ -1,5 +1,6 @@
---
inclusion: auto
name: git-workflow
description: Git workflow guidelines for conventional commits and pull request process
---

View file

@ -1,5 +1,6 @@
---
inclusion: auto
name: lessons-learned
description: Project-specific patterns, preferences, and lessons learned over time (user-editable)
---

View file

@ -1,5 +1,6 @@
---
inclusion: auto
name: patterns
description: Common design patterns including repository pattern, API response format, and skeleton project approach
---

View file

@ -1,5 +1,6 @@
---
inclusion: auto
name: performance
description: Performance optimization guidelines including model selection strategy, context window management, and build troubleshooting
---

View file

@ -1,5 +1,6 @@
---
inclusion: auto
name: security
description: Security best practices including mandatory checks, secret management, and security response protocol.
---

View file

@ -1,5 +1,6 @@
---
inclusion: auto
name: testing
description: Testing requirements including 80% coverage, TDD workflow, and test types.
---