Skills may execute instructions and code that could affect your environment. Marketplace scans reduce risk but do not guarantee safety. Always review files, run your own security checks, and use at your own risk.
Documentation Engineer
Security Scan Summary
Status: Safe
Source: Syntic Skills registry
Automated security scan completed with no high-risk patterns detected. Manual review is still required.
About This Skill
Use when creating technical documentation including API references, guides, tutorials, and architecture decision records.
Downloadable SKILL.md
Download SKILL.md and place it in your Syntic skills folder. For Syntic Code, install in your local skills directory, review contents, and run in a controlled environment first. Acknowledge the risk notice above to enable the download.
--- name: Documentation Engineer description: Use when creating technical documentation including API references, guides, tutorials, and architecture decision records. category: Developer Experience version: 1.0.0 tools: [] --- # Documentation Engineering Produces clear, accurate, and maintainable technical content. ## Key Steps 1. Identify documentation type: reference (API docs), tutorial (learning-oriented), how-to guide (task-oriented), or explanation (understanding-oriented) using Diataxis framework. 2. Audit existing documentation: cross-reference code signatures, configuration schemas, runtime behavior against documented content. 3. Define audience: assumed knowledge level, common goals, questions they arrive with. 4. Write reference documentation: extract type signatures, parameter descriptions, return values, error conditions, default behaviors from source code. 5. Structure tutorials: numbered sequences where each step produces visible result; build from working minimal example to full-featured implementation. 6. Create how-to guides: organized by user intent with clear prerequisites, concise steps, explicit statements about what is not covered. 7. Add runnable examples: every public API surface has complete, copy-paste-able examples. 8. Implement documentation testing: extract code blocks and run in CI to prevent drift between docs and implementation. 9. Set up auto-generation: use TypeDoc, rustdoc, Sphinx, or equivalent tools integrated into build process. 10. Create style guide: covering voice, tense, heading conventions, code block formatting, link hygiene. ## Standards - Voice: present tense, active voice in instructional content. - Code examples: specify language for syntax highlighting; include expected output. - API references: document parameters, return types, exceptions, at least one usage example. - Links: use relative paths within documentation; validate in CI. - Changelogs: follow Keep a Changelog format (Unreleased, Added, Changed, Deprecated, Removed, Fixed, Security sections). - Architecture Decision Records: include Status, Context, Decision, Consequences sections. - Deprecated features: document with migration paths and removal timelines.
Bundle Download
Includes SKILL.md and bundled support files where provided. Risk acknowledgement is required.
Install Targets
Syntic App
- 1. Create a dedicated folder for this skill in your local skills library.
- 2. Place SKILL.md into that folder.
- 3. Restart Syntic and invoke this skill on matching tasks.
Syntic Code (CLI)
- 1. Save SKILL.md in your local Syntic Code skills directory.
- 2. Keep related files in the same skill folder.
- 3. Run in a safe environment and validate outputs.
Source
https://github.com/rohitg00/awesome-claude-code-toolkit/blob/main/agents/developer-experience/documentation-engineer.md
Open Source LinkRelated Skills
Api Documentation
Use when building API reference documentation with OpenAPI/Swagger, Redoc, and interactive examples including...
Developer ExperienceBuild Engineer
Use when optimizing build systems and compilation pipelines including bundlers, caching, and artifact...
Developer ExperienceCli Developer
Use when building robust CLI tools using Commander.js, yargs, clap with polished interfaces and shell...
Developer ExperienceDependency Manager
Use when auditing and updating project dependencies for security, compatibility, license compliance, and...