← Back to list

write-docs
by getsentry
For teams curious about token consumption of their coding agents.
⭐ 61🍴 4📅 Jan 23, 2026
SKILL.md
name: write-docs description: Create or update documentation pages for the Abacus docs site. Use when adding new documentation, updating existing pages, or ensuring docs stay in sync with code changes. Ensures pages follow Starlight patterns and build correctly. allowed-tools: Read, Grep, Glob, Edit, Write, Bash
Write Docs Skill
Create and maintain documentation for the Abacus docs site (Astro Starlight).
Before Starting
- Read existing pages in
docs/src/content/docs/to understand patterns - Check
docs/astro.config.mjsfor sidebar structure - Understand the section you're adding to (getting-started, providers, cli, deployment, development)
Workflow
Adding a New Page
- Create
.mdxfile in the appropriate directory - Add required frontmatter (see below)
- Use existing pages as reference for component usage
- Run
cd docs && pnpm buildto verify
Updating an Existing Page
- Read the current page first
- Make changes, preserving existing patterns
- Run
cd docs && pnpm buildto verify
Frontmatter
Every page requires:
---
title: Page Title
description: One-line description for SEO
sidebar:
order: 1 # Position within section
---
Key Rules
Links Must Include Base Path
Internal links need /abacus/ prefix (GitHub Pages requirement):
[Quick Start](/abacus/getting-started/quick-start/) ✓
[Quick Start](/getting-started/quick-start/) ✗
Import Components Before Use
import { Steps, Aside } from '@astrojs/starlight/components';
<Steps>
1. First step
2. Second step
</Steps>
<Aside type="tip">Helpful note</Aside>
Code Blocks Need Language Tags
```bash
pnpm cli sync
## Build Verification
**Always verify before committing:**
```bash
cd docs && pnpm build
Common errors:
- Missing imports
- Invalid frontmatter
- Broken links (wrong path or missing
/abacus/)
Style Guidelines
- Imperative mood ("Run this" not "You should run")
- Code examples over abstract descriptions
- Keep paragraphs short - users skim
- Tables for reference data (env vars, options)
Score
Total Score
65/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
1ヶ月以内に更新
+10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon
