A collection of custom skills for Claude Code to enhance your development workflow.
🧹 knip
Clean up knip issues in files you've touched. Filters knip output to your territory and interactively fixes unused imports/exports using an interactive plan mode workflow.
Use cases:
- Cleaning up after running knip on a large codebase
- Only fixing issues in files you've authored/modified
- Batch-fixing unused imports and exports
Usage: /knip
📝 standup
Generate daily standup updates by gathering activity from Jira and GitHub, then formatting it as concise bullet points ready to share with your team.
Use cases:
- Creating daily standup summaries
- Tracking your work across Jira and GitHub
- Quick standup report generation
Usage: /standup
- Create the skill directory:
mkdir -p ~/.claude/skills/<skill-name>- Download the skill file:
curl -o ~/.claude/skills/<skill-name>/SKILL.md \
https://raw.githubusercontent.com/sebkolind/skills/main/skills/<skill-name>.md- Register the skill in
~/.claude/settings.json:
{
"skills": [
"<skill-name>"
]
}knip:
mkdir -p ~/.claude/skills/knip && \
curl -o ~/.claude/skills/knip/SKILL.md \
https://raw.githubusercontent.com/sebkolind/skills/main/skills/knip.mdThen add "knip" to your ~/.claude/settings.json skills array.
standup:
mkdir -p ~/.claude/skills/standup && \
curl -o ~/.claude/skills/standup/SKILL.md \
https://raw.githubusercontent.com/sebkolind/skills/main/skills/standup.mdThen add "standup" to your ~/.claude/settings.json skills array.
Once installed, you can invoke skills by typing /skill-name in Claude Code:
/knip- Start the knip cleanup workflow/standup- Generate a standup update
knipinstalled in your project (npm install -D knip)pnpmpackage manager- Git repository with commit history
acli(Atlassian CLI) for Jira integration (optional)gh(GitHub CLI) for GitHub integration (optional)- At least one of the above tools installed
Have a useful skill to share? Feel free to open a PR! Please follow the existing format:
- Create a new
.mdfile in theskills/directory - Include YAML frontmatter with
name,description, andversion - Update this README with your skill in the "Available Skills" section
- Include clear usage instructions and requirements
MIT