SidewalkWebpage: Skill for Claude Code

.claude/skills/update-apis/SKILL.md

update-apis is a skill for Claude Code from ProjectSidewalk/SidewalkWebpage. It costs 17 tokens per session (333 once invoked), scanned A, original, MIT.

A set of instructions for updating version 3 API routes, including their database queries, output formats, and documentation. The listed formats include GeoJSON, CSV, Shapefile, and GeoPackage.

In plain words
What is it for?
Use it when modifying a /v3/api/ route, updating its models or queries, checking results before and after the change, or revising API documentation.
Why use it?
It helps keep the API implementation, exported data formats, and written documentation aligned after a change.

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/update-apis/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 update-apis

README.md
[![agentmods](https://agentmods.dev/badge/skills/projectsidewalk/sidewalkwebpage/update-apis.svg)](https://agentmods.dev/skills/projectsidewalk/sidewalkwebpage/update-apis)
Your own site
<a href="https://agentmods.dev/skills/projectsidewalk/sidewalkwebpage/update-apis"><img src="https://agentmods.dev/badge/skills/projectsidewalk/sidewalkwebpage/update-apis.svg" alt="Measured on agentmods" height="20"></a>
Per session 17 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 333 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00017 $0.00333
Opus 5 $0.00009 $0.00167
Sonnet 5 $0.00003 $0.00067
Haiku 4.5 $0.00002 $0.00033

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

Security

Grade A, and why

update-apis scanned grade A with 0 findings 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 2d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/update-apis/SKILL.md · 22 lines

What it actually says

Read docs/architecture.md → "The public API (/v3)" first: it holds the naming contract (camelCase parameters, snake_case output everywhere except Shapefile), the DTO layout in app/models/api/, and the StreamingApiType serialization shape. .claude/rules/api.md is the short version.

The set of updates that are likely to be involved:

  1. Updating the database queries to incorporate the new/updated data (in the app/models/ files). The DTO definitions themselves belong in app/models/api/*ApiModels.scala, not in the *Table.scala that produces them.
  2. Making sure the API is updated for every output file type it serves (JSON, CSV, GeoJSON, Shapefile, GeoPackage), with the serialization on the DTO (toJson / toCsvRow, csvHeader in the companion).
  3. Updating the relevant documentation in the app/views/apiDocs/ files and the matching public/js/api-docs/*Preview.js.
  4. Updating or adding the functional spec in test/controllers/api/.

A few things to keep in mind:

  • Combine common code where it makes sense to do so; reuse ApiModelUtils rather than re-rolling CSV/GeoJSON logic.
  • Run the queries both before and after your updates to check for any regressions.
  • v3 is a preview surface: breaking changes are made in place rather than minting a new version.
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. 2d ago Changed · +8 lines 9534c90ccdc6
  2. 7d ago First seen · 14 lines · 17 tokens per session scan A 0a0038aaa58c

Subscribe to this mod's changes

update-apis is a skill published in the GitHub repository ProjectSidewalk/SidewalkWebpage (105 stars, last pushed today), licensed MIT. It adds 17 tokens to every session and 333 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

agent-desktop-ffi

C-ABI bindings over agent-desktop's PlatformAdapter. Consumers (Python ctypes, Swift, Node ffi-napi, Go cgo, C++, Ruby fiddle) link libagentdesktopffi.{dylib,so,dll} and call ad functions directly instead of spawning the CLI binary per call. The canonical observe-act workflow is: adinit → adadaptercreate[withsession]…

lahfir/agent-desktop · 111 tokens

api-security-scan

Review a REST/HTTP API — from its OpenAPI spec or route code — for security gaps like missing auth, broken object-level authorization, no rate limiting, and verbose errors. Reports file:line. Pure Claude Code, no signup.

Quality-Max/free-qa-skills · 53 tokens

fastify-best-practices

This skill should be used when working on any Fastify project or when the user asks about Fastify best practices, conventions, or patterns. Trigger when: working on a Fastify project, creating Fastify plugins, registering routes, using decorators, organizing Fastify application structure, using @fastify/autoload…

RadOrigin-LLC/RAD-Claude-Skills · 110 tokens

fastify-hooks-lifecycle

This skill should be used when implementing Fastify hooks, understanding hook execution order, using onRequest/preParsing/preValidation/preHandler/preSerialization/onError/onSend/onResponse hooks, using onReady/onListen/onClose/onRoute/onRegister application hooks, debugging hook chain issues, adding authentication…

RadOrigin-LLC/RAD-Claude-Skills · 85 tokens

fastify-production

This skill should be used when deploying Fastify to production, configuring Fastify security headers, setting up reverse proxy with Fastify, implementing graceful shutdown, configuring @fastify/helmet, @fastify/cors, @fastify/rate-limit, trustProxy settings, Kubernetes Fastify deployment, Fastify performance tuning…

RadOrigin-LLC/RAD-Claude-Skills · 97 tokens

fastify-schemas-validation

This skill should be used when writing Fastify JSON schemas, configuring Ajv validation, using fast-json-stringify serialization, defining request body/querystring/params/headers schemas, sharing schemas with addSchema and $ref, using fluent-json-schema, configuring response schemas, handling validation errors…

RadOrigin-LLC/RAD-Claude-Skills · 87 tokens