LLM skills

A curated collection of LLM skills and agents for enhancing coding workflows with Claude Code.

LLM skills

List of skills/agents/rules I use with Claude Code.

Most of the skills are copy-pasted from other great repos. Some of them are changed or created via Claude itself.

Prerequisites

Terminal

For kitty I recommend:

  • fzf - fuzzy search
  • bat - cat with syntax highlighting

CLI tools

Add instructions (rules/CLI.md) to use these tools:

  • jq - command-line JSON processor
  • ripgrep - recursively searches directories for a regex pattern while respecting your gitignore
  • fd - a simple, fast and user-friendly alternative to 'find'
  • ast-grep - is an abstract syntax tree based tool to search code by pattern code
  • shellcheck - ShellCheck, a static analysis tool for shell scripts
  • shfmt - A shell parser, formatter, and interpreter with bash support
  • wt - a CLI for git worktree management, designed for running AI agents in parallel
  • tmux - terminal multiplexer: it enables a number of terminals to be created, accessed, and controlled from a single screen
  • agent-browser - Browser automation CLI for AI agents
brew install jq ripgrep fd ast-grep shellcheck shfmt worktrunk tmux

brew install agent-browser
agent-browser install  # Download Chromium

agent browser

Read full documentation here. It uses Playwright.

agent-browser open <url>        # Navigate
agent-browser snapshot -i       # Get element refs (@e1, @e2)
agent-browser click @e1         # Click element
agent-browser fill @e2 "text"   # Fill input
agent-browser screenshot        # Capture screenshot

Install skills for claude:

/plugin marketplace add vercel-labs/agent-browser
/plugin install agent-browser@agent-browser

References