All authors
boisenoise avatar

Claude Skills by boisenoise

github.com/boisenoise
331 skillsA× 320B× 9C× 20 installs401 views
Levn Ln 652 Transaction Correctness AuditorA

Checks transaction scope, missing rollback handling, long-held transactions, trigger/notify interaction. Use when auditing transaction correctness.

databasesgobash
0
9
Levn Ln 653 Runtime Performance AuditorA

Checks blocking IO in async, unnecessary allocations, sync sleep, string concat in loops, redundant copies. Use when auditing runtime performance.

businesspythonrust
0
9
Levn Ln 654 Resource Lifecycle AuditorA

Checks session scope mismatch, missing cleanup, pool config, error path leaks, resource holding. Use when auditing resource lifecycle.

databasespythongo
0
9
Levn Ln 700 Project BootstrapA

Bootstraps projects to production-ready structure. Use when creating new or transforming existing projects.

developmenttypescriptpython
0
9
Levn Ln 710 Dependency UpgraderA

Coordinates dependency upgrades across all detected package managers

testingpythongo
0
9
Levn Ln 711 Npm UpgraderB

Upgrades npm/yarn/pnpm dependencies with breaking change handling

documentationtypescriptgo
0
9
Levn Ln 712 Nuget UpgraderA

Upgrades .NET NuGet packages with breaking change handling

documentationgogit
0
9
Levn Ln 713 Pip UpgraderA

Upgrades Python pip/poetry/pipenv dependencies with breaking change handling

testingpythongo
0
9
Levn Ln 720 Structure MigratorA

Scaffolds new or restructures existing projects to Clean Architecture. Use when setting up project structure.

developmenttypescriptpython
0
9
Levn Ln 721 Frontend RestructureA

Scaffolds new React projects or restructures monoliths to component-based architecture. Use when setting up frontend structure.

developmenttypescriptgo
0
9
Levn Ln 722 Backend GeneratorA

Generates .NET Clean Architecture backend structure from entity definitions. Use when bootstrapping .NET backend projects.

developmentgotesting
0
9
Levn Ln 723 Seed Data GeneratorA

Generates seed data from ORM schemas or entity definitions to any target format. Use when populating databases for development.

databasestypescriptpython
0
9
Levn Ln 724 Artifact CleanerB

Removes platform-specific artifacts from Replit, StackBlitz, CodeSandbox, Glitch. Use when preparing exported projects for production.

devopsgobash
0
9
Levn Ln 730 Devops SetupA

Sets up Docker, CI/CD, and environment configuration with auto-detection. Use when adding DevOps infrastructure to a project.

developmentpythongo
0
9
Levn Ln 731 Docker GeneratorA

Generates Dockerfile and docker-compose configuration for multi-container development. Use when containerizing a project.

developmentpythongo
0
9
Levn Ln 732 Cicd GeneratorA

Generates GitHub Actions CI workflow configuration. Use when adding continuous integration to a project.

devopspythongo
0
9
Levn Ln 733 Env ConfiguratorA

Configures environment variables and secrets protection. Use when setting up .env files and gitignore rules for a project.

developmentpythongo
0
9
Levn Ln 740 Quality SetupA

Sets up linters, pre-commit hooks, and test infrastructure. Use when adding code quality tooling to a project.

testingtypescriptpython
0
9
Levn Ln 741 Linter ConfiguratorA

Configures ESLint, Prettier, Ruff, mypy, and .NET analyzers. Use when setting up linting and formatting for a project.

code-qualitytypescriptpython
0
9
Levn Ln 742 Precommit SetupA

Configures Husky, lint-staged, commitlint, and Python pre-commit hooks. Use when adding Git hook automation to a project.

toolstypescriptpython
0
9
Levn Ln 743 Test InfrastructureA

Sets up test infrastructure with Vitest, xUnit, and pytest. Use when adding testing frameworks and sample tests to a project.

testingtypescriptpython
0
9
Levn Ln 750 Commands GeneratorA

Generates project-specific .claude/commands for Claude Code

developmentgosql
0
9
Levn Ln 751 Command TemplatesA

Generates individual .claude/commands files from templates

devopsgotesting
0
9
Levn Ln 760 Security SetupA

Sets up security scanning for secrets and dependency vulnerabilities. Use when adding security infrastructure to a project.

securitypythongo
0
9
Levn Ln 761 Secret ScannerA

Scans codebase for hardcoded secrets with severity classification and remediation guidance. Use when auditing a project for leaked credentials.

securitygoaws
0
9
Levn Ln 770 Crosscutting SetupA

Sets up logging, error handling, CORS, health checks, and API docs. Use when adding cross-cutting concerns to backend projects.

developmentpythongo
0
9
Levn Ln 771 Logging ConfiguratorA

Configures structured JSON logging with Serilog (.NET) or structlog (Python). Use when adding logging to backend projects.

developmentpythongo
0
9
Levn Ln 772 Error Handler SetupA

Configures global exception handling middleware. Use when adding centralized error handling to .NET or Python backends.

developmentpythongo
0
9
Levn Ln 773 Cors ConfiguratorA

Configures CORS policy for development and production environments. Use when setting up cross-origin access for APIs.

developmentpythongo
0
9
Levn Ln 774 Healthcheck SetupA

Configures health check endpoints for Kubernetes readiness/liveness/startup probes. Use when deploying to Kubernetes.

devopspythongo
0
9
Levn Ln 780 Bootstrap VerifierA

Verifies bootstrapped projects via build, test, and container health checks. Use when validating project setup completeness.

testinggodocker
0
9
Levn Ln 781 Build VerifierA

Builds all detected projects and verifies successful compilation. Use when checking that a bootstrapped project compiles.

developmentpythonrust
0
9
Levn Ln 782 Test RunnerA

Executes all test suites and reports results with coverage. Use when verifying that test infrastructure works after bootstrap.

testingpythonrust
0
9
Levn Ln 783 Container LauncherA

Builds and launches Docker containers with health verification. Use when validating that containerized services start correctly.

devopsgodocker
0
9
Levn Ln 810 Performance Optimization CoordinatorA

Coordinates performance optimization: algorithm, query, and runtime workers in parallel

toolsgogit
0
9
Levn Ln 810 Performance OptimizerA

Multi-cycle performance optimization with profiling and bottleneck analysis. Use when optimizing application performance.

toolsjavascriptgo
0
9
Levn Ln 811 Algorithm OptimizerA

Optimizes algorithms via autoresearch loop: benchmark, research, hypothesize, keep/discard

researchgogit
0
9
Levn Ln 811 Performance ProfilerA

Profiles runtime performance with CPU, memory, and I/O metrics. Use when measuring bottlenecks before optimization.

testingpythonrust
0
9
Levn Ln 812 Optimization ResearcherA

Researches competitive benchmarks and generates optimization hypotheses for identified bottlenecks. Use after profiling.

businessgogit
0
9
Levn Ln 812 Query OptimizerA

Fixes N+1 queries, redundant fetches, over-fetching with keep/discard verification

documentationgogit
0
9
Levn Ln 813 Optimization Plan ValidatorA

Use when validating optimization plans through the evaluation platform with mandatory research, parallel agent evidence, sequential merge, and bounded refinement.

researchgoperformance
0
9
Levn Ln 813 Runtime OptimizerA

Fixes blocking IO, unnecessary allocations, sync-in-async with keep/discard verification

testingpythongo
0
9
Levn Ln 814 Optimization ExecutorA

Executes optimization hypotheses with keep/discard testing loop. Use when applying validated performance improvements.

researchgobash
0
9
Levn Ln 820 Dependency Optimization CoordinatorA

Upgrades dependencies across all detected package managers. Use when updating npm, NuGet, or pip packages project-wide.

testingpythongo
0
9
Levn Ln 821 Npm UpgraderB

Upgrades npm/yarn/pnpm dependencies with breaking change handling. Use when updating JavaScript/TypeScript dependencies.

developmentjavascripttypescript
0
9
Levn Ln 822 Nuget UpgraderA

Upgrades .NET NuGet packages with breaking change handling. Use when updating .NET dependencies.

toolsgobash
0
9
Levn Ln 823 Pip UpgraderA

Upgrades Python pip/poetry/pipenv dependencies with breaking change handling. Use when updating Python dependencies.

testingpythongo
0
9
Levn Ln 830 Code Modernization CoordinatorA

Modernizes codebase via OSS replacement and bundle optimization. Use when acting on audit findings to reduce custom code.

testingpythongo
0
9
Levn Ln 831 Oss ReplacerA

Replaces custom modules with OSS packages using atomic keep/discard testing. Use when migrating custom code to established libraries.

testinggobash
0
9
Levn Ln 832 Bundle OptimizerA

Reduces JS/TS bundle size via tree-shaking, code splitting, and unused dependency removal. Use when optimizing frontend bundle size.

developmentjavascripttypescript
0
9