Devrites audit
Skill ViktorsBaikers/DevRites/pack/generated/codex/skills/devrites-audit
Stop your AI from shipping half-baked code. A disciplined senior-engineer workflow for Claude Code (spec, vet, build, prove, review, seal, ship) that keeps each feature's state on disk, catches spec drift mid-build, gates every phase on your project's principles, and refuses to claim "done" without proof.
npx -y skills add ViktorsBaikers/DevRites --skill devrites-auditAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Internal DevRites skill; DevRites agents invoke it explicitly, not by prompt match.
SKILL.md
5.6 KB, as published. Nobody here has run it
Codex compatibility
This is the Codex mirror of a DevRites skill. In Codex:
- Load DevRites engineering standards from
.agents/skills/devrites-lib/reference/standards/. Read.agents/skills/devrites-lib/reference/standards/core.mdbefore workflow work, then load the other.agents/skills/devrites-lib/reference/standards/*.mdfiles exactly when this skill asks for them. - Installed
.agents/mirrors may be Git-ignored. If a repository-aware file tool refuses an ignored path, read it with a native filesystem command instead; a tool refusal is not a completed task. - For automatic Engram calls, omit optional
projectandsession_idunless an exact value came from Engram or repository configuration. Never derive either fromtask_name, a run ID, directory name, or normalized slug. Callmem_session_summarywithout them by default; onunknown_sessionorunknown_project, retry once with both optional fields omitted. If auto-detection is ambiguous, ask the user instead of guessing. - Use the installed
devrites-enginebinary as the canonical runtime helper surface for orientation, gates, and state mutation. - Invocation and dispatch are different: invoke means run a skill in this context; dispatch means start a fresh agent with
spawn_agent, await it, and reconcile its result. Never describe inline skill work as a dispatch. - On MultiAgent V2, call
spawn_agentwith the exact namedagent_type=devrites-<role>, a uniquetask_name, andfork_turns="none". A missing visibleagent_typefield is still V2—not capability loss, V1, or HITL—so send it anyway. If the named call rejects it, stop before any generic/default spawn. Codex loads the role TOML'sdeveloper_instructionsnatively; DevRites verifies the durable rollout, wait, completion, and delivered result. - Only after the runtime explicitly identifies MultiAgent V1, use generic
explorerfor a read-only role withfork_turns="none"and name exactly one.codex/agents/devrites-<role>.tomlcontract in the message. Trusted.codex/hooks.jsoninjects that contract's exactdeveloper_instructionsand binds the child to the fail-closed reviewer read-only guard. - On explicitly identified MultiAgent V1,
devrites-slice-wrightuses genericworkerwithfork_turns="none"and the exact role TOML named in the message. Trusted.codex/hooks.jsonbinds it to the active reconcile window and.wright-allowlist. - The invoked skill's
required-agent-rolesfrontmatter arms the fail-closed Stop receipt. Every listed role must have a confirmed start, wait, and non-empty result in this turn. - If the required dispatch for the explicitly identified runtime is unavailable or rejected, stop for HITL. Never switch runtime lanes. Never execute a DevRites specialist role in the root context.
- Wait for every required fresh-context dispatch before reconciling or advancing. A backgrounded or lost result is incomplete.
- Codex project hooks are installed in
.codex/hooks.json; declared-leaf hooks are scoped inside.codex/agents/devrites-*.toml. Review and trust them with/hooksbefore relying on hook enforcement. - When this skill asks a HITL question via
AskUserQuestion: Codex's equivalent (request_user_input) exists only in Plan mode. Outside Plan mode, render the option set as a plain numbered list in chat and end the turn so the human answers: NEVER silently pick an option yourself; auto-picking is AFK's contract, gated by the.devrites/AFKsentinel.
devrites-audit: read-only audit dispatch
Dispatch one fresh-context, read-only review axis for the active feature. The caller decides how to use the report; this skill never edits.
Axis
| Argument | Role | Discipline |
|---|---|---|
security | devrites-security-auditor | trust boundaries, OWASP, secrets, dependencies |
perf | devrites-performance-reviewer | measure-first hot paths, N+1, payload/bundle and stated budgets |
simplify | devrites-simplifier-reviewer | behavior-preserving deletion/simplification; Suggestion/Nit/FYI only |
If no axis is supplied, infer only when intent is unambiguous; otherwise the root asks the human before dispatch.
Gather and dispatch
- Resolve
.devrites/ACTIVE; requirespec.mdandtouched-files.md. - Follow the universal file-backed packet, result, budget, retry, and fresh-context
dispatch ladder in
agents.md. - Set
payload.type: review-findings; includespec.md,decisions.mdwhen present,evidence.mdfor performance,touched-files.md, and the immutable diff. - Objective: derive expected behavior independently, apply the role's documented
discipline, and return one labeled finding per line with
file:line. - Await, validate, and pass the role payload to the caller verbatim. The root reconciles and decides what to accept.
Use one dispatch per axis. If several axes are requested, use separate packets with no cross-pollination and the shared maximum of three concurrent read-only roles.
Fallback and scope
Use the capability ladder. If no safe fresh-context rung preserves the role's read-only boundary, stop for HITL. Use these role contracts:
.codex/agents/devrites-security-auditor.toml.codex/agents/devrites-performance-reviewer.toml.codex/agents/devrites-simplifier-reviewer.toml
Stay inside the active feature. Critical findings block seal; simplification never changes behavior.