skills
npx skills add https://github.com/nathanfaucett/agents --skill openai-reusable-promptsInstallez cette compétence avec la CLI et commencez à utiliser le flux de travail SKILL.md dans votre espace de travail.
This repository contains local agent definitions under agents/, local skills
under skills/, and instructions under instructions/.
# Claude:
ln -sf $PWD/instructions/CLAUDE.md ~/.claude/CLAUDE.md
# VSCode Copilot:
ln -sf $PWD/instructions/copilot-instructions.md ~/.copilot/copilot-instructions.md
# Cursor:
mkdir -p ~/.cursor/rules
ln -sf $PWD/instructions/cursor-instructions.mdc ~/.cursor/rules/agents.mdc
Current local agents:
architecturecode-qa-engineercode-reviewerdevops-engineerperformance-engineerprincipal-engineerresearcher-engineersecurity-engineerux-engineerNote: Keep this list in sync with the agents/ directory or generate it from the filesystem.
Link all local agents into ~/.claude/agents:
mkdir -p ~/.claude/agents
for f in agents/*.agent.md; do
ln -sf "$PWD/$f" "$HOME/.claude/agents/$(basename "$f")"
done
Current local skills:
change-review: Provides a structured code review of a proposed change, including feedback on correctness, style, maintainability, and potential impacts.github-actions: Provides best practices and guidance for GitHub Actions workflow design, review, and troubleshooting. Use when you need correct, secure, and maintainable CI/CD workflow recommendations.openai-reusable-prompts: Designs and improves prompt best practices and formatting structure for OpenAI use cases. Use when you need clear, consistent prompt templates, stronger instruction writing, and better formatted prompt sections.poc: Produces a focused proof-of-concept plan, feasibility assessment, and minimal experiment artifacts for a feature, integration, or architectural approach.refactor: Refactor code to improve its structure, readability, and maintainability without changing its external behavior.review: Review or analyze something, such as a document, code, or data, to provide feedback, identify issues, or suggest improvements.rewrite: Performs a structured, opinionated, and safety-conscious full rewrite that intentionally introduces breaking changes.Install all local skills:
for d in skills/*/; do
npx skills add "./${d%/}" --global --symlink -y
done
for skill in \
mattpocock/skills/caveman \
mattpocock/skills/grill-me \
mattpocock/skills/improve-codebase-architecture \
mattpocock/skills/to-issues \
mattpocock/skills/to-prd \
mattpocock/skills/tdd \
mattpocock/skills/ubiquitous-language \
vercel-labs/agent-skills/skills/web-design-guidelines
do
npx skills add "$skill" --global --symlink -y
done