Borrowing it
Nothing to install: this file belongs to ProjectSidewalk/SidewalkWebpage. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/ProjectSidewalk/SidewalkWebpage/develop/.claude/skills/create-registered-user-account/SKILL.mdgit clone --depth 1 https://github.com/ProjectSidewalk/SidewalkWebpageWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/projectsidewalk/sidewalkwebpage/create-registered-user-account)<a href="https://agentmods.dev/skills/projectsidewalk/sidewalkwebpage/create-registered-user-account"><img src="https://agentmods.dev/badge/skills/projectsidewalk/sidewalkwebpage/create-registered-user-account/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/projectsidewalk/sidewalkwebpage/create-registered-user-account"><img src="https://agentmods.dev/badge/skills/projectsidewalk/sidewalkwebpage/create-registered-user-account.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Data Exfiltration · line 14 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00034 | $0.00302 |
| Opus 5 | $0.00017 | $0.00151 |
| Sonnet 5 | $0.00007 | $0.00060 |
| Haiku 4.5 | $0.00003 | $0.00030 |
Grade A, and why
create-registered-user-account scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s -c /tmp/sidewalk_cookies.txt "http://localhost:9000/signUp" > /tmp/signup.html What it actually says
If you need a full registered account (e.g. to test role-based routes), do a two-step sign-up. The POST requires a CSRF token extracted from the GET response:
# Step 1: get a session + CSRF token
curl -s -c /tmp/sidewalk_cookies.txt "http://localhost:9000/signUp" > /tmp/signup.html
# Step 2: extract token and POST the form
CSRF=$(grep -o 'name="csrfToken" value="[^"]*"' /tmp/signup.html | head -1 | sed 's/name="csrfToken" value="//;s/"//')
curl -s -b /tmp/sidewalk_cookies.txt -c /tmp/sidewalk_cookies.txt -X POST "http://localhost:9000/signUp" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "csrfToken=${CSRF}&username=claudetest&email=claude%40test.com&password=TestPass123&passwordConfirm=TestPass123&serviceHours=NO&terms=true&returnUrl=%2F"
A 303 redirect to / (with a local-authenticator cookie) means success.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 19 lines · 34 tokens per session scan A f6d966dbc62d
create-registered-user-account is a skill published in the GitHub repository ProjectSidewalk/SidewalkWebpage (105 stars, last pushed today), licensed MIT. It adds 34 tokens to every session and 302 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
testing-e2e
End-to-end testing patterns with Playwright — page objects, AI agent testing, visual regression, accessibility testing with axe-core, and CI integration. Use when writing E2E tests, setting up Playwright, implementing visual regression, or testing accessibility.
Accessibility Auditor
Comprehensive WCAG 2.1 AA compliance testing combining automated axe-core scans with manual keyboard navigation, screen reader compatibility, and focus management verification.
Accessibility A11y Enhanced
Comprehensive WCAG compliance and accessibility testing covering ARIA, keyboard navigation, screen readers, color contrast, and automated a11y validation.
Axe-core Accessibility Testing
Accessibility testing skill using axe-core and Playwright for automated WCAG 2.1 compliance auditing, custom rules, and accessibility reporting.
axe-core Accessibility Automation
Automated accessibility testing with axe-core integrated into CI pipelines, including custom rule configuration, issue prioritization, and remediation guidance.
agent-evaluation-operations
Evaluate agent and skill behavior or routing.