From 9c1e6ef6d302c656f25daf7b681beec3924e80d4 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Wed, 15 Apr 2026 18:40:37 +0200 Subject: [PATCH] docs(coding-agent): fix nested code fences in skills docs --- packages/coding-agent/docs/skills.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/packages/coding-agent/docs/skills.md b/packages/coding-agent/docs/skills.md index 1753f3cc..746d549e 100644 --- a/packages/coding-agent/docs/skills.md +++ b/packages/coding-agent/docs/skills.md @@ -106,7 +106,7 @@ my-skill/ ### SKILL.md Format -```markdown +````markdown --- name: my-skill description: What this skill does and when to use it. Be specific. @@ -117,16 +117,16 @@ description: What this skill does and when to use it. Be specific. ## Setup Run once before first use: -\`\`\`bash +```bash cd /path/to/skill && npm install -\`\`\` +``` ## Usage -\`\`\`bash +```bash ./scripts/process.sh -\`\`\` ``` +```` Use relative paths from the skill directory: @@ -198,7 +198,7 @@ brave-search/ ``` **SKILL.md:** -```markdown +````markdown --- name: brave-search description: Web search and content extraction via Brave Search API. Use for searching documentation, facts, or any web content. @@ -208,23 +208,23 @@ description: Web search and content extraction via Brave Search API. Use for sea ## Setup -\`\`\`bash +```bash cd /path/to/brave-search && npm install -\`\`\` +``` ## Search -\`\`\`bash +```bash ./search.js "query" # Basic search ./search.js "query" --content # Include page content -\`\`\` +``` ## Extract Page Content -\`\`\`bash +```bash ./content.js https://example.com -\`\`\` ``` +```` ## Skill Repositories