claude-code-plugin-ref…
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.
Generates Makefiles with testing, linting, formatting, and automation targets. Use when starting a project or standardizing build automation.
$ npx -y skills add athola/claude-night-market --skill makefile-generation --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/makefile-generationContext preview
The summary Claude sees to decide when to auto-load this skill.
Generates Makefiles with testing, linting, formatting, and automation targets. Use when starting a project or standardizing build automation.
name: makefile-generation description: Generates Makefiles with testing, linting, formatting, and automation targets. Use when starting a project or standardizing build automation. globs: "**/Makefile" alwaysApply: false # Custom metadata (not used by Claude for matching): model: sonnet tools: [Read, Write, Bash] category: infrastructure tags: [makefile, automation, build-tools, development-workflow] complexity: low model_hint: fast estimated_tokens: 1200
Generate a Makefile with standard development targets for Python, Rust, or TypeScript projects.
**Common targets**:
**Common targets**:
**Common targets**:
# Check for language indicators
if [ -f "pyproject.toml" ]; then
LANGUAGE="python"
elif [ -f "Cargo.toml" ]; then
LANGUAGE="rust"
elif [ -f "package.json" ]; then
LANGUAGE="typescript"
fi**Verification:** Run the command with `--help` flag to verify availability.
from pathlib import Path
template_path = Path("plugins/attune/templates") / language / "Makefile.template"**Verification:** Run the command with `--help` flag to verify availability.
metadata = {
"PROJECT_NAME": "my-project",
"PROJECT_MODULE": "my_project",
"PYTHON_VERSION": "3.10",
}**Verification:** Run the command with `--help` flag to verify availability.
from template_engine import TemplateEngine
engine = TemplateEngine(metadata)
engine.render_file(template_path, Path("Makefile"))**Verification:** Run the command with `--help` flag to verify availability.
make help
**Verification:** Run `make --dry-run` to verify build configuration.
Users can add custom targets after the generated ones:
# ============================================================================ # CUSTOM TARGETS # ============================================================================ deploy: build ## Deploy to production ./scripts/deploy.sh
**Verification:** Run the command with `--help` flag to verify availability.
all standard targets for the detected language (Python: install/lint/format/typecheck/test; Rust: fmt/lint/check/test/build; TypeScript: install/lint/format/typecheck/test/build).
is valid.
skill reports the detection failure and stops rather than generating a blank Makefile.
A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.
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.
States load-bearing decisions, invariants, and weak points. Use when judging a design change. Do not use for gating; use night-market-change-control.
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.
Classify, gate, and review changes. Use when landing a PR, releasing, or amending rules. Do not use for failure triage; use night-market-debugging-playbook.
Search and record project memory (Discussions, journal, ADRs). Use before re-investigating anything. Do not use for settled battles; see failure-archaeology.
Bind loop 'done' to unfakeable gates. Use to harden egregore/herald loops or promote completion_integrity. Not for QA gates; use night-market-validation-and-qa.