mirror of
https://github.com/Jeuners/ECC.git
synced 2026-09-09 15:02:30 +02:00
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:
parent
0a926b45ba
commit
41599069c3
9 changed files with 9 additions and 0 deletions
|
|
@ -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,5 +1,6 @@
|
|||
---
|
||||
inclusion: auto
|
||||
name: coding-style
|
||||
description: Core coding style rules including immutability, file organization, error handling, and code quality standards.
|
||||
---
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
inclusion: auto
|
||||
name: development-workflow
|
||||
description: Development workflow guidelines for planning, TDD, code review, and commit pipeline
|
||||
---
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
inclusion: auto
|
||||
name: git-workflow
|
||||
description: Git workflow guidelines for conventional commits and pull request process
|
||||
---
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
inclusion: auto
|
||||
name: lessons-learned
|
||||
description: Project-specific patterns, preferences, and lessons learned over time (user-editable)
|
||||
---
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
inclusion: auto
|
||||
name: patterns
|
||||
description: Common design patterns including repository pattern, API response format, and skeleton project approach
|
||||
---
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
inclusion: auto
|
||||
name: performance
|
||||
description: Performance optimization guidelines including model selection strategy, context window management, and build troubleshooting
|
||||
---
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
inclusion: auto
|
||||
name: security
|
||||
description: Security best practices including mandatory checks, secret management, and security response protocol.
|
||||
---
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
inclusion: auto
|
||||
name: testing
|
||||
description: Testing requirements including 80% coverage, TDD workflow, and test types.
|
||||
---
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue