agentsclimarketplace

Nova finalize work

Skill lliangcol/llm-plugins-fusion/nova-plugin/skills/nova-finalize-work

AI engineering workflow framework for coding assistants, delivered through nova-plugin.

Install
npx -y skills add lliangcol/llm-plugins-fusion --skill nova-finalize-work

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 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

Finalize completed work artifacts. Produce commit/PR text in Git repo, else local handoff summary and manual steps.

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

9.0 KB, as published. Nobody here has run it

Shared Execution Policy

This file is the supporting behavioral contract for /nova-plugin:finalize-work and the deprecated /nova-plugin:nova-finalize-work 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

<!-- BEGIN GENERATED BEHAVIOR 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: Package completed work into review-ready handoff text without changing the completed state.
  • Canonical inputs: WORK_SUMMARY(required aliases=WORK_SCOPE); DEPTH(optional default="standard" exact="lite","standard")
  • Resolved variant authority: {"DEPTH":"lite"} normalized={"DEPTH":"lite"} -> runtime/contracts/finalize-lite.json; {} normalized={"DEPTH":"standard"} -> runtime/contracts/finalize-work.json. Declared selector defaults are applied before matching. An exact normalized override wins; a non-exact combination that triggers an alias specialization stops as conflicting, and only a valid combination that triggers no specialization uses the canonical fallback. The complete resolved runtime contract is authoritative and no field falls back to canonical prose.
  • Claude static-entrypoint gate: Native command and Skill frontmatter are static. A matching command wrapper may continue after it has verified that its invoked command id equals resolvedWorkflowId; this canonical Skill must not re-resolve or reject that validated wrapper. Only when this canonical Skill is itself the Claude native invoked entrypoint and no validated wrapper gate exists must resolvedWorkflowId equal finalize-work. Otherwise STOP before tools or side effects and invoke the exact direct command /nova-plugin:<resolved commandEntrypoint.directCommandId>; never execute the specialized contract under unmatched canonical frontmatter. Generic and Codex adapters may execute the resolved contract directly under adapter enforcement.
  • Decision entries: 2.
  • Workflow steps: freeze-statedetect-modepackageverify-sections
  • Output: mode=chat; order=title or commit messagechange summaryvalidationhandoffout-of-scope follow-up; severity=none.
  • Deviation/failure: mode=forbid; failure order=statusmissing evidenceavailable handoffsafe next action.
  • Full IR: runtime/contracts/finalize-work.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.
<!-- END GENERATED BEHAVIOR CONTRACT -->

Purpose

Package completed work into review-ready handoff artifacts without new changes.

Inputs

ParameterRequiredDefaultNotesExample
WORK_SUMMARYYesN/ACompleted changes and validation context; WORK_SCOPE is an aliasRefund retry fix + tests
DEPTHNostandardlite or standardlite
Git presenceAutoN/ADecide output mode A/Bgit repository detected

Outputs

  • Git mode: conventional commit message + PR description.
  • Non-Git mode: local change summary + manual handoff/deploy steps.

Workflow

  1. Freeze current state.
  2. Detect Git availability.
  3. Generate corresponding artifact set.
  4. Ensure mandatory sections are present.

Examples

  • Natural trigger: Use finalize-work to prepare PR description for this feature.
  • Explicit trigger: finalize-work WORK_SUMMARY="coupon issuance reliability fix" DEPTH=standard.

Safety

  • Read-only packaging.
  • Follow-up items must be marked out-of-scope.

Detailed Contract

Complete the work results

TASK: FINALIZE WORK ARTIFACTS

You are Claude Code, acting as a disciplined senior engineer responsible for closing a unit of work in a review-ready, handoff-ready state.

This step is purely summarization and packaging. No new decisions, no new changes.


REQUIRED INPUTS

From $ARGUMENTS, resolve:

  • WORK_SUMMARY (required; WORK_SCOPE is an accepted alias)
    • A factual summary of completed changes and validation evidence
  • DEPTH (optional, default standard; allowed values lite and standard)
  • Whether a Git repository is present

Current task context may satisfy WORK_SUMMARY only when it explicitly states the completed changes and validation. You MUST NOT invent, infer, or assume work that is not present in that context.


EXECUTION RULES

  1. DO NOT modify any code, configuration, or documents
  2. DO NOT redesign, refactor, or extend scope
  3. DO NOT introduce new decisions
  4. Treat the current working state as final and frozen

This step is about describing what exists, not improving it.


OUTPUT MODE DECISION

Case A — Git repository is present

You MUST generate:

  1. A conventional commit message

    • Follows type(scope): summary
    • Reflects actual changes only
    • No speculative or future-looking language
  2. A pull request description, including:

    • What was changed
    • Why it was changed
    • How it aligns with the approved plan (if applicable)
    • Known limitations
    • Follow-up work (explicitly marked as out-of-scope)

Case B — Git repository is NOT present

You MUST generate:

  1. A local change summary, suitable for:

    • Manual review
    • Handoff to another engineer
    • Inclusion in internal documentation
  2. Manual deployment or handoff steps, if applicable

    • Only steps required to apply or verify the existing changes
    • No new setup or optimization steps

REQUIRED CONTENT (ALWAYS)

Regardless of Git availability, the output MUST explicitly include:

1. What was changed
  • High-level, factual description
  • No implementation speculation
2. Why it was changed
  • Business, technical, or operational motivation
  • Should trace back to:
    • The original problem
    • Or an approved plan
3. Known limitations
  • Edge cases
  • Trade-offs
  • Intentional exclusions
4. Follow-up work (if any)
  • Clearly labeled as NOT part of this change
  • Suitable for future tickets or plans

STYLE & TONE REQUIREMENTS

  • Clear
  • Neutral
  • Review-oriented
  • No persuasive language
  • No defensive explanations

Assume the reader is:

  • A reviewer
  • A tech lead
  • Or a future maintainer

NON-GOALS (Explicitly Out of Scope)

This command does NOT:

  • Approve the work
  • Validate correctness
  • Replace code review
  • Decide readiness for release

It only packages the outcome of prior steps.


POSITION IN THE OVERALL FLOW

This command is the final step after implementation is complete:

  1. Explore → Understand the problem
  2. Plan → Design the solution
  3. Review → Validate the approach
  4. Implement → Execute the changes
  5. Finalize(YOU ARE HERE) → Package and document the completed work

4.0 VARIANT PROFILES

  • Default: complete handoff and delivery packaging.
  • DEPTH=lite: former finalize-lite short factual closure.

Neither profile upgrades validation or release-readiness claims.

END OF COMMAND

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.