All authors
snoodleboot-io avatar

Claude Skills by snoodleboot-io

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

Apply Arrange-Act-Assert pattern for clear tests

developmentjavascripttypescript
0
2
VerboseA

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

developmentjavascripttypescript
0
2
MinimalA

Systematic approach to achieving comprehensive test coverage

developmentjavascripttypescript
0
2
VerboseB

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

developmentjavascripttypescript
0
2
MinimalA

Produce test data that is deterministic, isolated per test, and states its intent in the test that uses it.

documentationpythonrust
0
2
VerboseA

These three are not interchangeable, and picking the wrong one is the root of a surprising share of order-dependent failures.

developmenttypescriptpython
0
2
MinimalA

Guidelines for when and how to use mocks in tests

developmentjavascripttypescript
0
2
VerboseA

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

testingjavascripttypescript
0
2
MinimalA

Decide what to test at which level, so the suite catches real defects without becoming slow or brittle.

testingpythonbash
0
2
VerboseA

Three shapes get argued about as if one were correct. Each is a claim about where your defects live, and that is an empirical question about your architecture — not a matter of taste.

testingjavascriptpython
0
2
MinimalA

Enumerate what could go wrong in a system before deciding what to do about it — inventory the assets worth attacking, the entry points that reach them, and the actors who would try.

securityrustgo
0
2
VerboseA

Threat identification fails when it starts from an architecture diagram, because diagrams show components and attackers pursue assets. Build the asset register first and rate each on confidentiality, integrity, and availability separately.

securityrustgo
0
2
MinimalA

A structured pass over a design — diagram, trust boundaries, STRIDE, mitigations — that finds whole classes of flaws while they are still cheap to fix.

securityrustgo
0
2
VerboseA

Every methodology — STRIDE, PASTA, LINDDUN, attack trees — is a technique for answering four questions in order:

securityrustgo
0
2
MinimalA

Prepare temporal data for modeling without letting information from the future reach a model that will only ever see the past.

datapythonrust
0
2
VerboseA

Almost every downstream bug traces back to an index that was assumed regular and was not. Make the grid explicit before anything else.

datapythongo
0
2
MinimalA

Use the type system to make illegal states unrepresentable, while keeping types simple enough that the next reader can follow them.

developmenttypescript
0
2
VerboseA

`any` opts a value out of type checking entirely, and that opt-out is contagious — every expression derived from it is also unchecked. `unknown` is the safe top type: it holds any value but permits no operation until you narrow it.

toolstypescriptrust
0
2
MinimalA

Find out what people actually struggle with by asking about their past, not their future — because everyone says yes to a hypothetical and almost nobody buys it.

businessgoapi
0
2
VerboseA

The name comes from a simple test — could you ask this question of your own mother and get a useful answer, given she loves you and wants you to succeed? "Do you think my app is a good idea?" fails. "How did you handle that last time?" passes, because the answer is a fact about her life, not a judgement of your idea.

researchrustgo
0
2
MinimalA

Pick the testing method that can actually answer your question, and size it correctly — most bad research is a good method aimed at the wrong question.

researchgotesting
0
2
VerboseA

Start from the question, in writing, before choosing anything. Most wasted research is a well-run study that structurally could not answer what was asked.

researchgoreact
0
2
MinimalA

Write interface copy that tells the user what happened and what to do next, in the fewest words that still leave no decision unexplained.

developmentgodatabase
0
2
VerboseA

An error message has exactly one job: get the user unstuck. It needs three components, and most shipped errors have none of them.

businessgoapi
0
2
MinimalA

Find actual weaknesses in a built or running system, then triage them by real-world risk so the small number that matter get fixed first.

securityrustbash
0
2
VerboseA

Threat modeling asks what could go wrong in a design. Vulnerability assessment asks what *is* wrong in the thing you actually built and deployed. The first is predictive and cheap; the second is empirical and finds the gap between the design you modeled and the system you shipped — the misconfigured bucket, the forgotten staging host, the library that went stale.

securityrustgo
0
2