Agent skill · Data & Analytics

zoning-analysis-nyc

Analyze zoning envelope rules for lots in New York City using PLUTO data and the NYC Zoning Resolution

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill zoning-analysis-nyc --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 14 KB
Bundled scripts: none
Allowed tools: -Read-Write-Edit-WebFetch-AskUserQuestion-Bash
Path: skills/analysis/zoning-analysis-nyc/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# /zoning-analysis-nyc — Zoning Envelope Analysis (New York City) Analyze building envelope rules for any lot in New York City using the PLUTO database (NYC Open Data) and the NYC Zoning Resolution. ## Workflow ### Step 1: Parse Input Accept one of the following identifiers: - **Address + Borough/Zip** — e.g., "123 Main St, Brooklyn 11201" - **BBL** — 10-digit Borough-Block-Lot (e.g., 3012340056 = Brooklyn, Block 1234, Lot 56) - **BIN** — Building Identification Number Normalize to BBL format: `[borough 1 digit][block 5 digits][lot 4 digits]` Borough codes: | Code | Borough | |------|---------| | 1 | Manhattan | | 2 | Bronx | | 3 | Brooklyn | | 4 | Queens | | 5 | Staten Island | ### Step 2: Query PLUTO (tabular + polygon) Fetch lot data from **two** NYC APIs in parallel: #### 2a. Tabular data (Socrata PLUTO) **Endpoint:** `https://data.cityofnewyork.us/resource/64uk-42ks.json` **Query by BBL:** ``` https://data.cityofnewyork.us/resource/64uk-42ks.json?bbl=XXXXXXXXXX ``` **Query by address (fallback):** ``` https://data.cityofnewyork.us/resource/64uk-42ks.json?$where=address='123 MAIN STREET' AND zipcode='10001' ``` No authentication required for basic queries. Read `zoning-rules/pl

What's inside
Steps it walks through
  1. Workflow
  2. Step 1: Parse Input
  3. Step 2: Query PLUTO (tabular + polygon)
  4. Step 3: Identify Zoning District
  5. Step 4: Load Normativa
  6. Step 5: Determine Bulk Controls
  7. Step 6: Check Overlays & Special Districts
  8. Step 7: Present Analysis
  9. Step 8: Save Report
  10. Output Format
  11. Notes
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the zoning-analysis-nyc skill do?

Analyze zoning envelope rules for lots in New York City using PLUTO data and the NYC Zoning Resolution

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill zoning-analysis-nyc --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going