agentsclimarketplace

Audit plan

Skill hesprs/harness/skills/audit-plan

Blueprint-based agentic coding harness.

Install
npx -y skills add hesprs/harness --skill audit-plan

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

  • 0 stars0 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

Review a plan before implementation. Use only when user instructs or other skill references.

SKILL.md

3.2 KB, 686 tokens by cl100k_base, as published. Nobody here has run it

Audit Plan

Core Mandate

Review the plan against its purpose, and optimize the plan for maintainability.

Workflow

1. Read & Understand Plan

  1. Read the whole plan file.
  2. Inspect real files in the codebase that are touched until you have enough context about the concrete implementation proposed. Making blind instructions ruins the plan.

2. Validate Plan

  1. Reason about the plan with your context:
    • Does the plan effectively achieves what the source want to do?
    • Are all changes and wiring needed included in the plan?
    • Any logic inconsistencies or flaws?
    • Is the plan likely to break other parts due to public interface shift?
    • Does the plan introduce unnecessary complexity?
  2. For huge logic flaw or incomplete plan, stop immediately and use the ask tool: "Audit failed, flaw found: (explanation). Fix options (possible fix paths)?". If the user answers yes, patch the plan with the changes.

3. Review Plan

  1. Check the whole plan for the design and narrative principles in the Design section.
  2. Think about add / trim tests, optimize interface.
  3. Optionally add hint for individual files if you think the non-public part in the file worth emphasize.

4. Patch

  1. If you find optimizations or small inconsistencies, you can patch the plan directly.
  2. Before patching, use the ask tool with a summary of the changes you will make, then patch the plan according to the user's response.
  3. Do not make any changes without user approval.

5. Report Back

After all steps, report back only:

  • a general summary of the whole plan, not what you changed
  • recommended logical sequence of implementation (note tests are always after implementation)

You must not present the problems found or patches made in your final response, all problems should be addressed in step 2, 3, and 4.

Design

Tests

What should the public interface look like? Which behaviors are most important to test?

You can't test everything. Focus testing effort on critical paths and complex logic, not every possible edge case.

Public Interface

  • Accept dependencies, don't create them.
  • Return results, don't produce side effects.
  • Small surface area. Fewer methods = fewer tests needed. Fewer params = simpler test setup.
  • The deletion test. Imagine deleting the module. If complexity vanishes, it was a pass-through. If complexity reappears across N callers, it was earning its keep.
  • The interface is the test surface. Callers and tests cross the same seam. If you want to test past the interface, the module is probably the wrong shape.
  • Cut off redundancy. Detect and remove unused public interface, too trivial tests, redundant arguments, and over-defensive guards.
  • Reusability. Find similar logic in the plan and shared helpers in the codebase, and optimize for reuse.

Narrative

  • Everything in the plan should be deterministic; Forbid "prefer", "consider", "may ... later".
  • Can the plan be understood by a engineer with no context? File referenced with clear paths, no jargon, integration background explained in the context.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

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.