diff --git a/.kiro/README.md b/.kiro/README.md index 924f8f2fe..65c187287 100644 --- a/.kiro/README.md +++ b/.kiro/README.md @@ -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 --- diff --git a/.kiro/steering/coding-style.md b/.kiro/steering/coding-style.md index 5fe2f0a5f..e972e9a47 100644 --- a/.kiro/steering/coding-style.md +++ b/.kiro/steering/coding-style.md @@ -1,5 +1,6 @@ --- inclusion: auto +name: coding-style description: Core coding style rules including immutability, file organization, error handling, and code quality standards. --- diff --git a/.kiro/steering/development-workflow.md b/.kiro/steering/development-workflow.md index d1d899549..ba29d83db 100644 --- a/.kiro/steering/development-workflow.md +++ b/.kiro/steering/development-workflow.md @@ -1,5 +1,6 @@ --- inclusion: auto +name: development-workflow description: Development workflow guidelines for planning, TDD, code review, and commit pipeline --- diff --git a/.kiro/steering/git-workflow.md b/.kiro/steering/git-workflow.md index 2f09a2033..56683a17b 100644 --- a/.kiro/steering/git-workflow.md +++ b/.kiro/steering/git-workflow.md @@ -1,5 +1,6 @@ --- inclusion: auto +name: git-workflow description: Git workflow guidelines for conventional commits and pull request process --- diff --git a/.kiro/steering/lessons-learned.md b/.kiro/steering/lessons-learned.md index b28c9e020..0c96707dd 100644 --- a/.kiro/steering/lessons-learned.md +++ b/.kiro/steering/lessons-learned.md @@ -1,5 +1,6 @@ --- inclusion: auto +name: lessons-learned description: Project-specific patterns, preferences, and lessons learned over time (user-editable) --- diff --git a/.kiro/steering/patterns.md b/.kiro/steering/patterns.md index 60a1b7607..9139aa03d 100644 --- a/.kiro/steering/patterns.md +++ b/.kiro/steering/patterns.md @@ -1,5 +1,6 @@ --- inclusion: auto +name: patterns description: Common design patterns including repository pattern, API response format, and skeleton project approach --- diff --git a/.kiro/steering/performance.md b/.kiro/steering/performance.md index c4733810e..a5638a34d 100644 --- a/.kiro/steering/performance.md +++ b/.kiro/steering/performance.md @@ -1,5 +1,6 @@ --- inclusion: auto +name: performance description: Performance optimization guidelines including model selection strategy, context window management, and build troubleshooting --- diff --git a/.kiro/steering/security.md b/.kiro/steering/security.md index d8ed830f6..335d2836d 100644 --- a/.kiro/steering/security.md +++ b/.kiro/steering/security.md @@ -1,5 +1,6 @@ --- inclusion: auto +name: security description: Security best practices including mandatory checks, secret management, and security response protocol. --- diff --git a/.kiro/steering/testing.md b/.kiro/steering/testing.md index af62e98d4..e3478e7c8 100644 --- a/.kiro/steering/testing.md +++ b/.kiro/steering/testing.md @@ -1,5 +1,6 @@ --- inclusion: auto +name: testing description: Testing requirements including 80% coverage, TDD workflow, and test types. ---