All authors
snoodleboot-io avatar

Claude Skills by snoodleboot-io

github.com/snoodleboot-io
326 skillsA× 319B× 5D× 20 installs122 views
Mermaid Erd CreationA

Comprehensive guide for creating entity relationship diagrams using Mermaid syntax

databasesgosql
0
2
Message Queue SelectionA

Messaging systems fall into three fundamental shapes, and most bad choices come

devopsgo
0
2
Microservices Communication PatternsA

Every synchronous call does two things beyond transferring data: it adds the

businesspythongo
0
2
Ml DeploymentA

A model in production is never just weights.

devopspythonrust
0
2
Mlops Pipeline DesignA

Software CI assumes a git sha plus a lockfile determines the build.

devopspythonrust
0
2
Model EvaluationA

Every metric encodes an opinion about which mistake hurts.

businesspythongo
0
2
Model InterpretabilityA

\"Make it interpretable\" is four different requests.

researchpythongo
0
2
Model MonitoringA

The layers trade timeliness against definitiveness.

devopspythongo
0
2
Model Performance DebuggingA

Run this before anything else.

datapythonrust
0
2
Multi Cloud StrategyA

\"Multi-cloud\" is a loose word that hides four distinct architectures with

devopsgosql
0
2
Multiagent OrchestrationA

Run a genuinely-parallel multiagent implementation with detailed guidance - plan, gate on environment, spawn subagents concurrently, aggregate, and debug/retry

ai-agentsgotesting
0
2
Mutation TestingA

Line coverage answers \"did this line execute during the test run\".

testingpythongo
0
2
Nosql Database SelectionA

Relational modelling lets you defer query design: normalize the entities, and

databasesgosql
0
2
Object Storage PatternsA

Almost every object-storage mistake comes from carrying filesystem instincts into

securitygonode
0
2
Performance OptimizationA

The instruction to profile before optimizing survives because intuition about

developmentpythongo
0
2
Post Implementation ChecklistA

Comprehensive checklist for documenting follow-up work and testing needs after implementation

testinggosql
0
2
Problem DecompositionA

A stakeholder asks to make search faster.

databasesgonode
0
2
Prometheus Query PatternsA

rate(http_requests_total[5m])

documentationapi
0
2
Python Typing And AsyncA

Type hints are checked by a separate tool (`mypy`, `pyright`), never by CPython

businesspythonexpress
0
2
Quality AssuranceA

\"Quality\" is unmanageable until it is a set of numbers with agreed definitions.

testinggotesting
0
2
Responsive Design PatternsA

Both directions produce working layouts, but very different amounts of CSS.

designgoshell
0
2
Root Cause Five WhysA

1.

testingtestingapi
0
2
Serverless ArchitectureA

Serverless is a billing-and-scaling model, not a badge of modernity.

devopspythongo
0
2
Slo Sli DefinitionA

**SLO (Service Level Objective):** What we promise (99.9%)

devopstesting
0
2
Slowly Changing DimensionsA

**When:** Not important (contact info)

databasesgosql
0
2
Sql OptimizationA

Always start with EXPLAIN ANALYZE to understand execution:

businesspythongo
0
2
State Management ArchitectureA

The single highest-leverage decision is recognizing that most of what teams call

businessgoreact
0
2
Team CollaborationA

Ownership models are usually inherited rather than chosen, and the inherited one

code-qualityrustgo
0
2
Technical CommunicationA

Before writing anything, answer three questions: who reads this, what do they

businessrustgo
0
2
Technical Debt ManagementA

Debt that exists only in engineers' heads cannot be prioritised, funded, or

code-qualitygorefactoring
0
2
Technical Decision MakingA

The single most useful question before analysing anything is: *what does it cost

developmentpythonrust
0
2
Test Aaa StructureA

Apply Arrange-Act-Assert pattern for clear, maintainable tests with detailed guidance

developmentjavascripttypescript
0
2
Test Coverage CategoriesB

Comprehensive systematic approach to achieving complete test coverage through structured category-based testing

developmentjavascripttypescript
0
2
Test Data StrategiesA

These three are not interchangeable, and picking the wrong one is the root of a

developmenttypescriptpython
0
2
Test Mocking RulesA

Comprehensive guidelines for when and how to use mocks, stubs, and fakes in tests

testingjavascripttypescript
0
2
Testing StrategiesA

Three shapes get argued about as if one were correct.

testingjavascriptpython
0
2
Threat ModelingA

Every methodology — STRIDE, PASTA, LINDDUN, attack trees — is a technique for

securityrustgo
0
2
Time Series PreprocessingA

Almost every downstream bug traces back to an index that was assumed regular and

datapythongo
0
2
MinimalA

Find rare, unexpected observations in data where labels are scarce or absent, and evaluate the result in a way that survives extreme class imbalance.

developmentpythongo
0
2
VerboseA

"Anomaly" covers three distinct problems, and a detector built for one is close to useless on the others.

businesspythonrust
0
2
MinimalA

Concrete configuration that shrinks an API's attack surface at the edge and in the runtime — transport, CORS, limits, headers, and egress.

securitypythongo
0
2
VerboseA

TLS is either configured deliberately or inherited from a distro default written years ago. Pin the protocol floor and let 1.3 negotiate its own suites.

devopspythonrust
0
2
MinimalA

Identify and close the failure modes specific to APIs — where the caller is a program, every endpoint is directly reachable, and the UI enforces nothing.

securitypythonsql
0
2
VerboseA

An API has no UI to hide things behind. Every identifier a client has ever seen is an identifier it can replay against every endpoint. The dominant API vulnerability class — broken object-level authorization — is not a missing authentication check; the attacker is fully authenticated as themselves.

securitypythonrust
0
2
MinimalA

Evolve an API without breaking clients you do not control, and retire old shapes on a schedule instead of by surprise.

businessgoapi
0
2
VerboseA

Versioning exists because you cannot deploy your clients. Once a third party — or your own mobile app sitting in an app store review queue — depends on a response shape, that shape is a contract, and the only safe assumption is that some caller depends on every observable detail of it.

devopspythongo
0
2
MinimalA

Record the structure of a system and the reasoning behind it, so that the next engineer can change it without re-deriving every decision from scratch.

devopsgoterraform
0
2
VerboseA

An ADR records one decision at the moment it is made, with the information that was actually available. Its value is not the decision — that is visible in the code — but the *forces*: what was considered, what was rejected, and what the choice costs. Six months later the code shows what; only the ADR shows why.

devopspythonrust
0
2
MinimalA

Design authentication that proves who a user is, without leaking credentials or sessions.

securityjavascriptpython
0
2
VerboseA

Authentication starts with never holding the secret you are checking. Store a verifier — a slow, salted hash — not the password.

securitypythonrust
0
2