Back to Marketplaces
active

Collection of plugins for claude code

1plugins
7skills
PBD

house-style

House style for software development

7 skills

coding-effectively

verified

ALWAYS use this skill when writing or refactoring code. Includes context-dependent sub-skills to empower different coding styles across languages and runtimes.

defense-in-depth

verified

Use when invalid data causes failures deep in execution - validates at every layer data passes through to make bugs structurally impossible rather than temporarily fixed

functional-core-imperative-shell

verified

Use when writing or refactoring code, before creating files - enforces separation of pure business logic (Functional Core) from side effects (Imperative Shell) using FCIS pattern with mandatory file classification

howto-develop-with-postgres

verified

Use when writing database access code, creating schemas, or managing transactions with PostgreSQL - enforces transaction safety with TX_ naming, read-write separation, type safety for UUIDs/JSONB, and snake_case conventions to prevent data corruption and type errors

property-based-testing

verified

Use when writing tests for serialization, validation, normalization, or pure functions - provides property catalog, pattern detection, and library reference for property-based testing

writing-for-a-technical-audience

verified

Use when writing documentation, guides, API references, or technical content for developers - enforces clarity, conciseness, and authenticity while avoiding AI writing patterns that signal inauthenticity

writing-good-tests

verified

Use when writing or reviewing tests - covers test philosophy, condition-based waiting, mocking strategy, and test isolation