Custom skills, commands, and configurations for Claude Code - Anthropic's official CLI for Claude.
Skills extend Claude's capabilities with specialized knowledge, workflows, and domain expertise. Each skill provides context and instructions that activate automatically based on user needs.
| Skill | Description |
|---|---|
| Amar RPG | Campaign world mythology, kingdom lore, 3-tier game system, adventure/NPC generation |
| HyperList | Hierarchical list format (.hl files), syntax, PDF/HTML conversion |
| Lovdata | Norwegian legal database navigation and citation |
| XRPN | Stack-based programming, HP-41 FOCAL compatibility |
| Skill | Description |
|---|---|
| rcurses | Ruby TUI library for terminal interfaces |
| rsh | Ruby SHell project knowledge: architecture, config, tab completion, release workflow |
| x86_64-asm | x86_64 Linux assembly (NASM, pure syscalls), terminal I/O, mmap, X11 wire protocol |
| mcp-builder | Building MCP (Model Context Protocol) servers in Python or TypeScript |
| skill-creator | Guide for creating new Claude Code skills |
| skill-developer | Advanced skill development with hooks and triggers |
| webapp-testing | Playwright-based web application testing |
| Skill | Description |
|---|---|
| PDF manipulation: extract, create, merge, split, forms | |
| PPTX | PowerPoint creation, editing, OOXML structure |
| DOCX | Word documents: creation, editing, tracked changes, comments |
| XLSX | Excel spreadsheets with formulas, formatting, analysis |
| Skill | Description |
|---|---|
| Music Composer | Music theory, composition, arrangement, orchestration |
| Ralph Wiggum | Iterative self-improving AI development loops |
Slash commands for quick actions in Claude Code. Install to ~/.claude/commands/.
| Command | Description |
|---|---|
/bm | Bookmark current session with tags (requires CC-sessions) |
/rel | Ruby gem release workflow |
/chrome | Launch Chromium with remote debugging |
/ralph-loop | Start iterative development loop |
/cancel-ralph | Cancel running Ralph loop |
/ralph-help | Ralph loop documentation |
/superpowers | Toggle obra/superpowers skills on/off (see hooks/ for toggle script) |
Specialized agents for complex tasks. Install to ~/.claude/agents/.
| Agent | Description |
|---|---|
| code-refactor-master | Refactoring, file reorganization, dependency tracking |
| documentation-architect | Comprehensive documentation creation and updates |
| plan-reviewer | Review implementation plans before execution |
| web-research-specialist | Creative multi-source web research |
statusline.sh provides a custom Claude Code statusline showing session context %, model, branch, cwd, and daily/weekly rate-limit percentages with reset time.
Configure via settings.json:
"statusLine": {
"type": "command",
"command": "$HOME/.claude/statusline.sh"
}
# Clone the repository
git clone https://github.com/isene/ClaudeCode.git
cd ClaudeCode
# Copy individual skill
cp -r skills/pdf ~/.claude/skills/
# Or symlink for live updates
ln -s $(pwd)/skills/pdf ~/.claude/skills/
# Copy individual command
cp commands/bm.md ~/.claude/commands/
# Or copy all commands
cp commands/*.md ~/.claude/commands/
Skills activate automatically based on context. You can also invoke them explicitly:
# In Claude Code CLI
/pdf
# Or via natural language
"Help me extract text from this PDF"
See CLAUDE.md for example global configuration including:
Each skill is a directory containing:
SKILL.md - Main skill definition with YAML frontmatterskills/myskill/
├── SKILL.md # Core skill definition
├── reference.md # Extended documentation
└── scripts/ # Helper scripts
See skill-creator and skill-developer for guidance.
Custom hooks for Claude Code events in hooks/:
post_tool_verification.py — post-tool execution validationbookmark-auto-restore.sh — restore session bookmark on prompt submitgit-dirty-check.sh — warn on dirty git state before Bash tool useno-emoji-reminder.sh — reminder to avoid emojispost-tool-use-tracker.sh — track tool usage eventsralph-stop-hook.sh — Ralph loop stop hookskill-activation-prompt.sh / .ts — skill activation via UserPromptSubmitPlace hooks in ~/.claude/hooks/ and make executable. See settings.example.json for wiring them up.
See settings.example.json for a reference ~/.claude/settings.json including permissions, hooks, statusLine, and enabled plugins.
Individual skills may have different licenses. Check each skill's directory.
Most content: MIT License
Built with Claude Code | isene.com
19 commits
Python
83.5%
JavaScript
8.3%
Shell
8.1%
Custom skills, commands, and configurations for Claude Code - Anthropic's official CLI for Claude.
Skills extend Claude's capabilities with specialized knowledge, workflows, and domain expertise. Each skill provides context and instructions that activate automatically based on user needs.
| Skill | Description |
|---|---|
| Amar RPG | Campaign world mythology, kingdom lore, 3-tier game system, adventure/NPC generation |
| HyperList | Hierarchical list format (.hl files), syntax, PDF/HTML conversion |
| Lovdata | Norwegian legal database navigation and citation |
| XRPN | Stack-based programming, HP-41 FOCAL compatibility |
| Skill | Description |
|---|---|
| rcurses | Ruby TUI library for terminal interfaces |
| rsh | Ruby SHell project knowledge: architecture, config, tab completion, release workflow |
| x86_64-asm | x86_64 Linux assembly (NASM, pure syscalls), terminal I/O, mmap, X11 wire protocol |
| mcp-builder | Building MCP (Model Context Protocol) servers in Python or TypeScript |
| skill-creator | Guide for creating new Claude Code skills |
| skill-developer | Advanced skill development with hooks and triggers |
| webapp-testing | Playwright-based web application testing |
| Skill | Description |
|---|---|
| PDF manipulation: extract, create, merge, split, forms | |
| PPTX | PowerPoint creation, editing, OOXML structure |
| DOCX | Word documents: creation, editing, tracked changes, comments |
| XLSX | Excel spreadsheets with formulas, formatting, analysis |
| Skill | Description |
|---|---|
| Music Composer | Music theory, composition, arrangement, orchestration |
| Ralph Wiggum | Iterative self-improving AI development loops |
Slash commands for quick actions in Claude Code. Install to ~/.claude/commands/.
| Command | Description |
|---|---|
/bm | Bookmark current session with tags (requires CC-sessions) |
/rel | Ruby gem release workflow |
/chrome | Launch Chromium with remote debugging |
/ralph-loop | Start iterative development loop |
/cancel-ralph | Cancel running Ralph loop |
/ralph-help | Ralph loop documentation |
/superpowers | Toggle obra/superpowers skills on/off (see hooks/ for toggle script) |
Specialized agents for complex tasks. Install to ~/.claude/agents/.
| Agent | Description |
|---|---|
| code-refactor-master | Refactoring, file reorganization, dependency tracking |
| documentation-architect | Comprehensive documentation creation and updates |
| plan-reviewer | Review implementation plans before execution |
| web-research-specialist | Creative multi-source web research |
statusline.sh provides a custom Claude Code statusline showing session context %, model, branch, cwd, and daily/weekly rate-limit percentages with reset time.
Configure via settings.json:
"statusLine": {
"type": "command",
"command": "$HOME/.claude/statusline.sh"
}
# Clone the repository
git clone https://github.com/isene/ClaudeCode.git
cd ClaudeCode
# Copy individual skill
cp -r skills/pdf ~/.claude/skills/
# Or symlink for live updates
ln -s $(pwd)/skills/pdf ~/.claude/skills/
# Copy individual command
cp commands/bm.md ~/.claude/commands/
# Or copy all commands
cp commands/*.md ~/.claude/commands/
Skills activate automatically based on context. You can also invoke them explicitly:
# In Claude Code CLI
/pdf
# Or via natural language
"Help me extract text from this PDF"
See CLAUDE.md for example global configuration including:
Each skill is a directory containing:
SKILL.md - Main skill definition with YAML frontmatterskills/myskill/
├── SKILL.md # Core skill definition
├── reference.md # Extended documentation
└── scripts/ # Helper scripts
See skill-creator and skill-developer for guidance.
Custom hooks for Claude Code events in hooks/:
post_tool_verification.py — post-tool execution validationbookmark-auto-restore.sh — restore session bookmark on prompt submitgit-dirty-check.sh — warn on dirty git state before Bash tool useno-emoji-reminder.sh — reminder to avoid emojispost-tool-use-tracker.sh — track tool usage eventsralph-stop-hook.sh — Ralph loop stop hookskill-activation-prompt.sh / .ts — skill activation via UserPromptSubmitPlace hooks in ~/.claude/hooks/ and make executable. See settings.example.json for wiring them up.
See settings.example.json for a reference ~/.claude/settings.json including permissions, hooks, statusLine, and enabled plugins.
Individual skills may have different licenses. Check each skill's directory.
Most content: MIT License
Built with Claude Code | isene.com
19 commits
Python
83.5%
JavaScript
8.3%
Shell
8.1%