Explore

Find agent skills by outcome

85,285 skills indexed with the new KISS metadata standard.

Showing 24 of 85,285Categories: General, Creative, Coding & Debugging, Cursor-rules, Writing & Content
Coding & Debugging
PromptBeginner5 minmarkdown

Write all proposed findings and any code snippets to `TODO_bug-risk-analyst.md` only. Do not create any other files. If specific files should be created or edited

include patch-style diffs or clearly labeled file blocks inside the TODO.

0
General
PromptBeginner5 minmarkdown

- **Missing fallback in stateful agents**: Agent definitions that assume tool calls

memory reads

0
General
PromptBeginner5 minmarkdown

- **Overlapping agent triggers**: Multiple agent personas that activate on semantically similar queries without a disambiguation mechanism will produce duplicate

conflicting

0
Coding & Debugging
PromptBeginner5 minmarkdown

- **Implicit ordering assumptions**: Code that depends on a specific execution order of async tasks

event handlers

0
Coding & Debugging
PromptBeginner5 minmarkdown

- **Hardcoded environmental assumptions**: Paths

URLs

0
General
PromptBeginner5 minmarkdown

- **Unbounded resource growth**: Collections

caches

0
General
PromptBeginner5 minmarkdown

- Check for split-brain risks in leader election

distributed locks

0
General
PromptBeginner5 minmarkdown

- **Silent catch blocks**: Exception handlers that swallow errors without logging

metrics

0
General
PromptBeginner5 minmarkdown

- Check for unchecked error returns from functions that follow the `(value

error)` convention.

0
Coding & Debugging
PromptBeginner5 minmarkdown

- Rank findings by the product of probability and blast radius

not by defect category or code location.

0
General
PromptBeginner5 minmarkdown

- Verify `===` usage instead of `==` to avoid type coercion surprises with null

undefined

0
Writing & Content
PromptBeginner5 minmarkdown

- Check that memory read/write operations specify behavior for cold starts

missing keys

0
General
PromptBeginner5 minmarkdown

- Simulate edge-case user inputs mentally: empty queries

ambiguous phrasing

0
Coding & Debugging
PromptBeginner5 minmarkdown

- Verify that every new variable is initialized before use on all code paths

including early returns and exception handlers.

0
General
PromptBeginner5 minmarkdown

- Verify that test suites include concurrency stress tests

not just single-threaded happy-path coverage.

0
General
PromptBeginner5 minmarkdown

- Check each branch condition for off-by-one

negation

0
Coding & Debugging
PromptBeginner5 minmarkdown

- Start from the diff

not the entire codebase; focus analysis on changed lines and their immediate callers and callees.

0
General
PromptBeginner5 minmarkdown

- Verify health check endpoints accurately reflect service readiness

not just process liveness.

0
General
PromptBeginner5 minmarkdown

- Validate idempotency of operations that may be retried by queues

load balancers

0
General
PromptBeginner5 minmarkdown

- Identify zero-downtime deployment risks from schema changes

cache invalidation

0
General
PromptBeginner5 minmarkdown

- Confirm that timeout

retry

0
Coding & Debugging
PromptBeginner5 minmarkdown

- Assess infrastructure-as-code changes for resource sizing

scaling policy

0
Coding & Debugging
PromptBeginner5 minmarkdown

- Check for data validation at trust boundaries: API inputs

file uploads

0
General
PromptBeginner5 minmarkdown

- Missing retry logic for transient failures in network calls

distributed locks

0