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.
- Host: GitHub
- URL: https://github.com/dnd-mapp/agent-skills
- Owner: dnd-mapp
- License: mit
- Created: 2026-05-27T14:49:35.000Z (27 days ago)
- Default Branch: main
- Last Pushed: 2026-05-27T16:54:17.000Z (27 days ago)
- Last Synced: 2026-05-27T18:17:03.475Z (27 days ago)
- Topics: agent-skills, ai-agents, claude, claude-code, prompts, subagents
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 |