agentsclimarketplace

Contributing

Skill Dqz00116/skill-lib/contributing

Use when contributing new skills to the skill-lib repository, installing skills locally, or verifying skill compliance with repository standardsFrom its SKILL.md

Install
npx -y skills add Dqz00116/skill-lib --skill contributing

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

3 things to look at

  • 22 stars22 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • runs commandsInstructs the agent to run 7 commands, including `git clone https://github.com/Dqz00116/skill-lib.git /tmp/skill-lib` and 6 more.
  • fetches URLsInstructs the agent to fetch 2 URLs, including https://github.com/Dqz00116/skill-lib.git and 1 more.

SKILL.md

3.1 KB, 722 tokens by cl100k_base, as published. Nobody here has run it

Contributing to Skill-Lib

Guidelines for installing skills and contributing new ones to this repository.

Overview

Skill-Lib is a curated collection of reusable AI Agent Skills. Each skill follows the writing-skills standard with standardized frontmatter, structure, and content guidelines.

When to Use

  • Adding a new skill to this repository
  • Installing skills to your local workspace
  • Updating existing skills to meet repository standards
  • Understanding naming conventions and file structure requirements

Quick Reference

ActionCommand / Step
Install all skillsgit clone https://github.com/Dqz00116/skill-lib.git then copy directories
Install single skillDownload skill-name/SKILL.md to ~/workspace/skills/skill-name/
Add new skillCreate skill-name/SKILL.md following standards below
Update indexpython scripts/generate-summary.py --write

Installation

Install All Skills

git clone https://github.com/Dqz00116/skill-lib.git /tmp/skill-lib
mkdir -p ~/workspace/skills
cp -r /tmp/skill-lib/*/ ~/workspace/skills/
rm -rf /tmp/skill-lib

Install Single Skill

mkdir -p ~/workspace/skills/code-analysis
curl -o ~/workspace/skills/code-analysis/SKILL.md \
  https://raw.githubusercontent.com/Dqz00116/skill-lib/main/code-analysis/SKILL.md

Verify Installation

Each skill must contain:

skill-name/
└── SKILL.md          # Required

Optional: README.md, templates/, examples/, scripts/.

Contributing

Naming Conventions

ItemFormatExample
Directory namelowercase + hyphenscode-analysis
SKILL.md filenameuppercaseSKILL.md
name fieldmatches directorycode-analysis
descriptionstarts with Use when...Use when analyzing unfamiliar code

SKILL.md Standards

Required frontmatter:

---
name: skill-name
description: Use when [triggering conditions]
---

Required sections:

  • ## Overview — 1-2 sentence summary
  • ## When to Use — triggering conditions and anti-cases

Recommended sections:

  • ## Quick Reference — tables for scanning
  • ## Common Mistakes — what goes wrong and fixes

Content Guidelines

Must sanitize:

  • Remove specific project paths
  • Remove personal information
  • Remove company-specific code
  • Use generic examples

Submission Process

  1. Check for duplicate skills
  2. Create skill-name/SKILL.md following standards
  3. Sanitize all content
  4. Run python scripts/generate-summary.py --write to update index
  5. Submit via Pull Request

Common Mistakes

MistakeFix
Missing ## OverviewAdd 1-2 sentence summary after title
description describes workflowRewrite to start with Use when...
Directory name uses camelCaseUse lowercase + hyphens
Specific paths in examplesReplace with generic placeholders
Forgetting to update indexRun generate-summary.py --write

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.