Skip to content

Instantly share code, notes, and snippets.

View rvanbaalen's full-sized avatar
👨‍💻
Coding in progress…

Robin van Baalen rvanbaalen

👨‍💻
Coding in progress…
View GitHub Profile
@rvanbaalen
rvanbaalen / README.md
Last active January 29, 2026 02:38
conventional-commits skill for Claude Code

Conventional Commits Skill for Claude Code

Commit changes using micro commits with conventional commit messages.

What It Does

  1. Analyzes all changes in your working directory (git status, git diff)
  2. Groups related files into logical commits
  3. Proposes each commit with files, summary, and conventional commit message
  4. Waits for your approval before committing
@rvanbaalen
rvanbaalen / README.md
Created January 28, 2026 18:03
publish-skill skill for Claude Code

Publish Skill for Claude Code

Automatically offers to publish new Claude Code skills as documented GitHub Gists, making them installable via the Claude Skills Installer.

What It Does

  1. Auto-triggers when you ask Claude to create a new skill
  2. Gathers skill requirements and drafts the SKILL.md with proper frontmatter
  3. Asks if you want to publish as a GitHub Gist
  4. Creates a documented gist with README.md and SKILL.md
@rvanbaalen
rvanbaalen / README.md
Last active January 28, 2026 19:51
Reflect Skill for Claude Code - Review sessions and capture insights to REFLECTIONS.local.md

Reflect Skill for Claude Code

A Claude Code skill that reviews completed sessions to identify learnings and capture insights for future interactions.

What It Does

After you complete a task, this skill:

  1. Analyzes the conversation - identifies what worked, where you got stuck, and any misunderstandings
  2. Evaluates if recording is warranted - not every session has insights worth capturing
@rvanbaalen
rvanbaalen / README.md
Last active January 29, 2026 02:41
Claude Code Skills Installer - Discover and install skills from GitHub Gists

Claude Code Skills Installer

Discover, install, and manage Claude Code skills from GitHub Gists.

Quick Start

Run the installer directly (no installation required):

curl -fsSL https://gist.githubusercontent.com/rvanbaalen/2e4c2840d06de810f771a4514f97c6da/raw/claude-skills.js -o /tmp/claude-skills.js && node /tmp/claude-skills.js
@rvanbaalen
rvanbaalen / README.md
Last active January 28, 2026 14:38
Make Issue Skill for Claude Code - Smart GitHub issue creation

Make Issue Skill for Claude Code

A Claude Code skill that streamlines GitHub issue creation with smart label suggestions and issue type support.

Features

  • Automatically detects and uses repository issue templates
  • Fetches available issue types (GitHub Projects)
  • Smart label suggestions based on issue content
  • Groups labels by category for easy selection
@rvanbaalen
rvanbaalen / README.md
Last active January 28, 2026 13:08
Claude Code custom statusline installer - shows model, working directory, and git branch with colors

Claude Code Custom Statusline

Adds a custom statusline to Claude Code showing:

  • Model name (cyan)
  • Working directory (yellow)
  • Git branch (green)

Example output: [Opus] my-project (develop)

@rvanbaalen
rvanbaalen / readme.md
Last active January 17, 2026 13:46
SaaS Dashboard UI Design System - Comprehensive documentation for a clean, professional dashboard UI style

SaaS Dashboard UI Design System

A comprehensive design system documentation for building clean, professional SaaS dashboard interfaces. This guide captures the design language, patterns, and components for a modern developer-focused dashboard UI.


1. DESIGN PHILOSOPHY

This design system follows a clean, professional, data-dense SaaS dashboard aesthetic with:

  • Minimal decoration, maximum information density
@rvanbaalen
rvanbaalen / 0-README.md
Last active May 16, 2025 12:35
Automatic Actions framework for Claude AI. Copy/paste into the Developer Tools of Claude desktop app.

Claude Auto-Actions Framework

A lightweight, extensible framework for automating interactions within the Claude AI interface.

Overview

This framework allows you to automate repetitive actions in Claude's UI by defining custom "actions" that execute when specific conditions are met. It uses a mutation observer to monitor DOM changes and triggers your defined actions automatically.

Features