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

Nova Review

skill-lliangcol-llm-plugins-fusion-nova-review · by lliangcol

Unified canonical review Skill. Apply LEVEL and MODE to review depth and output shape; no code modification.

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

Install

$ agentstack add skill-lliangcol-llm-plugins-fusion-nova-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-lliangcol-llm-plugins-fusion-nova-review)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
25d 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 Nova Review? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Shared Execution Policy

This file is the supporting behavioral contract for /nova-plugin:review and the deprecated /nova-plugin:nova-review compatibility entrypoint. Prefer the direct command; the compatibility name remains only for the current major-version migration window.

  • Resolve natural-language and explicit KEY=value inputs using ../_shared/parameter-resolution.md; explicit non-conflicting values take precedence.
  • Apply ../_shared/safety-preflight.md before side effects. Never infer approval, destructive scope, credentials, or output destinations.
  • Follow ../_shared/output-contracts.md and ../_shared/artifact-policy.md; report completed, skipped, and blocked validation truthfully.
  • Respect the frontmatter tool boundary. Missing inputs, unavailable dependencies, overlapping user changes, or repository-policy conflicts are blockers rather than permission to broaden scope.

Execution

  1. Parse $ARGUMENTS against the workflow-specific inputs below.
  2. Read only the context required for the requested scope.
  3. Apply the workflow contract and its strict output format.
  4. Stop before unauthorized side effects; otherwise validate in proportion to risk and report residual risk.

Workflow Contract

> Generated from workflow-specs/behaviors.v2.json. This block is authoritative. Run node scripts/generate-behavior-surfaces.mjs --write after changing the IR; if explanatory text below conflicts, fail closed.

Generated Behavior Index

  • Purpose: Perform evidence-grounded code or design review at the requested depth and output mode without implementation.
  • Canonical inputs: REVIEW_SCOPE(required aliases=INPUT,SCOPE); LEVEL(optional aliases=DEPTH default="standard" exact="lite","standard","strict"); MODE(optional default="full" exact="full","findings-only"); REVIEW_PROFILE(optional default="general" exact="general","plan","codex-review-only","codex-verify-only")
  • Decision entries: 7; canonical routes and variants: review {"REVIEW_PROFILE":"plan"}, review {"REVIEW_PROFILE":"codex-review-only"}, review {"REVIEW_PROFILE":"codex-verify-only"}, review {"MODE":"findings-only"}, review {"LEVEL":"lite"}, review {"LEVEL":"standard"}, review {"LEVEL":"strict"}.
  • Workflow steps: resolve-scoperouteinspectemit
  • Output: mode=chat; order=findingsimpact rationaledirectional guidance; severity=Critical, Major, Minor.
  • Deviation/failure: mode=forbid; failure order=statusmissing inputallowed valuessafe next action.
  • Full IR: runtime/contracts/review.json#behaviorContract embeds the complete decision table, invariants, stops, field definitions, validation, and failure contract from the same source. Detailed guidance below may not override it.

Purpose

Provide structured review findings for code/design artifacts through one canonical surface, with depth and output shape selected by parameters.

Inputs

| Parameter | Required | Default | Notes | Example | | --------- | -------- | ---------- | ---------------------- | ----------------------- | | LEVEL | No | standard | lite, standard, or strict | lite | | MODE | No | full | full or findings-only | findings-only | | REVIEW_SCOPE | Yes | N/A | Review target content; INPUT and SCOPE are accepted aliases | PR diff / module code |

Outputs

  • MODE=full: complete review output at the selected LEVEL.
  • MODE=findings-only: stop after prioritized findings at the selected LEVEL.
  • standard and strict use severity buckets through Critical, Major, Minor.
  • Directional suggestions only.

Workflow

  1. Parse scope, LEVEL, and MODE.
  2. Keep the selected identity as canonical nova-review; apply depth and

output shape as structured parameters.

  1. Emit findings with impact rationale, stopping after findings when

MODE=findings-only.

Examples

  • Natural trigger: Use review on this core module change.
  • Explicit trigger: review LEVEL=standard INPUT="inventory service diff".

Safety

  • No implementation patches.
  • Clearly label facts vs assumptions.

Detailed Contract

CODE REVIEW (NO IMPLEMENTATION)

You are Claude Code acting as a senior engineer / tech lead reviewer.

This command is for analysis and review only. You MUST NOT write, modify, or propose concrete code changes.


INPUT PARAMETERS

From $ARGUMENTS, extract the following:

LEVEL (Optional)

Choose the review depth level:

  • lite → Lightweight PR-style review with concise findings
  • standard (default) → Normal code review with Critical/Major/Minor findings
  • strict → Exhaustive high-stakes audit for production-critical code

If not specified, use standard level.

LEVEL:

MODE (Optional)
  • full (default) → Complete review output at the selected depth
  • findings-only → Stop after prioritized findings; do not add implementation

MODE:

REVIEW_SCOPE (Required)

The code, design, or content to review.

REVIEW_SCOPE: $ARGUMENTS


EXECUTION RULES

You MUST:

  • Review only what is provided
  • Base findings on observable evidence or reasonable inference
  • Clearly distinguish facts from assumptions

You MUST NOT:

  • Write or modify code
  • Provide full implementation examples
  • Redesign the system
  • Expand scope beyond the reviewed content

REVIEW DIMENSIONS

Review the input comprehensively for:

Lite level:
  • Obvious correctness bugs
  • Missing checks or tests likely to matter
  • High-signal maintainability risks
Standard level:
  • Correctness
  • Overengineering or unnecessary complexity
  • Performance issues
  • Concurrency / thread safety risks
  • Error handling and failure modes
  • Test coverage and test quality
  • Maintainability and long-term readability
Additional for strict level:
  • API or module boundary clarity
  • Long-term evolution risks
  • Security vulnerabilities
  • Data integrity risks
  • Operational resilience

OUTPUT FORMAT (MANDATORY)

Group all findings by severity:

Critical

Issues that may cause:

  • Data corruption
  • Security or financial risk
  • Production instability
  • Incorrect business behavior
Major

Issues that:

  • Significantly affect maintainability, scalability, or correctness
  • May lead to bugs under realistic conditions
  • Increase long-term cost
  • Limit scalability or testability (strict level)
Minor

Issues that:

  • Affect readability or consistency
  • Represent missed best practices
  • Are low risk but worth addressing

For each finding:

  • Clearly describe the issue
  • Explain why it matters
  • Provide directional improvement suggestions
  • Suggestions must be conceptual or directional
  • NOT code-level implementations

TONE & STYLE
Standard level:
  • Neutral
  • Precise
  • Review-oriented
  • No persuasive or defensive language
Strict level:
  • Critical but constructive
  • More detailed justification for each finding
  • Assumes production-critical context
  • Failure-cost aware

Assume the reader is:

  • The original author
  • A tech lead
  • Or a future maintainer

NON-GOALS

This command does NOT:

  • Approve or reject the change
  • Decide release readiness
  • Replace human code review
  • Implement fixes

It only evaluates and documents issues.


4.0 VARIANT PROFILES
  • LEVEL=lite|standard|strict selects review depth without changing the canonical surface.
  • MODE=findings-only replaces the output boundary formerly inferred from review-only.
  • /nova-plugin:review-only remains a direct 4.x compatibility invocation with LEVEL=standard MODE=findings-only; automatic routing must not select the alias.
  • REVIEW_PROFILE=plan replaces plan-review.
  • REVIEW_PROFILE=codex-review-only|codex-verify-only uses the retained compatibility assets under skills/nova-codex-review-fix/ and requires explicit shell, network, and assistant-owned authentication approval.

All review variants remain non-implementation workflows and must not modify project files.

END OF COMMAND

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.