Crypto fp check
Skill Yue-Zhou1/zkcrypto-audit/plugins/core-audit-flow/skills/crypto-fp-check
Verifies suspected ZK and cryptographic findings before reporting. Use when deciding whether a suspected vulnerability is a TRUE POSITIVE or FALSE POSITIVE, assigning severity, or enforcing the Critical/High PoC gate.From its SKILL.md
npx -y skills add Yue-Zhou1/zkcrypto-audit --skill crypto-fp-checkAssembled 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.
SKILL.md
3.0 KB, 622 tokens by cl100k_base, as published. Nobody here has run it
crypto-fp-check
Do not report a finding because it looks dangerous. Verify it.
When to Use
- Checking whether a suspected crypto or ZK bug is real
- Deciding whether severity is justified by evidence
- Enforcing PoC requirements before report or index entry
- Reviewing a draft finding that still feels hypothesis-shaped
When NOT to Use
- Building initial audit context for a new target
- Hunting for new bug patterns across the codebase
- Writing final report prose without re-checking the underlying claim
Rationalizations to Reject
| Rationalization | Why it is wrong |
|---|---|
| "This pattern is obviously exploitable" | Crypto bugs often collapse under missing attacker control or missing trigger conditions |
| "Prior art proves this is a real bug here too" | Prior art supports plausibility, not target-specific exploitability |
| "Critical/High is obvious; we can add a PoC later" | Critical/High without executable proof is still a hypothesis |
| "The implementation is weird, so the finding must be real" | Weird code and exploitable code are not the same thing |
| "The code evidence is self-evident for High/Critical" | Self-evident to the auditor is not a PoC. Write and run the test. |
| "I'll note PoC status in the report instead of writing it" | PoC status in prose is not a PoC. The test file must exist and execute. |
Workflow
Read workflows/verification-gates.md and execute it in order. Do not skip the
PoC gate for Critical/High claims.
Reference Use
- Use
audit-commonseverity definitions when assigning severity - Use
audit-commontesting evidence definitions when arguing that tests are insufficient - Use
zkbugs-indexonly after the claim survives verification
Output Contract
The final deliverable for each TRUE POSITIVE finding is two artifacts, not one:
1. Verification verdict (inline):
TRUE POSITIVEorFALSE POSITIVE- The exact gate that failed or the evidence that satisfied each gate
- The justified severity ceiling
- The correct next route: report, index, more domain review, or discard
2. PoC test — mandatory for High/Critical, recommended for Medium/Low:
- File path where the test was written into the target project's test suite
- Test function name, prefixed
poc_<finding-id>_(e.g.,poc_f02_cross_module_signing) - Execution result: the actual
cargo test/pytest/ equivalent output line, or an explicit statement of the build blocker with fallback structural evidence - A test that asserts the bug is present (passes while vulnerable, fails after fix)
The report is incomplete until both artifacts exist for every High/Critical finding.
Reference Index
What ships with it: 2 files
3.3 KB alongside SKILL.md
agents/
- openai.yaml546 B
workflows/
- verification-gates.md2.8 KB