AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Afk Internal Review

skill-alvinshenssw-afk-afk-internal-review · by AlvinShenSSW

Part of the afk pipeline. The deep internal production-readiness review of a PR, run BEFORE the ordered independent external roles. Emits APPROVE / APPROVE-WITH-COMMENTS / BLOCK as a concise, agent-actionable handoff; the full report is produced only once internal review and every configured external role are clean. Triggers include "/afk-internal-review", "internal review PR N", "review before m…

No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add skill-alvinshenssw-afk-afk-internal-review

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-alvinshenssw-afk-afk-internal-review)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Afk Internal Review? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

afk-internal-review

The final internal review before merge — a rigorous, high-stakes read whose job is to protect production. It runs before the ordered external roles: internal review first, outer through any later configured roles afterward. Use the strongest available reasoning model; if the session runs a lighter one, flag it before proceeding. If no PR or branch is given, ask for one.

This review is not the last gate, so its routine output is a cheap, structured handoff the fixing agent and ordered external roles can act on — not a long report. The long report is written only at the very end (see Output).

1 — Gather context

Collect every signal before forming an opinion: PR metadata and linked issue/spec and its frozen issue contract; the full diff; commit history; CI status; the surrounding code of changed functions (not only the diff lines); existing tests and coverage; new dependencies; config, migrations, and flags; recent related merges.

CI hard gate: if a required check is failing or pending, do not do a deep review — send the branch back to get CI green first, unless the operator asks to review-with-caveat (then note that the review predates green CI).

2 — Deep review

Evaluate every dimension; do not skip one because it seems unlikely:

  • Correctness — meets the spec and acceptance criteria; logic, edge cases,

error handling.

  • Security & privacy — injection, authz on new actions, secrets, sensitive

data in logs or responses, input validation at boundaries.

  • Backward compatibility — breaking changes to public contracts; safe

rollback; reversible, live-safe migrations.

  • Data integrity — correct transformations, atomic writes, race/TOCTOU,

validation before persistence.

  • Performance — N+1s, missing indexes, unbounded loops, cache invalidation.
  • Concurrency & reliability — thread/async safety, idempotency, timeouts.
  • Observability — appropriate logging and error surfacing.
  • Test coverage — new behaviour, edge cases, and failure paths tested;

deterministic; meaningful (not passing by accident).

  • Architecture — aligned with existing patterns; the simplest correct

solution; no needless coupling or tech debt.

  • Engineering rules — no silent skip/exit; no duplicated helper or constant;

superseded code overwritten, not layered; position-touching paths fail closed; plus any invariant in .afk/config.md.

  • Release risk — coordinated deploy needs, migration ordering, blast radius,

rollback.

3 — Targeted verification (conditional)

Trust the deterministic CI for what it covers; do not re-run the full suite. Run a targeted test only when a specific concern from step 2 warrants a live check (an untested logic path, a data/security concern, a new integration). If a concern needs no live check, say so.

Output

Interim (every round until clean) — a concise handoff

A terse, structured block, optimized for the fixing agent and external roles — no prose essay, no full checklist dump:

decision: APPROVE | APPROVE-WITH-COMMENTS | BLOCK
blockers:
  - id — file:line — contract/invariant — reachable evidence — consequence — minimal causal fix
risks:
  - id — P2 — file:line — demonstrated structural risk — operator merge decision pending
suggestions:
  - file:line — improvement
verify: targeted tests run and results, or "none needed"

Hand this back to be fixed; re-review after fixes. Never emit APPROVE while a blocker is open. A reported concern begins UNTRIAGED; admit it as a blocker only after every blocker field above is demonstrated. Otherwise classify it P2, minor, or out-of-scope without changing scope. Put a demonstrated structural P2 under risks so it cannot disappear into suggestions; minor and out-of-scope items go under suggestions. If an admitted P1 already requires a content pass, recommend batching a verified lower-severity item only when it is in scope, shares the same root cause or touched surface, adds no dependency, migration, public contract, or product choice, and needs no review round beyond the P1 re-review. A lower-severity-only verdict never reopens a clean revision.

Final report — only when internal review AND all configured roles are clean

Once this review has no open blockers and all configured external roles have returned clean on the same HEAD and merge-base, and the final full suite is green, write the full human report: summary, decision and rationale, everything reviewed, residual risk, and the production-readiness checklist.

  • Auto-merge policy (merge-when-green / merge-to-unblock in

.afk/config.md): write the final report into the run's own directory, as .afk/runs//PR#-.md — a report belongs to the run that produced it, so it is never written to a path another run also owns. Take ` from the run you are executing under; invoked outside a run, allocate .afk/runs/-pr/ the same collision-safe way the afk skill allocates a run directory (create failing if it exists, retry the next suffix), so two standalone reviews of one PR on one date do not land in a shared directory. Give it a ledger.md header too — run-id, scope (the PR you reviewed), state, heartbeat — and set state: complete when the review ends: afk reads a ledgerless directory as a run mid-claim and would wait on yours forever. Resolve .afk/ against the main working tree (the first worktree line of git worktree list --porcelain), never the current directory, so a review from a linked worktree still writes to the run's one directory. The filename leads with PR#-; sanitize the title for the filesystem (illegal characters and whitespace collapsed to -`, case preserved, length-capped) and add a numeric suffix only to avoid clobbering an existing file.

  • Interactive (leave-open): present the report in the session, and also

save it when the config opts in.

Hard rules

  • Never approve with an open admitted P1. Admission requires a frozen-contract or

invariant anchor, reachable trigger, demonstrated wrong consequence, pre-merge necessity, and minimal causal fix. Severity from a reviewer is a proposal, not an admission.

  • Never present a structural P2 as auto-merge-safe. It may coexist with an

approval stamp, but the operator owns that risk at the merge boundary.

  • Never merge, push, or deploy — the review ends at the verdict.
  • Always cite file:line; always read surrounding context, not only the diff.
  • Spec compliance is a first-class check: passing tests but not doing what the

issue asks is a blocker.

  • Do not invent requirements, implement out-of-scope suggestions, or turn an

architectural preference into a blocker.

  • You are not the last gate — the ordered role sequence (outer through any

later configured roles) runs after your verdict. Note the handoff ("next: external outer role") so the operator knows the pass is not final.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.