night-market-operations
SolidRun and ship this repo: make targets, artifacts, release runbook. Use when testing, linting, or releasing. Do not use for setup; use night-market-build-and-env.
Code & Development 323 stars
29 forks Updated today MIT
Install
Quality Score: 90/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Night Market Operations
This skill is the runbook for operating the claude-night-market repo:
what each make target actually executes, where artifacts land, and the
exact sequence that ships a release. Every command below was verified
against the Makefile, scripts/, and .github/workflows/ on 2026-07-02
(repo v1.9.15).
Terms used once and reused throughout:
- **Plugin**: a directory under `plugins/` with a
`.claude-plugin/plugin.json` manifest. Most have their own Makefile,
pyproject.toml, and tests/.
- **skrills**: a Rust CLI for skill validation and token analysis,
vendored at `plugins/abstract/bin/skrills`. Every skrills target has
a Python fallback, so a missing binary never blocks you.
- **ClawHub export**: a cross-framework skill package format written to
`clawhub/` by `scripts/clawhub_export.py`.
All commands run from the repo root unless a `cd` is shown. `uv` is
required for everything Python. For environment setup, see
night-market-build-and-env.
## Command anatomy
| Command | What it actually executes | When to use | Expected output shape |
|---------|---------------------------|-------------|-----------------------|
| `make test` | `./scripts/run-plugin-tests.sh --all`: per plugin, runs `make test --quiet` if the plugin Makefile has a `test:` target, else `uv run python -m pytest tests/ --tb=short --quiet` if pyproject mentions pytest. Skips plugins without `tests/`. | Full sweep before a PR or release. | Per-plugin pass/fail/skip lines. Failures r...
Details
- Author
- athola
- Repository
- athola/claude-night-market
- Created
- 8 months ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Integrates with
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
night-market-build-and-env
Rebuild the dev environment: uv, Python tiers, pins, traps. Use when onboarding or toolchain breaks. Do not use for daily commands; use night-market-operations.
323 Updated today
athola Code & Development Solid
night-market-debugging-playbook
Triage night-market failures by symptom (hooks, CI, tests). Use when a check fails unexpectedly. Do not use for routine gates; use night-market-operations.
323 Updated today
athola AI & Automation Solid
claude-code-plugin-reference
Explain plugin, skill, command, agent, and hook mechanics used here. Use when authoring or debugging plugins. Do not use for ops; use night-market-operations.
323 Updated today
athola