Skip to content

sebkolind/skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

Claude Code Skills

A collection of custom skills for Claude Code to enhance your development workflow.

Available Skills

🧹 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


Installation

Installing a Skill

  1. Create the skill directory:
mkdir -p ~/.claude/skills/<skill-name>
  1. Download the skill file:
curl -o ~/.claude/skills/<skill-name>/SKILL.md \
  https://raw.githubusercontent.com/sebkolind/skills/main/skills/<skill-name>.md
  1. Register the skill in ~/.claude/settings.json:
{
  "skills": [
    "<skill-name>"
  ]
}

Quick Install Examples

knip:

mkdir -p ~/.claude/skills/knip && \
curl -o ~/.claude/skills/knip/SKILL.md \
  https://raw.githubusercontent.com/sebkolind/skills/main/skills/knip.md

Then 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.md

Then add "standup" to your ~/.claude/settings.json skills array.

Usage

Once installed, you can invoke skills by typing /skill-name in Claude Code:

  • /knip - Start the knip cleanup workflow
  • /standup - Generate a standup update

Requirements

knip

  • knip installed in your project (npm install -D knip)
  • pnpm package manager
  • Git repository with commit history

standup

  • acli (Atlassian CLI) for Jira integration (optional)
  • gh (GitHub CLI) for GitHub integration (optional)
  • At least one of the above tools installed

Contributing

Have a useful skill to share? Feel free to open a PR! Please follow the existing format:

  1. Create a new .md file in the skills/ directory
  2. Include YAML frontmatter with name, description, and version
  3. Update this README with your skill in the "Available Skills" section
  4. Include clear usage instructions and requirements

License

MIT

Author

@sebkolind

About

A collection of SKILLS to enhance my workflow. Feel free to use & contribute!

Topics

Resources

Stars

Watchers

Forks

Contributors