Skip to content

daneden/agent-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

agent-skills

A small, opinionated collection of Claude Code skills (also compatible with the Claude Agent SDK). Skills live under skills/; each subdirectory is one skill, defined by a SKILL.md file with YAML frontmatter.

What's here

Skill What it does
iterative-design For creative or aesthetic output where you can't pre-specify what you want — produces multiple low-fidelity variations early and converges on the user's reactions.
reference-interview Librarian-style clarification before answering vague or open-ended requests. Surfaces the real underlying need rather than the surface question.
ship End-to-end commit-and-push workflow with guards against shipping broken code, blanket-staging, formatter sweeps, fabricated values, and force-resolved pushes. Works in any repo — build systems, scripts, docs, or config.
swiftui-gotchas Reference catalog of SwiftUI, Swift Concurrency, SwiftData, WidgetKit, and App Intents antipatterns under Swift 6 / MainActor-default. Distilled from real corrections across multiple iOS codebases — animation scope, framework-first defaults, widget timeline constraints, Sendable services, and bisection over theorizing when stuck.

Install

Claude Code

Clone anywhere, then symlink each skill into ~/.claude/skills/:

git clone https://github.com/daneden/agent-skills ~/agent-skills
mkdir -p ~/.claude/skills
for d in ~/agent-skills/skills/*/; do
  name=$(basename "$d")
  [ -f "$d/SKILL.md" ] || continue
  ln -sf "$d" "$HOME/.claude/skills/$name"
done

To update later: git -C ~/agent-skills pull.

Claude Agent SDK

Point your agent at the skills/ directory; each subdirectory is a skill.

Contributing

These skills are tuned to how I work, but PRs to sharpen wording, fix bugs, or generalize triggers are welcome. Skills that are too personal or workplace-specific live in my dotfiles instead.

License

MIT

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors