By ducva
Agentic document system — create, review, outline, and update Markdown and architecture docs with AI agents
A collection of reusable agent skills following the Agent Skills open standard. These skills are portable across any agent platform that supports the standard (Cursor, Claude Code, Codex, OpenCode, Gemini CLI, Amp, etc.).
Agent Skills is an open standard for extending AI agents with specialized capabilities. Skills package domain-specific knowledge and workflows that agents can use to perform specific tasks.
Learn more: Agent Skills Documentation | Cursor Skills Docs
Each skill is defined in a single SKILL.md file with YAML frontmatter:
skills/my-skill/
├── SKILL.md # Main skill definition with YAML frontmatter
├── scripts/ # Optional: Executable scripts
├── references/ # Optional: Detailed docs loaded on demand
└── assets/ # Optional: Templates, configs, data files
---
name: my-skill
description: What this skill does and when to use it.
disable-model-invocation: false
metadata:
version: "1.0.0"
author: ""
tags: []
---
# My Skill
## When to Use
- Use this skill when...
## Instructions
Step-by-step guidance for the agent.
Copy the template:
cp -r skills/_template skills/my_new_skill
Edit skills/my_new_skill/SKILL.md:
name field matches the folder name exactlyAdd optional directories as needed:
scripts/ - Executable code (bash, python, etc.)references/ - Detailed documentationassets/ - Templates, configs, data filesTest locally, then commit
Copy the skill directory to your agent's user-level skills directory:
# For Cursor
cp -r skills/markdown_crawl ~/.cursor/skills/
# For Claude Code
cp -r skills/markdown_crawl ~/.claude/skills/
# For Codex CLI
cp -r skills/markdown_crawl ~/.codex/skills/
Copy the skill directory to your project's skills directory:
# For Cursor
cp -r skills/markdown_crawl .cursor/skills/
# For Claude Code
cp -r skills/markdown_crawl .claude/skills/
# For Codex CLI
cp -r skills/markdown_crawl .codex/skills/
After installing, restart the agent CLI so it reloads skills.
Skills are automatically loaded from these locations:
| Location | Scope |
|---|---|
.cursor/skills/ | Project-level |
.claude/skills/ | Project-level (Claude compatibility) |
.codex/skills/ | Project-level (Codex compatibility) |
~/.cursor/skills/ | User-level (global) |
~/.claude/skills/ | User-level (global, Claude compatibility) |
~/.codex/skills/ | User-level (global, Codex compatibility) |
Fetch web content in markdown format using Cloudflare's "Markdown for Agents" feature. Tracks metrics like token savings and usage statistics.
Use when: Fetching web pages, documentation sites, or converting HTML to markdown.
Set up hooks and lifecycle configurations for multiple AI coding agent CLIs (Claude Code, Codex, OpenCode, Gemini CLI, and Amp).
Use when: Configuring automation, lifecycle events, or shared hook scripts across different agent platforms.
| Path | Description |
|---|---|
AGENTS.md | Project guidelines and conventions |
README.md | This file - project overview |
skills/ | Individual skill modules |
skills/_template/ | Starter template for new skills |
See AGENTS.md for:
skills/SKILL.md has valid YAML frontmattername field matches the folder name exactlyUses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub ducva/awesome-agents --plugin agentic-docsAgentic document system — create, review, outline, and update Markdown and architecture docs with AI agents
Generate and maintain AGENTS.md, copilot-instructions.md, and other agent rule files
Unified capability management center for Skills, Agents, and Commands.
Automatically detects and loads AGENTS.md files to provide agent-specific instructions alongside CLAUDE.md. Enables specialized agent behaviors without manual intervention.
Make a codebase agent-ready by scaffolding AGENTS.md, ARCHITECTURE.md, and docs/ structure following progressive disclosure patterns. Creates CLAUDE.md as a symlink for Claude Code compatibility.
Documentation and authoring workflow router: audit docs vs code drift, sync docs after changes, optimize prompts and SKILL.md files, validate GLFM and Markdown formatting, summarize files/URLs/images with fidelity enforcement. Use when: docs are out of date, CLAUDE.md needs improving, SKILL.md needs optimizing, checking if documentation matches code, summarizing files or URLs.
Tooling and developer productivity experts - CLI tools, documentation, README generation, and DX optimization