An open API service indexing awesome lists of open source software.

https://github.com/dnd-mapp/agent-skills

Reusable Claude Code skills, sub-agents, and configurations for AI-assisted development workflows.
https://github.com/dnd-mapp/agent-skills

agent-skills ai-agents claude claude-code prompts subagents

Last synced: 20 days ago
JSON representation

Reusable Claude Code skills, sub-agents, and configurations for AI-assisted development workflows.

Awesome Lists containing this project

README

          

# agent-skills

Reusable agent skills for AI-assisted development workflows.

## Requirements

- Node.js ≥ 18

## Install

```sh
# Install all skills (auto-detects your agent)
npx skills add dnd-mapp/agent-skills

# Install globally (available across all projects)
npx skills add dnd-mapp/agent-skills -g

# Install a specific skill
npx skills add dnd-mapp/agent-skills --skill commit
```

For more options, supported agents, and uninstall/update instructions, see the [`skills`](https://npmx.dev/package/skills) package.

## Skills

| Skill | Description |
|:-------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------|
| [commit](skills/commit/SKILL.md) | Groups working-tree changes into Conventional Commits |
| [create-branch](skills/create-branch/SKILL.md) | Infers a branch name from changes and creates it |
| [configure-issue-tracker](skills/configure-issue-tracker/SKILL.md) | Configures issue tracking — local, GitHub Issues, or GitHub Projects |
| [create-issues](skills/create-issues/SKILL.md) | Extracts action items from conversation and codebase, creates Issues in the configured Tracker Backend |
| [pull-request](skills/pull-request/SKILL.md) | Pushes the current branch and creates a GitHub Pull Request, auto-filling any detected PR template |