agentsclimarketplace

Speckit.checker

Skill wedabro/bro-skills/.agent/skills/speckit.checker

bro-skills - Spec-Driven Development CLI

Install
npx -y skills add wedabro/bro-skills --skill speckit.checker

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

Static Analysis Aggregator - Run static analysis on the codebase.

SKILL.md

3.0 KB, as published. Nobody here has run it

🎯 Mission

Detect coding-standard violations, security issues, and performance anti-patterns using commands appropriate to the actual project stack. MUST run applicable checks β€” do not claim a check passed from visual review.

πŸ“₯ Input

  • Source code and dependency manifests
  • .agent/memory/constitution.md (coding standards)
  • .agent/project.json and documented build/test commands
  • Docker files when the project is containerized

πŸ“‹ Protocol

Phase 1: Capability Discovery

  1. Read project configuration and dependency manifests.
  2. Detect language, package manager, containerization, services, and available build/lint/type-check scripts.
  3. Build an applicability table. Mark unavailable checks N/A with a reason; never treat N/A as a pass or failure.

Phase 2: Compile, Type, and Lint Checks

  • Run the repository-defined compile, type-check, and lint commands.
  • If the constitution requires container execution, run them in the matching service. Otherwise use the project's documented runtime.
  • Compiler/type errors are πŸ”΄ CRITICAL. Lint severity follows project policy.
  • Do not assume TypeScript, npm, a monorepo, or fixed service names.

Phase 3: Container Checks (When Applicable)

  • Validate every discovered Compose file with docker compose ... config.
  • Verify Dockerfile COPY sources, non-root production runtime, health checks, environment-driven published ports, and no production source shadowing.
  • If the project is not containerized, record this phase as N/A.

Phase 4: Configuration and Security

  • Scan source and tracked files for likely secrets, unsafe URL/endpoint literals, injection sinks, unsafe HTML, dynamic evaluation, and SQL concatenation.
  • Exclude generated/vendor directories and report redacted locations only.
  • Treat intentional public URLs, documentation links, and schema identifiers according to project policy rather than flagging every https:// literal.

Phase 5: Stack-Specific Integrity

  • Apply framework checks only when that framework is detected.
  • For monorepos, verify package exports and cross-package contracts.
  • For server-rendered applications, inspect build-time data fetching and error behavior according to the framework and project requirements.

πŸ“€ Output

  • File: .agent/memory/checker-report.md
  • Format:
    ## πŸ”΄ CRITICAL (N issues)
    - `apps/web/src/app/page.tsx:65` β€” Property 'category' does not exist on type 'Article'
    ## 🟑 WARNING (N issues)
    - `compose.prod.yml:40` β€” Source mount overrides the built production artifact
    ## 🟒 INFO (N issues)
    - ...
    

🚫 Guard Rails

  • Report ONLY β€” DO NOT edit the code yourself.
  • Each finding must have a specific file path + line number.
  • MUST run every applicable configured check; visual scanning alone is not enough.
  • If there is πŸ”΄ CRITICAL β†’ FAIL conclusion, deployment is NOT allowed.

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.