Install
$ agentstack add skill-jamestorrevillas-dev-skills-code-explanation ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Code Explanation
Core Principle
Comments explain WHY. Code explains WHAT.
If you need a comment to explain what the code does, the code should be cleaner. If you need a comment to explain why it's done this way — write that comment.
The Four Levels of Code Explanation
| Level | Where | Explains | |---|---|---| | Inline comment | Next to specific line | Non-obvious logic or gotcha | | Function docstring | Top of function | What it does, parameters, returns, side effects | | Module header | Top of file | What this module is responsible for | | Architecture note | README / ADR | Why this approach was chosen over alternatives |
What to Comment (and What Not To)
Comment This
// Using exponential backoff here because the payment API
// has a 429 rate limit that triggers on burst traffic
await retryWithBackoff(() => paymentAPI.charge(amount))
// Intentionally not validating here — validation happens
// upstream in the middleware layer (see auth.middleware.ts)
const user = req.user
// This looks backwards but the API returns results
// in reverse chronological order — newest = index 0
const latest = results[0]
Don't Comment This
// Increment counter by 1
count++
// Check if user is authenticated
if (user.isAuthenticated) {
Docstring Template
/**
* Calculates the discount amount for a given order.
*
* @param order - The order to calculate discount for
* @param promoCode - Optional promo code to apply
* @returns The discount amount in cents, or 0 if no discount applies
* @throws InvalidPromoCodeError if the promo code format is invalid
*
* Note: Does NOT check if the promo code is active —
* call validatePromoCode() first.
*/
PR Description: Explaining Your Decisions
When your PR makes non-obvious decisions, explain them:
## Technical Decisions
**Why I chose X over Y:**
[reasoning — constraints, trade-offs, what you considered]
**Known limitations:**
[what this doesn't handle and why that's acceptable for now]
**What I'd do differently with more time:**
[honest reflection — shows growth mindset]
Architecture Decision Records (ADR)
For significant technical decisions, write a short ADR:
# ADR: [decision title]
**Date:** [date]
**Status:** Accepted
## Context
[What situation led to this decision?]
## Decision
[What did we decide to do?]
## Reasoning
[Why this over the alternatives?]
## Trade-offs
[What do we give up with this choice?]
## Consequences
[What becomes easier? What becomes harder?]
Store in /docs/decisions/ or similar — these are gold for future developers.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: jamestorrevillas
- Source: jamestorrevillas/dev-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.