plugins marketplace
← All plugins

ekline-docs-skills

v3.0.1

Open-source documentation & technical-writing skills. Vendor-neutral core — style, terminology, link checks, coverage, changelogs — plus optional EkLine power-ups.

CodexClaude Code6 skills

by EkLineMIT2updated 1 month ago

Source

git clone https://github.com/ekline-io/ekline-docs-skills

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

ekline-docs-skills/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/changelog/SKILL.md
├── skills/check-links/SKILL.md
├── skills/docs-coverage/SKILL.md
├── skills/review-docs/SKILL.md
├── skills/style-guide/SKILL.md
└── skills/terminology/SKILL.md

Skills6

changelogskills/changelog/SKILL.md

Generate a structured changelog entry from git history. Runs a helper script that analyzes commits and categorizes them (Added, Changed, Fixed, Removed, Security, Breaking Changes). Presents results in Keep a Changelog format. Use before a release or to catch up on missing entries.

check-linksskills/check-links/SKILL.md

Scan documentation files for broken internal links, missing anchors, and optionally validate external URLs. Runs a helper script that extracts all links, validates them, and reports broken links with suggestions. Use before publishing docs or as a periodic health check.

docs-coverageskills/docs-coverage/SKILL.md

Measure documentation coverage by scanning your codebase for exported functions, classes, API endpoints, and CLI commands, then checking if docs exist. Runs a helper script that reports coverage percentage, breakdowns by type and directory, and lists undocumented items. Supports TypeScript/JavaScript, Python, and Go.

review-docsskills/review-docs/SKILL.md

Run EkLine Docs Reviewer on documentation files and apply the recommended fixes. Use this skill when reviewing technical documentation for style and best practices, or after creating or writing technical documentation.

style-guideskills/style-guide/SKILL.md

Enforces documentation style, voice, and tone consistency. Validates against style rules and existing documentation patterns. Run this skill proactively whenever documentation files (.md, .mdx, .rst, .adoc, .txt, .html) are created or modified.

terminologyskills/terminology/SKILL.md

Ensures consistent language and terminology across all documentation. Checks terms against terminology rules and flags inconsistencies. Run this skill proactively whenever documentation files (.md, .mdx, .rst, .adoc, .txt, .html) are created or modified.

Manifests2

.codex-plugin/plugin.json
{
  "name": "ekline-docs-skills",
  "version": "3.0.1",
  "description": "Open-source documentation & technical-writing skills. Vendor-neutral core — style, terminology, link checks, coverage, changelogs — plus optional EkLine power-ups.",
  "skills": "./skills/",
  "author": {
    "name": "EkLine",
    "email": "support@ekline.io",
    "url": "https://ekline.io"
  },
  "homepage": "https://github.com/ekline-io/ekline-docs-skills",
  "repository": "https://github.com/ekline-io/ekline-docs-skills",
  "license": "MIT",
  "keywords": [
    "documentation",
    "technical-writing",
    "docs",
    "linting",
    "skills"
  ],
  "interface": {
    "displayName": "EkLine Docs Skills",
    "shortDescription": "Documentation & technical-writing skills for your coding agent",
    "category": "Productivity"
  }
}
.claude-plugin/plugin.json
{
  "name": "ekline-docs-skills",
  "description": "Open-source documentation & technical-writing skills for AI coding tools. Vendor-neutral core — style, terminology, link checks, coverage, changelogs — plus optional EkLine power-ups.",
  "version": "3.0.1",
  "author": {
    "name": "EkLine",
    "email": "support@ekline.io"
  },
  "category": "documentation"
}