night-market-build-and-env

night-market-build-and-env is a skill for Claude Code from athola/claude-night-market. It costs 42 tokens per session (3,032 once invoked), scanned A, original, MIT.

A setup guide for rebuilding the Claude Night Market development environment, including Python versions, tools, dependency pins, and known setup traps.

In plain words
What is it for?
Use it when onboarding, recreating the project environment, checking required tools, and running Python commands through the project's pinned uv setup.
Why use it?
It helps restore a consistent working environment on a new machine or after the toolchain stops working.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions Claude Code; mentions Gemini CLI.

Good fit Use it when onboarding, recreating the project environment, checking required tools, and running Python commands through the project's pinned uv setup.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/athola/claude-night-market/night-market-build-and-env
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add athola/claude-night-market --skill night-market-build-and-env
Clone the repo
git clone --depth 1 https://github.com/athola/claude-night-market

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 night-market-build-and-env

README.md
[![agentmods](https://agentmods.dev/badge/skills/athola/claude-night-market/night-market-build-and-env/github.svg)](https://agentmods.dev/skills/athola/claude-night-market/night-market-build-and-env)
Your own site
<a href="https://agentmods.dev/skills/athola/claude-night-market/night-market-build-and-env"><img src="https://agentmods.dev/badge/skills/athola/claude-night-market/night-market-build-and-env/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 night-market-build-and-env

Your own site · 80×15
<a href="https://agentmods.dev/skills/athola/claude-night-market/night-market-build-and-env"><img src="https://agentmods.dev/badge/skills/athola/claude-night-market/night-market-build-and-env.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,032 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
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.00042 $0.03032
Opus 5 $0.00021 $0.01516
Sonnet 5 $0.00008 $0.00606
Haiku 4.5 $0.00004 $0.00303

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

Security

Grade A, and why

night-market-build-and-env 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 12d 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/night-market-build-and-env/SKILL.md · 212 lines

How it starts

The opening of the file, as written. The whole thing — 212 lines — stays where its author put it; the contents beside it link to each section on GitHub.

night-market-build-and-env

Recreate a working claude-night-market development environment from a bare machine, verify it in under an hour, and avoid the traps that have broken it before. Everything below was verified against the repo on 2026-07-02 (v1.9.15).

One rule dominates: every Python tool runs through uv run. uv is Astral's Python package and environment manager. On first uv run it creates .venv/ and syncs it from uv.lock. Never install repo dependencies with bare pip.

Toolchain setup

Install in this order. "via uv" means the tool resolves from uv.lock automatically. There is no manual install step for those rows.

# Tool Required? Install hint Verify command
1 uv REQUIRED official installer at astral.sh/uv uv --version
2 Python 3.12 REQUIRED uv python install 3.12 python3 --version
3 make + bash REQUIRED distro package (build-essential, Xcode CLT) make --version
4 ruff >=0.14.13 via uv none (dev dependency in uv.lock) uv run ruff --version
5 bandit via uv none (pre-commit env is pinned separately, see traps) uv run bandit --version
6 mypy >=1.13 via uv none uv run mypy --version
7 pre-commit >=4 via uv uv run pre-commit install uv run pre-commit --version
8 Python 3.9 optional uv python install 3.9 uv venv --python 3.9 /tmp/py39-check
9 node + npm optional needed for conjure Gemini delegation node --version
10 Rust + cargo optional rustup (only for make skrills-build) cargo --version
11 skrills binary optional make skrills-build or make skrills-install make skrills-verify
12 mdbook optional cargo install mdbook; builds book/ mdbook --version
13 gh CLI optional cli.github.com (releases and Discussions) gh --version

Notes on the optional rows:

  • Python 3.9 is ONLY for local hook-compatibility testing. Hooks are scripts Claude Code runs on tool events under the host system Python (macOS ships 3.9.6), outside any virtual environment. CI enforces this in .github/workflows/python39-compat.yml.
  • The conjure plugin delegates to Gemini. The root package.json pins @google/gemini-cli at ^0.25.1. Run npm install at the repo root only if you use conjure delegation.
  • skrills is a Rust CLI that validates and analyzes skill files. Every Makefile target that uses it (make validate-skills, make analyze-skills) has a Python fallback, so you can skip Rust entirely.
  • gh is needed for releases and for GitHub Discussions. Discussions have no gh discussion subcommand. They are reachable only through gh api graphql.

Read the full file on GitHub · 212 lines

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. 12d ago First seen · 212 lines · 42 tokens per session scan A 7da438277ce4

Subscribe to this mod's changes

night-market-build-and-env is a skill published in the GitHub repository athola/claude-night-market (337 stars, last pushed yesterday), licensed MIT. It adds 42 tokens to every session and 3,032 once invoked, about $0.0002 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

fastapi-app

Bootstrap a new FastAPI backend with async SQLAlchemy 2.0, asyncpg, Alembic, Pydantic v2, and no deprecated APIs. Use when the user wants to start, scaffold, or set up a new FastAPI service, a Python REST API, an async backend, or asks to "create a new fastapi app" or "new python backend". Handles JWT auth, layered…

ccplugins/awesome-claude-code-plugins · 103 tokens

fastapi-senior-dev

Senior Python Backend Engineer skill for FastAPI. Use when scaffolding production-ready APIs, enforcing clean architecture, optimizing async patterns, or auditing FastAPI codebases.

georgekhananaev/claude-skills-vault · 39 tokens

pydantic-model

Pydantic v2 model patterns for req/res validation, MongoDB conversion, validation rules. Travel Panel conventions.

georgekhananaev/claude-skills-vault · 28 tokens

writing-python

How Python is written in this repo — free functions over classes, structured returns instead of mutated arguments, comprehensions, no module state, and the stdlib-only, annotation-free, Python 3.8 dialect the AST lints enforce. Covers modular structure and the import-layer rule, DRY without copying a helper into a…

AleksandarBisevac/claude-plugins · 161 tokens

pep8

Enforces modern Python 3.11+ coding standards, PEP 8 compliance, and type-hinting best practices automatically. This skill should be used when writing, reviewing, or refactoring Python code to ensure consistency with PEP 8, proper type hints, Google-style docstrings, and modern Python idioms.

hackermanishackerman/claude-skills-vault · 69 tokens

no-silent-pass

Write Python whose failures are visible and checks that actually fire — distinct sentinels for success and error, filters that narrow to nothing without reading as "all clear", output never discarded on a non-zero exit, and selftest cases proven red before they are trusted (mutate the fix, mutate it the other way too…

AleksandarBisevac/claude-plugins · 143 tokens