A collection of skills for AI coding agents. Skills are packaged instructions and references that extend agent capabilities. Built for Claude Code and compatible with the Agent Skills format.
Create GitHub issues by fetching field definitions from your repo's issue templates at runtime. Define lightweight JSON configs — the skill handles template parsing, conversational information gathering, issue composition, and creation.
- Supports both YAML form-based (
.yml) and frontmatter + markdown (.md) GitHub issue templates - Configurable defaults, conditional labels, assignee rules, and field skip conditions
- Conversational gathering — batches related questions, applies defaults, skips irrelevant fields
- Preview and confirm before creation
Use cases: "Create a bug ticket", "File an accessibility review", "Make a new issue for the login feature"
Install all skills:
npx skills add dfitchett/agent-skillsInstall a single skill:
npx skills add dfitchett/agent-skills --skill github-issue-from-templates_note: sometimes Claude code has issues finding the skill due to the locations skills are installed from the tool call above. To install specifically for Claude Code, install via:
npx skills add dfitchett/agent-skills --skill github-issue-from-templates -a claude-codeSkills are triggered automatically by keyword matching or can be invoked directly:
/github-issue-from-templates
Or just describe what you need:
"Create a bug ticket for the search feature returning stale results"
"File an accessibility review for the new modal component"
"I need a ticket to track the API migration work"
Each skill follows the Agent Skills format:
skill-name/
└── SKILL.md # Required Instructions and workflow for the agent
references/ # Schemas, examples, and reference material
...MIT