medharness: Skill for Claude Code

.claude/skills/prd-implementation-precheck/SKILL.md

prd-implementation-precheck is a skill for Claude Code from charliehzm/medharness. It costs 192 tokens per session (904 once invoked), scanned A, original, Apache-2.0.

Predbežná kontrola PRD alebo TDD pred začatím implementácie. PRD opisuje produktové požiadavky a TDD technický návrh; kontrola hľadá nejasné hranice, kritériá a závislosti.

In plain words
What is it for?
Na vytvorenie správy s blokermi, upozorneniami a návrhmi týkajúcimi sa rozsahu funkcií, testov, metrík, závislostí a Definition of Done.
Why use it?
Odhaľuje blokery ešte pred návrhom riešenia a programovaním. Tým znižuje riziko prerábania práce pre nejasný rozsah, nemerateľné výsledky alebo chýbajúcich vlastníkov závislostí.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is charliehzm/medharness's own configuration. It tells Claude Code how to work on medharness itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything medharness configures →

Reuse

Borrowing it

Nothing to install: this file belongs to charliehzm/medharness. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/charliehzm/medharness/main/.claude/skills/prd-implementation-precheck/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/charliehzm/medharness

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for prd-implementation-precheck

README.md
[![agentmods](https://agentmods.dev/badge/skills/charliehzm/medharness/prd-implementation-precheck/github.svg)](https://agentmods.dev/skills/charliehzm/medharness/prd-implementation-precheck)
Your own site
<a href="https://agentmods.dev/skills/charliehzm/medharness/prd-implementation-precheck"><img src="https://agentmods.dev/badge/skills/charliehzm/medharness/prd-implementation-precheck/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for prd-implementation-precheck

Your own site · 80×15
<a href="https://agentmods.dev/skills/charliehzm/medharness/prd-implementation-precheck"><img src="https://agentmods.dev/badge/skills/charliehzm/medharness/prd-implementation-precheck.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 192 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 904 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00192 $0.00904
Opus 5 $0.00096 $0.00452
Sonnet 5 $0.00038 $0.00181
Haiku 4.5 $0.00019 $0.00090

Measured 10d ago against content hash 8669b2a98528, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

prd-implementation-precheck scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/prd-implementation-precheck/SKILL.md · 82 lines

How it starts

The opening of the file, as written. The whole thing — 82 lines — stays where its author put it; the contents beside it link to each section on GitHub.

PRD Implementation Precheck

The Step 1 / Step 2 gate. Catches PRD / TDD ambiguity before OpenSpec is generated, so we don't have to retrofit later.

Core mental model

A PRD is implementation-ready when:

  • Every feature has a defined boundary (in/out of scope, both stated)
  • Every acceptance criterion has a measurable test hook
  • Every cross-team dependency has a named owner
  • Every metric has a baseline + target + measurement method
  • The scope is broken into shippable stages, each with its own DoD

This skill scans for violations and emits a gap report.

What this skill produces

PRD_PRECHECK_REPORT.md with:

  • Blockers (must fix before proceeding)
  • Warnings (should fix; can proceed with explicit override)
  • Suggestions (informational)

When NOT to use

  • Writing or expanding a PRD (use prd)
  • Compliance pre-check (use compliance-precheck Step 0)
  • Architecture review (use Plan agent / openspec-new-change)

Active context bundle

Always load first

  1. This SKILL.md
  2. The target PRD / TDD file
  3. reference/precheck-checklist.md — 30+ canonical gaps
  4. reference/severity-rubric.md

Workflow

  1. Read PRD / TDD top to bottom.
  2. Run checklist — for each item, mark present / missing / vague.
  3. Stage breakdown audit — does the PRD propose a stage 1 / 2 / 3 split? Each stage has its own DoD?
  4. Metric audit — every KPI has baseline + target + measurement method?
  5. Dependency audit — every "needs X from team Y" has an owner + due date?
  6. Compose report — group by severity, point at exact PRD section/line.
  7. Hand off — if blockers > 0, send back to prd Skill; if only warnings, surface to user for explicit accept/fix decision.

Hard gate / soft gate

Hard for blockers. Warnings can be accepted with sign-off (recorded in report).

Common failure modes

  1. "Looks complete" trap — PRD reads fluently but lacks measurable criteria. Mitigation: always demand metric formula, not metric name.
  2. Stage breakdown handwaved — "Stage 1 MVP, Stage 2 polish" with no scope cut. Mitigation: require feature-level allocation per stage.
  3. Owner = team name — "Backend team" is not an owner. Mitigation: require named individual + role.
  4. Acceptance via dogfooding — "users say it's good" is not measurable. Mitigation: require quantitative + qualitative pair.

Read the full file on GitHub · 82 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 82 lines · 192 tokens per session scan A 8669b2a98528

Subscribe to this mod's changes

prd-implementation-precheck is a skill published in the GitHub repository charliehzm/medharness (86 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 192 tokens to every session and 904 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

hipaa-review

Performs a HIPAA Security Rule compliance review against all Administrative, Physical, and Technical Safeguards defined in 45 CFR Part 164, Subpart C. Auto-invoked when discussing healthcare data security, ePHI protection, HIPAA audit readiness, or business associate compliance. Evaluates required and addressable…

UnitOneAI/SecuritySkills · 86 tokens

HIPAA Compliance Testing

Testing HIPAA compliance for healthcare applications including PHI handling, audit logging, access controls, and data encryption verification.

PramodDutta/qaskills · 28 tokens

Healthcare Compliance

HIPAA compliance, healthcare regulations, privacy and security standards for medical organizations and providers.

jmsktm/claude-settings · 19 tokens

compliance

Use when scoping which regulatory frameworks bind a business — SOC 2, ISO 27001, HIPAA, PCI DSS, EU AI Act, DORA, NIS2 — building a control register with owners and evidence, or standing up the cadence that keeps it audit-ready. NOT drafting privacy-policy/ROPA/DPA or ToS text (that is gdpr-privacy, terms-conditions)…

ericrisco/rsc-harness · 96 tokens

healthcare-expert

Expert-level healthcare systems, medical informatics, HIPAA compliance, and health data standards. Use when the user mentions medical, HIPAA, HL7, FHIR, or EHR, or when the task involves Healthcare IT, Standards and Protocols, Regulatory Compliance, or Security and Compliance.

personamanagmentlayer/pcl · 64 tokens

performing-soc2-type2-audit-preparation

Automates SOC 2 Type II audit preparation including gap assessment against AICPA Trust Services Criteria (CC1-CC9), evidence collection from cloud providers and identity systems, control testing validation, remediation tracking, and continuous compliance monitoring. Covers all five TSC categories (Security…

adriannoes/awesome-agentic-ai · 112 tokens