Write and review XML API documentation for SkiaSharp following .NET guidelines. Triggers: "document class", "add XML docs", "write XML documentation", "add triple-slash comments", "review documentation quality", "check docs for errors", "fix doc issues", "fill in missing docs", "remove To be added placeholders", API documentation requests.
Resources
1Install
npx skillscat add mono/skiasharp/api-docs Install via the SkillsCat registry.
API Documentation
Write and review XML API documentation for SkiaSharp.
Key Concepts
- The
docs/directory is a Git submodule pointing to `mono/SkiaSharp-API-docs` — changes must be committed and PR'd to that repository - XML files are generated from NuGet assemblies using
mdoc— if new APIs were added, regenerate before editing (see Regenerating Docs) - For existing APIs, you can edit the XML files directly without regenerating
File Locations
docs/SkiaSharpAPI/
├── SkiaSharp/ # Main namespace
│ ├── SKCanvas.xml # One XML file per type
│ ├── SKPaint.xml
│ ├── SKImage.xml
│ └── ...
├── HarfBuzzSharp/ # HarfBuzz namespace
├── SkiaSharp.Views.*/ # Platform-specific views
└── index.xml # Extension methods (auto-synced, don't edit)Writing Documentation
- Find the type's XML file in
docs/SkiaSharpAPI/<Namespace>/<TypeName>.xml - Edit
<summary>,<param>,<returns>,<value>tags within<Docs>sections - Follow patterns in references/patterns.md
- After editing a file, validate XML syntax (see XML Validation below)
- Run
dotnet cake --target=docs-format-docsto validate and format
Reviewing Documentation
- Search for issues using grep patterns below
- Classify by severity using references/checklist.md
- Fix issues following references/patterns.md
- Run
dotnet cake --target=docs-format-docsto validate
Quick Issue Search
# Find placeholders
grep -r "To be added" docs/SkiaSharpAPI/
# Find empty tags (self-closing)
grep -rE "<(summary|value|returns)\s*/>" docs/SkiaSharpAPI/
# Find empty tags (open/close with optional whitespace)
grep -rE "<(summary|value|returns)>\s*</" docs/SkiaSharpAPI/
# Find spelling errors (common ones)
grep -riE "teh|recieve|seperate|occured|paramter" docs/SkiaSharpAPI/
# Find whitespace issues
grep -rE " </| </" docs/SkiaSharpAPI/Resources
- references/patterns.md - XML syntax and examples
- references/checklist.md - Review severity criteria
- documentation/writing-docs.md - Full docs generation workflow (automated pipeline, local generation, cake targets)
Regenerating Docs
When new APIs have been added (new classes, methods, properties), the XML doc files must be regenerated before you can document them. A daily GitHub Actions workflow does this automatically from the latest CI NuGet packages.
To regenerate locally (e.g., after adding new APIs):
dotnet tool restore
dotnet cake --target=docs-download-output # Download latest NuGets
dotnet cake --target=update-docs # Regenerate XML docsNew members will appear with "To be added." placeholders. See documentation/writing-docs.md for full details.
To edit existing docs (no regeneration needed): just edit the XML files directly and run dotnet cake --target=docs-format-docs to format and validate.
XML Validation
CRITICAL: After completing all edits to an XML file, validate its XML syntax before moving to the next file.
Validation Command
# Validate a single file
xmllint --noout docs/SkiaSharpAPI/SkiaSharp/SKCanvas.xml
# Validate all XML files in a namespace
find docs/SkiaSharpAPI/SkiaSharp -name "*.xml" -exec xmllint --noout {} \;
# Validate entire docs directory
find docs/SkiaSharpAPI -name "*.xml" -exec xmllint --noout {} \;Common XML Errors to Avoid
- Duplicate closing tags:
</param></param>- happens when copy/pasting - Mismatched tags:
<summary>...</param>- tag names must match - Unescaped characters:
<,>,&must be<,>,& - Missing closing tags:
<summary>textwithout</summary>
Workflow
- Make all edits to a file
- Run
xmllint --noout <file>to validate - If errors, fix them before proceeding
- Move to next file