From dc56bce3310751d3cabd2dbf9fd9fb329c3afd56 Mon Sep 17 00:00:00 2001 From: specterslient95-lgtm Date: Wed, 17 Jun 2026 14:37:25 +1000 Subject: [PATCH] fix(architecture-decision): add a top H1 for the skill itself MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The skill's first H1 was `# ADR-[NNNN]: [Title]` at line ~234 — which is the placeholder ADR title inside the template body the skill writes to disk, NOT a heading for the skill itself. So at the top of the file there was no rendered title at all; the file went directly into `## 0. Parse Arguments`. This patch inserts `# architecture-decision: write an Architecture Decision Record (ADR)` right after the frontmatter. The downstream `# ADR-[NNNN]: [Title]` placeholder (which is rendered inside the ADR template the skill emits) is unchanged. --- .claude/skills/architecture-decision/SKILL.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.claude/skills/architecture-decision/SKILL.md b/.claude/skills/architecture-decision/SKILL.md index 4ff25bc333..f6bef27da8 100644 --- a/.claude/skills/architecture-decision/SKILL.md +++ b/.claude/skills/architecture-decision/SKILL.md @@ -7,6 +7,8 @@ allowed-tools: Read, Glob, Grep, Write, Edit, Task, AskUserQuestion model: sonnet --- +# architecture-decision: write an Architecture Decision Record (ADR) + When this skill is invoked: ## 0. Parse Arguments — Detect Retrofit Mode