
Documentation Update
Regenerate marketplace agent-skills reference pages that list plugins, skills, and progressive-disclosure structure.
Install
npx skills add https://github.com/geoffjay/claude-plugins --skill documentation-updateWhat is this skill?
- Jinja-driven catalog over marketplace.plugins with per-skill name, description, and on-disk path
- Documents progressive disclosure: metadata frontmatter, instructions, on-demand assets/
- States Anthropic Agent Skills Specification compliance for listed skills
- Renders aggregate stats: total skills, total plugins, last updated timestamp
Adoption & trust: 1.5k installs on skills.sh; 8 GitHub stars; 3/3 security scanners passed (skills.sh audits).
Recommended Skills
Lark Doclarksuite/cli
Lark Wikilarksuite/cli
Opensource Guide Coachxixu-me/skills
Readme I18nxixu-me/skills
Doc Coauthoringanthropics/skills
Obsidian Markdownkepano/obsidian-skills
Journey fit
Primary fit
Primary shelf is Build/docs because output is the living skills catalog document agents and humans read while extending the plugin marketplace. docs subphase: templated SKILL.md catalog aligned to Anthropic Agent Skills Specification and per-plugin skill paths.
Common Questions / FAQ
Is Documentation Update safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Documentation Update
# Agent Skills Reference This document catalogs all agent skills with progressive disclosure patterns across the marketplace. ## Overview - **Total Skills**: {{ stats.total_skills }} - **Total Plugins**: {{ stats.total_plugins }} - **Last Updated**: {{ now }} --- ## What are Agent Skills? Agent skills are modular knowledge packages that use progressive disclosure architecture: 1. **Metadata** (Frontmatter) - Always loaded 2. **Instructions** - Core guidance loaded when activated 3. **Resources** (assets/) - Loaded on demand All skills follow the [Anthropic Agent Skills Specification](https://github.com/anthropics/skills/blob/main/agent_skills_spec.md). --- {% for plugin in marketplace.plugins %} ## {{ plugin.name }} **Description**: {{ plugin.description }} **Version**: {{ plugin.version }} {% if plugin.skills %} **Skills**: {% for skill in all_skills %} {% if skill.plugin == plugin.name %} ### {{ skill.name }} {{ skill.description }} **Location**: `plugins/{{ plugin.name }}/skills/{{ skill.path }}/` **Structure**: - `SKILL.md` - Skill definition with frontmatter - `assets/` - Templates, configurations, examples - `references/` - Additional documentation {% endif %} {% endfor %} {% else %} *No skills defined* {% endif %} --- {% endfor %} ## Progressive Disclosure Benefits - **Token Efficiency**: Load only relevant knowledge when needed - **Specialized Expertise**: Deep domain knowledge without bloat - **Clear Activation**: Explicit triggers prevent unwanted invocation - **Composability**: Mix and match skills across workflows - **Maintainability**: Isolated updates don't affect other skills ## Using Skills Skills are automatically invoked by agents when their trigger conditions are met. You can also manually invoke skills when needed for specific operations. --- *This documentation is automatically generated from the marketplace catalog.* *Last updated: {{ now }}* # Agent Reference This document provides a comprehensive reference of all agents available across plugins in the marketplace. ## Overview - **Total Agents**: {{ stats.total_agents }} - **Total Plugins**: {{ stats.total_plugins }} - **Last Updated**: {{ now }} --- {% for category, plugins in plugins_by_category.items() %} ## {{ category|title }} Agents {% for plugin in plugins %} ### {{ plugin.name }} **Description**: {{ plugin.description }} **Version**: {{ plugin.version }} {% if plugin.agents %} **Agents**: {% for agent in all_agents %} {% if agent.plugin == plugin.name %} #### {{ agent.name }} - **Model**: `{{ agent.model }}` - **Description**: {{ agent.description }} - **Location**: `plugins/{{ plugin.name }}/agents/{{ agent.file }}` {% endif %} {% endfor %} {% else %} *No agents defined* {% endif %} --- {% endfor %} {% endfor %} ## Usage To use an agent from the command line: ```bash # Invoke with Task tool Use Task tool with subagent_type="<agent-name>" ``` ## Model Distribution Agents are optimized for specific models based on their complexity: - **Haiku**: Fast execution for deterministic tasks - **Sonnet**: Complex reasoning and architecture decisions --- *This documentation is automatically generated from the marketplace catalog.* *Last updated: {{ now }}* # Plugin Directory Complete catalog of all plugins available in the marketplace. ## Overview - **Total Plugins**: {{ stats.total_plugins }} - **Total Agents**: {{ stats.total_agents }} - **Total Commands**: {{ stats.total_commands }} - **Total Skills**: {{ stats.total_skills }} - **Last Updated**: {{ now }} --- {% for category, plugins in plugins_by_category.items() %} ## {{ category|title }} {% for plugin in plugins %} ### {{ plugin.name }} {{ plugin.description }} **Version**: {{ plugin.version }} **Author**: {% if plugin.author %}{{ plugin.author.name }}{% else %}{{ marketplace.owner.name }}{% endif %} **License**: {{ plugin.license }} {% if plugin.keywords %} **Keywords**: {{ plugin.keywords|join(', ') }} {% endif %} **Components**: {% if