blunotech-dev/agents

2Stars on the repository
105Mods indexed here, across every type
3mo agoLast push, which is what freshness is scored on
noneNo LICENSE: all rights reserved, so bodies are not copied

blunotech-dev/agents

Skill Claude CodeCodex

Fix incorrect or missing useEffect dependency arrays, handling exhaustive-deps issues, stale closures, and intentional omissions. Use when effects re-run incorrectly, read stale values, or trigger eslint warnings across useEffect, useCallback, or useMemo.

not rated 2 3mo ago A 53 tokens

blunotech-dev/agents

Skill Claude CodeCodex

Find and replace any types in TypeScript with precise types, generics, or unknown plus narrowing. Use when improving type safety, fixing implicit any, removing any, or migrating code to strict TypeScript.

not rated 2 3mo ago A 52 tokens

blunotech-dev/agents

Skill Claude CodeCodex

Detect and resolve circular import chains that cause undefined values, runtime errors, or build/test warnings. Use when the user reports circular dependency warnings, undefined imports, or order-dependent test failures. Also trigger when shared imports suggest a dependency cycle.

not rated 2 3mo ago A 52 tokens

blunotech-dev/agents

Skill Claude CodeCodex

Specializes in clean code principles, SOLID design patterns, and modern software engineering best practices. Analyze and refactor the provided code to improve its quality, maintainability, and performance.

not rated 2 3mo ago A 42 tokens

god-object-split

77

blunotech-dev/agents

Skill Claude CodeCodex

Refactor classes or modules with too many responsibilities into smaller, cohesive units that follow the Single Responsibility Principle (SRP). Use when the user asks to split a god object, fat class, or bloated module, or when a file clearly handles multiple concerns.

not rated 2 3mo ago A 57 tokens

long-function-split

78

blunotech-dev/agents

Skill Claude CodeCodex

Refactor long or multi-purpose functions into smaller, single-responsibility functions with clear names. Use when a function is large, complex, hard to read/test, or when the user asks to split, clean up, or reduce function complexity. Also trigger if pasted code contains an obviously large function.

not rated 2 3mo ago A 65 tokens

module-boundaries

79

blunotech-dev/agents

Skill Claude CodeCodex

Identify overly large or tightly coupled modules and split them into well-bounded units with clear public interfaces. Use when the user asks to reorganize modules, fix circular dependencies, separate concerns, or define module boundaries. Also trigger when shared code structure shows god modules, cross-cutting…

not rated 2 3mo ago A 65 tokens

naming-conventions

80

blunotech-dev/agents

Skill Claude CodeCodex

Audit and refactor unclear, abbreviated, or misleading identifiers across a codebase, including variables, functions, parameters, files, and modules. Use this skill when the user asks to rename things, improve naming, audit identifiers, or fix cryptic names like d, tmp, handleStuff, or doTheThing. Also trigger for…

not rated 2 3mo ago A 95 tokens

nested-conditionals

81

blunotech-dev/agents

Skill Claude CodeCodex

Flatten deeply nested conditionals using guard clauses, early returns, or patterns like strategy, without changing behavior. Use when the user asks to simplify conditional logic, reduce nesting/indentation, or clean up “pyramid of doom” style code. Also trigger when pasted code shows 3+ levels of nesting.

not rated 2 3mo ago A 66 tokens

blunotech-dev/agents

Skill Claude CodeCodex

Replace brittle snapshot tests with focused, meaningful assertions that verify behavior. Use when improving test reliability, fixing flaky tests, or migrating away from toMatchSnapshot / toMatchInlineSnapshot.

not rated 2 3mo ago A 44 tokens

blunotech-dev/agents

Skill Claude CodeCodex

Manage large-scale refactoring with Cascade coordination. Activate when users mention "large refactoring", "codebase migration", "architecture refactor", "major refactoring", or "system-wide changes". Handles complex refactoring operations. Use when working with windsurf refactoring large functionality. Trigger with…

not rated 2 3mo ago A 82 tokens

blunotech-dev/agents

Skill Claude CodeCodex

Audit endpoints for missing or bypassable authorization checks. Use when the user asks about access control, route protection, ownership checks, IDOR, privilege escalation, or whether one user can access another user’s data.

not rated 2 3mo ago A 46 tokens

cors-config

85

blunotech-dev/agents

Skill Claude CodeCodex

Audit and fix CORS configuration. Use this skill when the user mentions CORS, cross-origin requests, Access-Control headers, wildcard origins, preflight, OPTIONS requests, credentials with CORS, or gets a CORS error — including "how do I fix CORS?" or "is my CORS config safe?".

not rated 2 3mo ago A 67 tokens

graphql-security

86

blunotech-dev/agents

Skill Claude CodeCodex

Audit a GraphQL API for security issues. Use this skill when the user mentions GraphQL, query depth, introspection, batching abuse, field-level authorization, resolver security, N+1 in security context, or asks "is my GraphQL API secure?" or "how do I lock down GraphQL?".

not rated 2 3mo ago A 65 tokens

idor-fix

87

blunotech-dev/agents

Skill Claude CodeCodex

Identify and fix Insecure Direct Object Reference (IDOR) vulnerabilities. Use this skill when the user mentions IDOR, sequential IDs, guessable IDs, object reference, users accessing other users' data, or asks "can a user access another user's resource?" or "are my IDs safe to expose?".

not rated 2 3mo ago A 65 tokens

blunotech-dev/agents

Skill Claude CodeCodex

Add a centralized input validation layer at all system entry points. Use this skill when the user mentions input validation, schema validation, request validation, Zod, Joi, Yup, sanitizing API input, validating webhooks, form submissions, or asks "how do I validate incoming data?" or "where should validation live?".

not rated 2 3mo ago A 68 tokens

jwt-implementation

89

blunotech-dev/agents

Skill Claude CodeCodex

Audit or implement JWT authentication flows. Use when the user asks about JWTs, tokens, refresh tokens, storage, signing algorithms, or revocation, even if only one part of the auth flow is mentioned.

not rated 2 3mo ago A 46 tokens

oauth-flow

90

blunotech-dev/agents

Skill Claude CodeCodex

Implement or audit OAuth 2.0 authorization code flow. Use this skill for OAuth, PKCE, authorization codes, token exchange, scopes, redirect URIs, state parameter, social login, or "login with Google/GitHub/etc." — including narrow questions like "do I need PKCE?" or "what scopes should I request?".

not rated 2 3mo ago A 72 tokens

rbac-implementation

91

blunotech-dev/agents

Skill Claude CodeCodex

Implement or audit role-based access control (RBAC). Use when the user asks about roles, permissions, admin restrictions, route protection, permission checks, or validating existing RBAC for gaps.

not rated 2 3mo ago A 43 tokens

xss-prevention

92

blunotech-dev/agents

Skill Claude CodeCodex

Audit frontend or backend for XSS vulnerabilities and fix them. Use this skill when the user mentions XSS, cross-site scripting, innerHTML, dangerouslySetInnerHTML, unsanitized input, output encoding, CSP headers, script injection, or asks "is this safe to render?" or "how do I sanitize user input?".

not rated 2 3mo ago A 71 tokens

blunotech-dev/agents

Skill Claude CodeCodex

Generate integration tests for REST API endpoints covering auth, validation, success and error responses, and DB side effects. Use when testing endpoints end-to-end or verifying route behavior and data persistence.

not rated 2 3mo ago A 42 tokens

blunotech-dev/agents

Skill Claude CodeCodex

Test async UI components (e.g., React) covering loading, success, error, and retry states using proper async queries. Use when testing data-fetching components or avoiding act-related issues.

not rated 2 3mo ago A 42 tokens

db-integration-test

95

blunotech-dev/agents

Skill Claude CodeCodex

Write tests against a real test database to verify CRUD operations, queries, constraints, transactions, and migrations. Use when validating DB logic, ORM/repository layers, or data integrity without mocks.

not rated 2 3mo ago A 43 tokens

e2e-auth-flow

96

blunotech-dev/agents

Skill Claude CodeCodex

Write E2E tests for full auth flows (register, login, logout, reset, protected routes) with session reuse. Use when testing authentication, session handling, or protected route access end-to-end.

not rated 2 3mo ago A 47 tokens

At most 3 mods per repository are shown here, and a mod shipped inside a plugin is left to that plugin's page — the rest are on their repository pages: