SidewalkWebpage: Skill for Claude Code

.claude/skills/create-registered-user-account/SKILL.md

create-registered-user-account is a skill for Claude Code from ProjectSidewalk/SidewalkWebpage. It costs 34 tokens per session (302 once invoked), scanned A, original, MIT.

A procedure for creating a registered test account on a local web application.

In plain words
What is it for?
Use it to sign up a test user and verify authenticated pages or routes, including areas restricted to registered users.
Why use it?
It provides the session, security token, and form steps needed when testing requires a logged-in user rather than an anonymous visitor.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is ProjectSidewalk/SidewalkWebpage's own configuration. It tells Claude Code how to work on SidewalkWebpage itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything SidewalkWebpage configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/ProjectSidewalk/SidewalkWebpage/develop/.claude/skills/create-registered-user-account/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ProjectSidewalk/SidewalkWebpage

Made for: Claude Code.

Wrote 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.

agentmods badge for create-registered-user-account

README.md
[![agentmods](https://agentmods.dev/badge/skills/projectsidewalk/sidewalkwebpage/create-registered-user-account/github.svg)](https://agentmods.dev/skills/projectsidewalk/sidewalkwebpage/create-registered-user-account)
Your own site
<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.

agentmods 80×15 button for create-registered-user-account

Your own site · 80×15
<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>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 302 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
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.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 9d ago against content hash f6d966dbc62d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

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
.claude/skills/create-registered-user-account/SKILL.md · 19 lines

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.

Changes

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.

  1. 9d ago First seen · 19 lines · 34 tokens per session scan A f6d966dbc62d

Subscribe to this mod's changes

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.