TEMPLATE — replace with the description of your rule. Should activate on the specific code patterns your fork has. Activate on `<your trigger keywords or function names>`.
Scanned 5/27/2026
Install via CLI
openskills install omermaksutii/RugProof---
name: example-fork-detection
description: TEMPLATE — replace with the description of your rule. Should activate on the specific code patterns your fork has. Activate on `<your trigger keywords or function names>`.
---
# Example fork-specific rule
This is a template for community-authored Rugproof skills. Replace every section.
## When this applies
Describe the specific situation. Be concrete:
- Which import is present?
- Which function name is called?
- Which inheritance chain?
- Which deployment context (mainnet, L2, fork)?
## Detection patterns
For each pattern, give:
```solidity
// example of the bug shape
function vulnerableThing() external {
// ...
}
```
Followed by a one-paragraph explanation.
## Severity rubric
| Pattern | Severity |
|---|---|
| <pattern A> | **Critical** |
| <pattern B> | **High** |
## Remediation patterns
How to fix. Include code diffs where possible.
## False-positive notes
When does the pattern NOT indicate a bug?
## Related
- [[other-rugproof-skill]] — link to base skills your rule extends
No comments yet. Be the first to comment!
Implement NFT standards (ERC-721, ERC-1155) with proper metadata handling, minting strategies, and marketplace integration. Use when creating NFT contracts, building NFT marketplaces, or implementing digital asset systems.