Help us improve
Share bugs, ideas, or general feedback.
From haskell-format-skill
Format Haskell source files — `*.hs`, `*.lhs`, `*.hsig` — with the project's configured formatter (fourmolu, ormolu, or stylish-haskell). Use when: (1) formatting Haskell source before compiling, (2) tidying code after edits, (3) applying a project's fourmolu/stylish style. Picks the formatter from project config, falling back to the first available. Trigger: "/haskell-format", "format Haskell", "fourmolu", "ormolu", "stylish-haskell".
npx claudepluginhub konn/haskell-claude-marketplace --plugin haskell-format-skillHow this skill is triggered — by the user, by Claude, or both
Slash command
/haskell-format-skill:haskell-formatThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Formats Haskell **source** files with the project's formatter. (`.cabal` / `cabal.project` files
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Breaks plans, specs, or PRDs into thin vertical-slice issues on the project issue tracker using tracer bullets. Useful for converting high-level work into grabbable implementation tickets.
Share bugs, ideas, or general feedback.
Formats Haskell source files with the project's formatter. (.cabal / cabal.project files
are handled by /haskell-cabal-gild, not here.) Always format before compiling.
Walk up from the file's directory and pick by config, else the first tool available:
fourmolu.yaml / .fourmolu.yaml present → fourmolu.stylish-haskell.yaml present → stylish-haskellPATH.All three accept -i as the in-place shortcut:
fourmolu -i <file> # or: ormolu -i <file> / stylish-haskell -i <file>
This plugin installs a PostToolUse hook (scripts/haskell-format-on-save.sh) that formats any
.hs/.lhs/.hsig file in place right after it is written. After the hook reformats a file,
re-read it before editing again. Manual invocation is mainly for bulk formatting.
.cabal / cabal.project files are formatted by /haskell-cabal-gild.