Skip to content

Commit c32b103

Browse files
sjnimsclaude
andauthored
fix: add missing code block markers in agent Output Format sections (#114)
## Summary Adds opening code block markers to the Output Format template sections in two agent files that were missing them, fixing markdown rendering issues. ## Problem Fixes #111 Two agent files (`agent-creator.md` and `skill-reviewer.md`) had Output Format sections with closing ` ``` ` markers but no opening markers. This caused the output templates to be rendered as actual markdown rather than displayed as code examples for the agent to follow. ## Solution Added opening ` ```markdown ` markers to properly wrap the Output Format template sections as code blocks. ### Why This Approach - **Minimal change**: Only 2 lines added total (1 per file) - **Pattern-consistent**: Matches the properly-formatted code blocks in `plugin-validator.md` - **Verifiable**: markdownlint passes with no errors ### Alternatives Considered 1. **Restructure entire Output Format sections** - Rejected as over-engineering for a simple missing marker 2. **Remove closing markers instead** - Would lose the template formatting entirely ## Changes | File | Change | |------|--------| | `plugins/plugin-dev/agents/agent-creator.md` | Added ` ```markdown ` before line 145 | | `plugins/plugin-dev/agents/skill-reviewer.md` | Added ` ```markdown ` before line 109 | ## Testing - [x] markdownlint passes on both files - [x] Verified code blocks now properly open and close - [x] `plugin-validator.md` unaffected (already correct) --- 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <noreply@anthropic.com>
1 parent 3714ae2 commit c32b103

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

plugins/plugin-dev/agents/agent-creator.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ When a user describes what they want an agent to do, you will:
142142
**Output Format:**
143143
Create agent file, then provide summary:
144144

145+
```markdown
145146
## Agent Created: [identifier]
146147

147148
### Configuration

plugins/plugin-dev/agents/skill-reviewer.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ You are an expert skill architect specializing in reviewing and improving Claude
106106

107107
**Output Format:**
108108

109+
```markdown
109110
## Skill Review: [skill-name]
110111

111112
### Summary

0 commit comments

Comments
 (0)