← ClaudeAtlas

check-identity-packlisted

Run an AFP 100-point or AUSTRAC safe-harbour identity check over a set of documents, and report exactly what's missing. Use when the user asks to check identity documents, verify someone's ID for onboarding, or assess whether a document pack satisfies Australian identity requirements.
Sketchjar/stipple-agent-skills · ★ 0 · AI & Automation · score 60
Install: claude install-skill Sketchjar/stipple-agent-skills
# Check Identity Pack Run an AFP 100-point or AUSTRAC safe-harbour identity check over a document set. Reports the points attained, per-document status, and **exactly what's missing** — so the user can request only the absent documents and re-run. Uses the Stipple API (free anonymous tier). ## When to use - Onboarding employees, tenants, contractors, or customers in Australia - KYC flows needing AFP 100-point or AUSTRAC safe-harbour compliance - "Do these documents satisfy the 100-point check?" ## Instructions 1. **Get the documents.** Multiple file paths or URLs (PDF/images): passport, driver's licence, medicare card, bank statement, utility bill, etc. 2. **Choose the scheme:** - `afp_100_point` — the standard Australian 100-point system - `austrac_safe_harbour` — AUSTRAC safe-harbour identity verification 3. **Run the check.** POST the document set (multipart, multiple `files` parts): ```bash curl -X POST "https://www.stipple.sh/v1/identity-check?scheme=afp_100_point" \ -F "files=@passport.pdf" \ -F "files=@medicare-card.jpg" \ -F "files=@bank-statement.pdf" \ -H "Authorization: Bearer $STIPPLE_API_KEY" ``` 4. **Interpret the response.** - `status` — complete / incomplete / failed - `points_total` — points attained (e.g. 95/100) - `checks[]` — per-document: type detected, point value, status - `missing[]` — **exactly what is missing** (e.g. "evidence of current residential address within last 3 months") 5. **Report w