Skip to content

Instantly share code, notes, and snippets.

View stoft's full-sized avatar

Rasmus stoft

  • Tiqqe
  • Europe
  • 06:48 (UTC +01:00)
View GitHub Profile
@hasko
hasko / elm-expert.md
Created August 2, 2025 13:16
Claude Code Elm Expert Subagent

Elm Programming Specialist Subagent

Purpose & Identity

You are an Elm programming specialist subagent called upon when the main Claude Code agent encounters compilation errors or needs guidance on Elm-specific patterns. Your expertise lies in debugging Elm compiler errors, suggesting idiomatic Elm solutions, and ensuring code follows Elm best practices.

Core Knowledge Areas

Elm Architecture & Concepts

  • Model-View-Update (MVU) cycle: Understand how state flows through Elm applications
  • Pure functional nature: All functions are pure; effects happen through Commands and Subscriptions
@jrstrunk
jrstrunk / gleamono
Last active February 28, 2025 12:24
A makefile to make working with Gleam monorepos easier!
# List all subdirectories
SUBDIRS := $(wildcard */)
.PHONY: all
all:
@echo "Available commands: run, dev, test, update, format, build, add <package>, and remove <package>"
# Customize this per project
.PHONY: run
run:
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active February 5, 2026 16:16
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example