From 41599069c381b9c7997abeeaeb1a5c6bce42901f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juc=C3=A9lio=20Brand=C3=A3o=20Gon=C3=A7alves=20Junior?= Date: Sat, 4 Jul 2026 00:39:50 -0300 Subject: [PATCH] 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 --- .kiro/README.md | 1 + .kiro/steering/coding-style.md | 1 + .kiro/steering/development-workflow.md | 1 + .kiro/steering/git-workflow.md | 1 + .kiro/steering/lessons-learned.md | 1 + .kiro/steering/patterns.md | 1 + .kiro/steering/performance.md | 1 + .kiro/steering/security.md | 1 + .kiro/steering/testing.md | 1 + 9 files changed, 9 insertions(+) diff --git a/.kiro/README.md b/.kiro/README.md index 924f8f2f..65c18728 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 5fe2f0a5..e972e9a4 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 d1d89954..ba29d83d 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 2f09a203..56683a17 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 b28c9e02..0c96707d 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 60a1b760..9139aa03 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 c4733810..a5638a34 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 d8ed830f..335d2836 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 af62e98d..e3478e7c 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. ---