auditing-deep-link-contracts — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited auditing-deep-link-contracts (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use this skill to define and audit deep link behavior so links open the correct screen with correct parameters across cold and warm starts.
Deep link contract audit progress:
- [ ] 1) Confirm minimum inputs (platforms, routes, entry points)
- [ ] 2) Draft a deep-link contract (JSON)
- [ ] 3) Validate the contract (script)
- [ ] 4) Generate test vectors (script)
- [ ] 5) Audit routing behavior (findings + fixes)
- [ ] 6) Verify fixes (cold and warm start)Ask only what is needed:
Create deep-link-contract.json in .mobile/ (recommended) or project root.
Recommended location: .mobile/deep-link-contract.json
Example:
{
"base": "myapp://",
"routes": [
{
"name": "order_detail",
"path": "/orders/{order_id}",
"required_params": ["order_id"],
"optional_params": ["ref"],
"auth_required": true,
"supported_states": ["cold", "warm"]
}
]
}Run:
bash skills/auditing-deep-link-contracts/scripts/validate-deep-link-contract.sh \
.mobile/deep-link-contract.jsonRun:
bash skills/auditing-deep-link-contracts/scripts/generate-deep-link-test-vectors.sh \
.mobile/deep-link-contract.json \
.mobile/deep-link-test-vectors.jsonFor each test vector, confirm:
Re-run the test vectors after changes and confirm all expected behaviors.
SKILL.mdreferences/examples/ (optional)scripts/ (execute; do not load)references/deep-link-contract.md~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.