Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.52 KB

File metadata and controls

38 lines (26 loc) · 1.52 KB

Agent Guidelines

Project

This repository contains reusable plugins and skills for code agents.

Structure

  • plugins/: agent plugins
  • skills/: reusable skills

Skill Location

  • Create the real skill in skills/<skill-name>/.
  • If the skill is inside a plugin, add a relative symlink at plugins/<plugin>/skills/<skill-name> that points to the shared skill directory.
  • Do not duplicate skill files inside a plugin. Plugins should reference skills through relative symlinks so the skill stays defined in one place.

Supported Install Paths

  • When editing install or release docs, keep the two main install paths aligned: universal skills install and Claude Code marketplace/plugins install.
  • Universal docs should mention skills.sh and npx skills add -g derogab/agent-kit.
  • Claude Code docs should mention adding the derogab/agent-kit marketplace, then installing the needed plugins.
  • If asked to change a Claude Code plugin version, update the matching version in .claude-plugin/marketplace.json.

Working Rules

  • Keep changes small and focused.
  • Follow the existing structure and wording style.
  • Skills must follow the official Agent Skills specification: https://agentskills.io/specification.
  • Prefer simple Markdown.
  • Update nearby docs when behavior or usage changes.
  • Do not add unrelated changes.

Checks

  • Read README.md and the nearest local README.md before editing.
  • If you change a plugin or skill, verify links, names, and examples still match.
  • Be sure related docs stay synced and updated.