Skip to content

Commit a466607

Browse files
sjnimsclaude
andcommitted
fix: resolve markdownlint issues
- Convert bold pseudo-headings to proper headings - Fix heading level increments (h2→h3, not h2→h4) - Add blank lines around headings - Remove extra blank lines in README - Fix bare URL for email address 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 46b9fd4 commit a466607

7 files changed

Lines changed: 20 additions & 20 deletions

File tree

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,6 @@ Use this workflow for structured, high-quality plugin development from concept t
192192

193193
**Use when:** Creating new skills for plugins or improving existing skill quality.
194194

195-
196195
## Installation
197196

198197
Install from claude-code-marketplace:
@@ -223,7 +222,6 @@ cc --plugin-dir /path/to/plugin-dev
223222
- Ask: "Create a PreToolUse hook that validates file writes"
224223
- The hook-development skill gives working examples and utilities
225224

226-
227225
## Development Workflow
228226

229227
The plugin-dev toolkit supports your entire plugin development lifecycle:
@@ -391,7 +389,7 @@ This plugin is part of the claude-code-marketplace. To contribute improvements:
391389

392390
## Author
393391

394-
Daisy Hollman (daisy@anthropic.com)
392+
Daisy Hollman (<daisy@anthropic.com>)
395393

396394
## License
397395

plugins/plugin-dev/commands/create-plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,4 +422,4 @@ Every component must meet these standards:
422422

423423
---
424424

425-
**Begin with Phase 1: Discovery**
425+
Begin with Phase 1: Discovery.

plugins/plugin-dev/skills/command-development/references/testing-strategies.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ EOF
298298

299299
**Test scenarios:**
300300

301-
**Scenario 1: Command + Hook Integration**
301+
#### Scenario 1: Command + Hook Integration
302302

303303
```bash
304304
# Setup: Command that triggers a hook
@@ -311,7 +311,7 @@ EOF
311311
# Verify: Hook executes and validates before command completes
312312
```
313313

314-
**Scenario 2: Command Sequence**
314+
#### Scenario 2: Command Sequence
315315

316316
```bash
317317
# Setup: Multi-command workflow
@@ -325,7 +325,7 @@ EOF
325325
# Verify: State file cleaned up
326326
```
327327

328-
**Scenario 3: Command + MCP Integration**
328+
#### Scenario 3: Command + MCP Integration
329329

330330
```bash
331331
# Setup: Command uses MCP tools
@@ -643,7 +643,7 @@ Before releasing a command:
643643

644644
### Common Issues and Solutions
645645

646-
**Issue: Command not appearing in /help**
646+
#### Issue: Command not appearing in /help
647647

648648
```bash
649649
# Check file location
@@ -659,7 +659,7 @@ head -n 20 .claude/commands/my-command.md
659659
claude --debug
660660
```
661661

662-
**Issue: Arguments not substituting**
662+
#### Issue: Arguments not substituting
663663

664664
```bash
665665
# Verify syntax
@@ -670,7 +670,7 @@ grep '\$ARGUMENTS' .claude/commands/my-command.md
670670
echo "Test: \$1 and \$2" > .claude/commands/test-args.md
671671
```
672672

673-
**Issue: Bash commands not executing**
673+
#### Issue: Bash commands not executing
674674

675675
```bash
676676
# Check allowed-tools
@@ -684,7 +684,7 @@ date
684684
echo "test"
685685
```
686686

687-
**Issue: File references not working**
687+
#### Issue: File references not working
688688

689689
```bash
690690
# Check @ syntax

plugins/plugin-dev/skills/hook-development/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ All matching hooks run **in parallel**:
533533

534534
Create hooks that activate conditionally by checking for a flag file or configuration:
535535

536-
**Pattern: Flag file activation**
536+
### Pattern: Flag file activation
537537

538538
```bash
539539
#!/bin/bash
@@ -550,7 +550,7 @@ input=$(cat)
550550
# ... validation logic ...
551551
```
552552

553-
**Pattern: Configuration-based activation**
553+
### Pattern: Configuration-based activation
554554

555555
```bash
556556
#!/bin/bash

plugins/plugin-dev/skills/mcp-integration/references/tool-usage.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,8 @@ Steps:
314314

315315
### Batching Requests
316316

317-
**Good: Single query with filters**
317+
#### Good: Single query with filters
318+
318319
```markdown
319320
Steps:
320321
1. Call mcp__plugin_api_server__search with filters:
@@ -324,7 +325,8 @@ Steps:
324325
2. Process all results
325326
```
326327

327-
**Avoid: Many individual queries**
328+
#### Avoid: Many individual queries
329+
328330
```markdown
329331
Steps:
330332
1. For each item ID:

plugins/plugin-dev/skills/plugin-settings/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Contact @team-lead with questions.
6161

6262
### From Hooks (Bash Scripts)
6363

64-
**Pattern: Check existence and parse frontmatter**
64+
#### Pattern: Check existence and parse frontmatter
6565

6666
```bash
6767
#!/bin/bash

plugins/plugin-dev/skills/skill-development/references/skill-creation-workflow.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ After testing the skill, users may request improvements. Often this happens righ
182182
- Pointers to references/examples/scripts
183183
- Most common use cases
184184

185-
**Keep under 3,000 words, ideally 1,500-2,000 words**
185+
Keep under 3,000 words, ideally 1,500-2,000 words.
186186

187187
### What Goes in references/
188188

@@ -194,7 +194,7 @@ After testing the skill, users may request improvements. Often this happens righ
194194
- Edge cases and troubleshooting
195195
- Extensive examples and walkthroughs
196196

197-
**Each reference file can be large (2,000-5,000+ words)**
197+
Each reference file can be large (2,000-5,000+ words).
198198

199199
### What Goes in examples/
200200

@@ -205,7 +205,7 @@ After testing the skill, users may request improvements. Often this happens righ
205205
- Template files
206206
- Real-world usage examples
207207

208-
**Users can copy and adapt these directly**
208+
Users can copy and adapt these directly.
209209

210210
### What Goes in scripts/
211211

@@ -216,7 +216,7 @@ After testing the skill, users may request improvements. Often this happens righ
216216
- Parsing utilities
217217
- Automation scripts
218218

219-
**Should be executable and documented**
219+
Should be executable and documented.
220220

221221
## Writing Style Guide
222222

0 commit comments

Comments
 (0)