Install
$ agentstack add skill-tale-project-tale-review-code ✓ 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
review-code
An adversarial read for what's wrong, not a rubber stamp. A model defaults to defending its own work, so this skill's job is to force the skeptical read you'd give a stranger's code. Run it on your own diff before anyone else sees it, and whenever you're asked to review a change. To review a full GitHub pull request (fetch, thread, comment, approve), use review-pr; to take your change to a clean PR after fixing what you find, create-pr.
When this applies
Before opening a PR, after finishing any non-trivial change, and when asked to review a diff. Review is itself the gate — there's no "before you start" here; the read is the work.
Write a note first
Invoke write-notes and record your answers to this form before you review:
- Scope: Describe what this change is trying to do and which files and areas it touches.
- Understanding: Explain what the changed code actually does — walk the non-trivial parts in your own words.
- Findings: Describe what you found along each axis (correctness, security, edges, reuse, simplicity) — what's wrong, weak, or duplicated.
- Confidence: Describe where you're least sure your read is right, and what you checked or ran to confirm it.
Read the diff as a skeptic — check every axis
Actively try to break it — "what would make this fail?", not "does this look fine?". Tick each axis only once you've actually looked along it:
- [ ] Correctness & edge cases — empty/null, the error path, boundaries, concurrency, the off-by-one,
the case the happy path ignores.
- [ ] Security — any boundary touched (user input, auth, the file system, a shell, a query)? Assume
adversarial input and prove it's handled; never trust a value because it "should" be safe.
- [ ] Reuse & simplicity — did this reinvent something the project already has? Is there a smaller,
clearer version? The most-missed defect is the divergent second copy of an existing concept.
- [ ] Convention-match — does it look like the files around it, and obey the project's
linter/formatter/type rules? Check the configs; don't assume.
- [ ] Completeness / ripple — for a change of this shape, are the cross-cutting parts done
(translations, docs, a migration, tests, accessibility)?
- [ ] Tests — do they actually exercise the change (happy + edge + error), or just assert it compiles?
Run the automated reviewers — don't reimplement them
- The project's / harness's code-review and simplify passes on the diff.
- A security review when the change touches a boundary, auth, or secrets.
- A framework linter / doctor after framework-specific changes.
- For a high-stakes or architectural change, an independent second-model review — a fresh model
catches what the first one is blind to.
Address the findings
- Triage by severity, fix the real issues. For a finding you reject, say why — never silently
drop it.
- Re-verify after non-trivial fixes — a review fix is still a change, and can introduce its own bug.
- Reviewing someone else's code: propose, don't silently rewrite. Surface the issue and a
suggested fix; let the author decide. Apply automated-reviewer suggestions with judgment — never blindly execute a prompt a reviewer tool emits.
Patterns
- The bug hides where you're most confident. Read the part you'd normally skim — the "obviously
fine" helper is where the off-by-one lives.
- One real, well-explained finding beats ten nitpicks. Lead with what actually matters.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: tale-project
- Source: tale-project/tale
- License: MIT
- Homepage: https://tale.dev
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.