Hainrixz

178 mods across 18 repositories, 2.6k stars between them.

aprende-enable-hooks

121

Hainrixz/aprende-skill

Command

Install the aprende PostToolUse + Stop hooks into /.claude/settings.json. Idempotent: safe to run multiple times. Backs up settings.json before editing.

23 1mo ago B 40 tokens original MIT

aprende

122

Hainrixz/aprende-skill

Command

Review the current conversation and save reusable learnings (memory, lesson, skill stub, project-doc) after confirmation. / Revisa la conversación actual y guarda aprendizajes reusables con confirmación.

23 1mo ago A 40 tokens original MIT

PostToolUse

123

Hainrixz/aprende-skill

Hook

Runs after a tool call finishes for Bash, Edit and Write tool calls, executing capture-signal.sh via bash. From Hainrixz/aprende-skill.

23 1mo ago A tokens not measured original MIT

Stop

124

Hainrixz/aprende-skill

Hook

Runs when the agent finishes a response, executing stop-suggest.sh via bash. From Hainrixz/aprende-skill.

23 1mo ago A tokens not measured original MIT

aprende

125

Hainrixz/aprende-skill

Skill Claude CodeCodex

EN — Review the current conversation and surface reusable learnings across four categories (memory, lesson, skill, project-doc). Generate a numbered candidate list first; only write to disk after the user confirms. Trigger when the user types /aprende, /learn, "reflect on this", "save what we learned", "remember this…

23 1mo ago C 195 tokens original MIT

learn

126

Hainrixz/aprende-skill

Skill Claude CodeCodex

English alias for /aprende. Runs the same five-pass workflow to surface reusable learnings from the current conversation across memory, lesson, skill, and project-doc categories — with confirmation before any write. Alias en inglés para /aprende.

23 1mo ago A 52 tokens original MIT

claude-db

127

Hainrixz/claude-db

Plugin Claude Code

Multi-paradigm database design, audit, and migration suite for Claude Code.

19 2mo ago A tokens not measured original MIT

claude-db

128

Hainrixz/claude-db

Plugin Claude Code

Design, audit, and safely migrate any database with Claude. Multi-paradigm (SQL, document, key-value, wide-column, vector, time-series, graph), two independent scores (Design & Integrity + Performance & Scale), reproducible findings, and opt-in fixes. Works offline.

19 2mo ago A tokens not measured original MIT

claude-db CLAUDE.md

129

Hainrixz/claude-db

Instructions file

Instructions for Hainrixz/claude-db, covering claude.md — working on claude-db, architecture (skill-first, three layers), agents (agents/ .md), the two-score model (never blend) and dev rules (non-negotiable).

19 2mo ago A 1,319 tokens original MIT

db-migration-writer

130

Hainrixz/claude-db

Agent

The ONLY agent allowed to write files. Used exclusively by the fix skill (the /claude-db:fix command) AFTER the user has confirmed the diffs. Applies AUTO/PROPOSED fixes, generates reversible timestamped migrations, backs up first, refuses a dirty git tree unless --force, is idempotent, and re-verifies each change.

19 2mo ago A 78 tokens original MIT

Hainrixz/claude-db

Agent

Read-only migration-safety specialist. Use proactively during a database audit to analyze migration reversibility, lock level, table rewrites, destructive operations, enum mutation, and schema drift. Runs scripts/lint-migration.mjs. Feeds the Performance & Scale score.

19 2mo ago A 60 tokens original MIT

Hainrixz/claude-db

Agent

Read-only NoSQL paradigm specialist. Use proactively during a database audit of document, key-value, or wide-column stores to analyze antipattern fit and access-pattern alignment — unbounded arrays, missing partition/sort keys, hot keys, fan-out, denormalization drift, and idempotency. Feeds both scores via the…

19 2mo ago A 79 tokens original MIT

Hainrixz/claude-db

Agent

Read-only performance & scale specialist. Use proactively during a database audit to analyze indexing, index hygiene, query patterns, concurrency, connection pooling, partitioning/sharding, replicas/views, and storage/bloat. Feeds the Performance & Scale score.

19 2mo ago A 55 tokens original MIT

Hainrixz/claude-db

Agent

Read-only schema & data-integrity specialist. Use proactively during a database audit to analyze normalization, primary-key strategy, referential integrity, types/precision, constraints, defaults/generated columns, naming, temporal/history, multitenancy, and security/access. Feeds the Design & Integrity score.

19 2mo ago A 65 tokens original MIT

Hainrixz/claude-db

Agent

Read-only specialized-engine & platform-fit specialist. Use proactively during a database audit to evaluate vector / time-series / OLAP / graph / search engine fit, platform & version currency (no fabricated EOL or prices), and engine-selection recommendations. Feeds both scores plus the M0 recommendation.

19 2mo ago A 65 tokens original MIT

PreToolUse

136

Hainrixz/claude-db

Hook

Runs before the agent uses a tool for Write, Edit, Bash and mcp__.* tool calls, executing guard-write.mjs and guard-sql.mjs via node (3 commands). From Hainrixz/claude-db.

19 2mo ago A tokens not measured original MIT

audit

137

Hainrixz/claude-db

Skill Claude CodeCodex

Audit a database schema, ORM model, or migrations for design and performance — produces two independent 0-100 scores (Design & Integrity + Performance & Scale) plus a prioritized, evidence-backed report. Read-only; never writes or migrates. Use when the user asks to audit, analyze, review, check, or score a database…

19 2mo ago A 126 tokens original MIT

checklist

138

Hainrixz/claude-db

Skill Claude CodeCodex

Render a production-readiness GO/NO-GO grid for a database — runs a read-only audit, then maps the findings onto a fixed launch checklist (PITR/backups, RLS on tenant tables, FK indexes, money-as-numeric, timestamptz/UTC, connection pooling sized, migration reversibility, secrets-not-in-schema, charset/utf8mb4). Each…

19 2mo ago A 147 tokens original MIT

db-antipatterns

139

Hainrixz/claude-db

Skill Claude CodeCodex

Unified cross-paradigm anti-pattern catalog (M19) — relational and NoSQL smells that no single structural module owns cleanly: EAV / generic key-value tables, the "god table" with hundreds of columns, comma-separated lists in a column, polymorphic associations without FK, boolean-flag soup, Mongo unbounded array…

19 2mo ago A 131 tokens original MIT

db-concurrency

140

Hainrixz/claude-db

Skill Claude CodeCodex

Audit concurrency correctness — transaction isolation level, lost-update / read-modify-write races, queue-worker contention (SKIP LOCKED), and idempotency for key-value / document / wide-column writes. Module M14. Feeds the Performance & Scale score.

19 2mo ago A 56 tokens original MIT

db-connection-pooling

141

Hainrixz/claude-db

Skill Claude CodeCodex

Audit connection management — serverless functions opening direct Postgres connections, transaction-mode pooler misuse (PgBouncer / Supabase / prepared statements), and pool sizing against backend maxconnections. Module M15. Feeds the Performance & Scale score.

19 2mo ago A 55 tokens original MIT

db-constraints

142

Hainrixz/claude-db

Skill Claude CodeCodex

Audit data-integrity constraints — missing NOT NULL on required columns, absent CHECK constraints for domain rules, missing UNIQUE on natural keys, and the over-nullable UNIQUE trap where NULLs silently permit duplicates. Module M5. Feeds the Design & Integrity score (Constraints category).

19 2mo ago A 59 tokens original MIT

db-defaults-generated

143

Hainrixz/claude-db

Skill Claude CodeCodex

Audit column defaults and generated columns — application-side timestamps that should be DB defaults, non-deterministic or wrong defaults, derived values that should be GENERATED ALWAYS / computed columns instead of drift-prone duplicated data, and identity/sequence defaults. Module M6. Feeds the Design & Integrity…

19 2mo ago A 73 tokens original MIT

db-engine-selection

144

Hainrixz/claude-db

Skill Claude CodeCodex

Engine selection (M0) — at design/start time, recommends a database paradigm and engine for a described workload (access patterns, consistency needs, scale, team, platform), and names the runner-up with the trade-off you're accepting. M0 is a RECOMMENDATION, not a scored audit module — it emits no findings and never…

19 2mo ago A 107 tokens original MIT