Best for
- accessibility intake for someone who cannot use a web-based audit form
- gathering verbal barrier reports to populate a VPAT 2.4 / Section 508 audit report
- "call and ask about accessibility issues" or similar one-off outbound intake requests
CALLE-AI/awesome-phone-call-agents/skills/accesscall/SKILL.md
Conduct phone-based accessibility intake interviews for users who cannot complete web-based accessibility audit forms (screen reader fatigue, motor impairment, low vision, cognitive load), and produce a structured result mapped to VPAT 2.4 / Section 508 conformance reporting fields.
Decision brief
Use this skill when a user wants to conduct an accessibility intake interview by phone instead of a web form, typically to support a Section 508 or WCAG conformance audit (VPAT 2.4).
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/CALLE-AI/awesome-phone-call-agents --skill "skills/accesscall"Inspect the Agent Skill "accesscall" from https://github.com/CALLE-AI/awesome-phone-call-agents/blob/a34d6b803ee2f1b80446056dcef38911882726e5/skills/accesscall/SKILL.md at commit a34d6b803ee2f1b80446056dcef38911882726e5. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
scripts/format-to-vpat.js depends on docx, jszip, and xml-js (declared in package.json). Run npm install inside skills/accesscall/ before using it — without this step it fails immediately with Cannot find module 'jszip'. scripts/parse-recap.js and scripts/phone-utils.js have no…
1. Confirm required inputs: recipient phone number, product or site name being audited, preferred language (default English, US). Ask for anything missing; do not fabricate a phone number or product name. 2. Validate the phone number against E.164 (scripts/phone-utils.js, isE164…
accessibility intake for someone who cannot use a web-based audit form
Do not use this skill to:
Never place a call without the user explicitly confirming the recipient and intent first. Setup/verification steps must never trigger runcall.
Permission review
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 93/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 66 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Use this skill when a user wants to conduct an accessibility intake interview by phone instead of a web form, typically to support a Section 508 or WCAG conformance audit (VPAT 2.4).
Accessibility intake forms are themselves often inaccessible: screen reader fatigue, motor impairment, low vision, or cognitive load can all block someone from completing the exact form meant to capture their barrier report. AccessCall places a short phone call instead, conducts a structured verbal interview, and returns a result that maps onto standard VPAT 2.4 conformance report fields.
Use this skill for:
Do not use this skill to:
scripts/format-to-vpat.js depends on docx, jszip, and xml-js (declared in package.json). Run npm install inside skills/accesscall/ before using it — without this step it fails immediately with Cannot find module 'jszip'. scripts/parse-recap.js and scripts/phone-utils.js have no external dependencies and need no install step.
scripts/phone-utils.js, isE164/assertE164) before calling plan_call. If it does not match E.164 format, reject it and ask the user to correct it — do not reformat, guess a country code, or silently pass a malformed number through to plan_call.plan_call with the goal built from references/call-task-template.md, filling in recipient_name and product_or_site_name. Do not forward the user's full latest message verbatim via user_input by default — that field exists on plan_call for resolving an ambiguous/malformed phone number, not as a general passthrough. Only populate user_input when there's an actual number to disambiguate, and even then pass just the relevant phone-number text, not the user's entire message. The goal string alone carries recipient_name/product_or_site_name/language into the call.confirm_summary to the user and wait for explicit confirmation. Do not call run_call until the user confirms.run_call, acquire the dispatch lock (scripts/call-lock.js, acquireLock) keyed on the recipient's phone number, the purpose "accesscall-intake", and this specific plan_id — every lock is owned by the plan_id that acquired it. If a call to this recipient is already locked by a different plan_id — including on a retry after a crash or timeout, which will see the same lock a first attempt wrote — refuse to place another and ask the user to explicitly confirm an override before retrying. acquireLock also refuses unconditionally (even with override) if this exact plan_id was already dispatched before, per its durable dispatch history — a plan_id must never be replayed. The lock does not expire on a timer; it is only released in step 7, once a confirmed terminal status exists.
override: run scripts/call-lock.js's checkLock first and show the human the current owning plan_id and generation — never override from memory or a stale earlier check. Overriding requires passing that exact generation as expectedGeneration; acquireLock re-verifies inside the same atomic critical section that the on-disk generation still matches before writing, and refuses with a clear "state has changed" error if it doesn't (e.g. a different override already went through in the meantime). This exists because the per-recipient mutex alone only serializes writes against each other — it does not stop two separately, legitimately approved overrides (each based on what looked like current state at approval time) from both eventually succeeding one after the other against state that changed in between. Never retry an override with the same expectedGeneration after a mismatch; re-check and decide again.run_call with the confirm_token exactly as received. Never call it more than once for the same plan_id.get_call_run every 1-3 seconds while the run is active, then slow down, until a terminal status. As soon as one of COMPLETED/FAILED/NO_ANSWER/DECLINED/CANCELED/CANCELLED/VOICEMAIL/BUSY/EXPIRED is confirmed, call scripts/call-lock.js's releaseLock with that same plan_id and status to release the dispatch lock from step 5. releaseLock is compare-and-delete: it only releases if the plan_id given still matches the lock's current owner, so a delayed/late result for a plan_id that has since been overridden by a different dispatch is refused rather than freeing someone else's lock. Never release speculatively or because polling has taken a while — an unresolved status keeps the lock held until it either resolves or the user explicitly overrides.plan_call has no schema-input parameter for structured extraction (verified against its inputSchema). Instead, the call goal (references/call-task-template.md) instructs the bot to recap its own answers in a fixed, labeled format at the end of the call. Parse that recap from the transcript using scripts/parse-recap.js, which only reads lines attributable to the bot's own final speaking turn (never anything the caller said) and validates the result against references/intake-result.schema.json before returning it.references/call-task-template.md triggered, or because the recap couldn't be cleanly attributed to the bot — do not guess field values. Report the crisis disclosure (if that's what happened) as its own distinct, clearly flagged outcome. Otherwise, surface a redacted excerpt of the transcript via scripts/redact-transcript.js — never the raw, unredacted transcript, which may contain the caller's spoken phone number or email address.followup_contact is present, it must only be trusted when followup_contact_confirmed is true, meaning the bot spelled the contact back letter-by-letter and the caller explicitly confirmed it. If not confirmed, do not carry it into VPAT output; note "Contact unconfirmed, verify manually" instead.scripts/format-to-vpat.js to insert the validated result into a VPAT 2.4 template as a new row. Every auto-matched row (matched at the WCAG principle level, not the specific success criterion) gets an "AUTO-MATCHED AT PRINCIPLE LEVEL, HUMAN REVIEW REQUIRED BEFORE AUDIT USE" note in Remarks, so it can never be mistaken for a final placement.Why a plan_id is never replayed, even with override (step 5): this is a permanent design choice, not a gap to eventually fix. run_call's own tool contract already forbids calling it twice for the same plan_id — this skill didn't invent that restriction, it's upstream. Every genuine reason to "retry" collapses into needing a brand-new plan_id anyway: if the recipient asks for a callback with a corrected detail, that's a different goal, which only plan_call can produce (there is no operation that patches an existing plan's parameters); if the process crashes between acquiring the lock and getting a response from run_call, you don't actually know whether the call was placed, and retrying the same plan_id risks a real duplicate dispatch at the API level, so the correct recovery is a fresh plan_id from a new plan_call, with the interrupted attempt's outcome flagged to the user as unknown rather than silently retried. override therefore only ever needs to resolve one kind of conflict — a different, newly-planned plan_id wanting to dispatch while the lock is still held by an unresolved other plan_id — never "let me reuse this one."
run_call.scripts/phone-utils.js) before it ever reaches plan_call; ask the user to correct it instead of silently passing it through.+1555010****, via scripts/phone-utils.js's maskPhone) — the only place the full, unmasked number belongs is the actual plan_call/run_call API invocation itself.plan_call's user_input by default. Only pass the minimum text needed, and only when actually needed to resolve an ambiguous or malformed phone number.scripts/call-lock.js) with this plan_id immediately before every run_call, and only ever release it (releaseLock) with that same plan_id once get_call_run confirms a terminal status — never on a timer, never speculatively, and never for a lock currently owned by a different plan_id. Never place a duplicate call to the same recipient while a lock is held by another plan_id without an explicit user override, and never replay a plan_id that the dispatch history shows was already dispatched, even with an override.override without first calling checkLock and showing the human the current owner and generation, and never pass a generation other than what that check just returned. acquireLock re-verifies the generation still matches on-disk immediately before writing and refuses if it doesn't — this is what stops two separately-approved overrides from both succeeding against state that changed between approval and execution.scripts/redact-transcript.js, which masks phone-length digit sequences of any format — not just US shapes — and email addresses) — it does not detect spoken street addresses, so treat its output as a partial, not complete, redaction.scripts/format-to-vpat.js always writes an explicit "AUTO-MATCHED AT PRINCIPLE LEVEL, HUMAN REVIEW REQUIRED BEFORE AUDIT USE" note into Remarks for these rows.references/call-task-template.md, not optional bot judgment. Do not attempt to extract intake fields from that call. Report it to the user as a distinct, clearly flagged outcome, not as a normal or partial intake result.run_call starts, the call runs to a terminal status (COMPLETED, NO_ANSWER, DECLINED, FAILED, etc.) — it cannot be stopped or cancelled from within this skill while in progress.After a completed call, report:
+1555010****) — never print the full number in a summaryIf the call did not complete (no answer, declined, failed), report the status plainly and do not fabricate a result.
If the caller disclosed a self-harm/suicidal-ideation/crisis situation, report that as its own distinct, clearly flagged outcome instead of an intake result — do not attempt to backfill or guess the intake fields that weren't asked.
references/call-task-template.md — the call goal template with placeholdersreferences/intake-result.schema.json — structured result schemareferences/example-output.json — example parsed resultscripts/parse-recap.js — extracts the labeled recap from a transcript (bot-attributed final turn only) and validates it against the schemascripts/phone-utils.js — E.164 validation and phone-number maskingscripts/call-lock.js — durable, plan_id-owned dispatch lock preventing a duplicate call to the same recipient. Every mutation (fresh acquire, override, and compare-and-delete release) runs inside a per-recipient mutex; override additionally requires a generation-based compare-and-swap (expectedGeneration must match the current on-disk generation, checked inside that same critical section) so two separately-approved overrides can't both succeed against state that changed between approval and execution. Backed by an append-only dispatch history that refuses to replay a plan_id even after its lock is released, and fails closed (throws) rather than guessing if the journal itself is corruptedscripts/redact-transcript.js — masks phone-length digit sequences (any format, not just US) and email addresses in a transcript before it's shown to a userscripts/format-to-vpat.js — inserts a validated result into a VPAT 2.4 docx template (see Setup above: requires npm install first)package.json — declares format-to-vpat.js's dependencies (docx, jszip, xml-js)assets/vpat-2.4-template-generic.docx — genericized VPAT 2.4 template with placeholder preparer/contact fieldsFrequently asked questions
Use this skill when a user wants to conduct an accessibility intake interview by phone instead of a web form, typically to support a Section 508 or WCAG conformance audit (VPAT 2.4).
The source record exposes this install command: npx skills add https://github.com/CALLE-AI/awesome-phone-call-agents --skill "skills/accesscall". Inspect the command and pinned source before running it.
Alternatives
prowler-cloud/prowler
PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance
oaustegard/claude-skills
Generate hierarchical _FEATURES.md files that describe what a codebase DOES from a user/consumer perspective, anchored to source symbols via tree-sitting. Supports large complex codebases through feature-driven decomposition into sub-feature files. Uses a multi-pass synthesis: orientation → detail → overview rewrite. Use when someone says "what does this do", "document features", "feature inventory", "_FEATURES.md", or needs to understand a codebase's purpose before modifying it. Complements tre
HKUDS/Vibe-Trading
Create, modify, and optimize quantitative trading strategies, then backtest and evaluate them.
vasilyu1983/AI-Agents-public
Guides iOS testing with XCTest, XCUITest, Swift Testing, simctl, and xcresult. Use when choosing destinations, controlling flakes, or parsing test artifacts for native apps.