Claude Night Market

A collection of Claude Code plugins for software engineering workflows.

Views1
PublishedJan 14, 2026

Loading actions...

5 minBeginnerpromptSingle file

Skill content

Main instructions and any bundled files for this skill.

markdown

Claude Night Market

A collection of Claude Code plugins for software engineering workflows.

View Capabilities Reference for a detailed list of all skills, commands, and agents.

Recommended Dependency: Many skills in this marketplace achieve their full potential when used alongside the superpowers skills. While plugins work standalone, superpowers provides foundational methodology skills (TDD, debugging, code review patterns) that enhance workflows significantly. See Superpowers Dependencies for details.

Installation

# Add the marketplace
/plugin marketplace add athola/claude-night-market

# Install individual plugins
/plugin install archetypes@claude-night-market
/plugin install conjure@claude-night-market
/plugin install imbue@claude-night-market
/plugin install spec-kit@claude-night-market

Plugins

Meta Layer

abstract

Meta-skills infrastructure for the plugin ecosystem—skill authoring, hook development, modular design patterns, and evaluation frameworks.

SkillPurpose
skill-authoringTDD methodology for skill creation
hook-authoringSecurity-first hook development
modular-skillsModular design patterns
skills-evalSkill quality assessment
hooks-evalHook security scanning
escalation-governanceModel escalation decisions
makefile-dogfooderMakefile completeness analysis
shared-patternsCross-skill patterns and utilities

Foundation Layer

imbue

Workflow methodologies for analysis, evidence gathering, and structured output. Base layer for building additional workflow plugins.

SkillPurpose
review-coreShared review scaffolding and methodology
diff-analysisSemantic changeset analysis
catchupQuick context recovery for any delta
evidence-loggingEvidence capture methodology
structured-outputOutput formatting patterns
feature-reviewEvidence-based feature prioritization
scope-guardBranch scope management and anti-overengineering

sanctum

Git and workspace operations for active development workflows.

SkillPurpose
git-workspace-reviewPreflight git status and diffs
commit-messagesConventional commit generation
pr-prepPull request preparation
pr-reviewPR analysis and feedback
doc-updatesDocumentation updates
doc-consolidationMerge ephemeral docs into permanent
update-readmeREADME modernization
version-updatesVersion bumping
test-updatesTest suite maintenance
fix-issueGitHub issue resolution workflow
workflow-improvementWorkflow optimization analysis

leyline

Infrastructure and pipeline building blocks for plugins.

SkillPurpose
quota-managementRate limiting and quotas
usage-loggingTelemetry and usage tracking
service-registryService discovery patterns
error-patternsStandardized error handling
testing-quality-standardsTest quality enforcement
authentication-patternsAuth implementation patterns
mecw-patternsMinimum effective context patterns
progressive-loadingLazy loading strategies
pytest-configPytest configuration templates
storage-templatesData persistence patterns
evaluation-frameworkSkill evaluation infrastructure

Utility Layer

conservation

Resource optimization and performance monitoring.

SkillPurpose
context-optimizationMECW context management
mcp-code-executionTool-heavy workflow optimization
cpu-gpu-performancePerformance guardrails
token-conservationContext efficiency

conjure

Delegation to external LLM services, primarily through headless calls.

SkillPurpose
delegation-coreTask routing framework
gemini-delegationGemini CLI integration
qwen-delegationQwen MCP integration

Domain Specialists

archetypes

Architecture paradigm selection and implementation planning.

SkillPurpose
architecture-paradigmsInteractive paradigm selector
architecture-paradigm-*13 specific paradigm guides

pensive

Code review toolkit.

SkillPurpose
api-reviewAPI surface evaluation
architecture-reviewPrincipal-level architecture review
bug-reviewDeep bug hunting
makefile-reviewMakefile structure review
math-reviewMathematical correctness
rust-reviewRust-specific review
test-reviewTDD/BDD test suite review
unified-reviewMulti-discipline review orchestration

parseltongue

Modern Python development suite—testing, performance optimization, async patterns, and packaging.

SkillPurpose
python-testingPytest and TDD workflows
python-performanceProfiling and optimization
python-asyncAsync programming patterns
python-packagingModern packaging with uv

memory-palace

Knowledge organization using spatial memory concepts.

SkillPurpose
memory-palace-architectPalace building and management
knowledge-locatorSpatial search and retrieval
knowledge-intakeKnowledge intake and curation
digital-garden-cultivatorDigital garden maintenance
session-palace-builderSession-scoped knowledge capture

spec-kit

Specification-Driven Development (SDD) toolkit—structured specification, planning, and implementation workflows.

SkillPurpose
spec-writingFeature specification authoring
task-planningDependency-ordered task generation
speckit-orchestratorWorkflow coordination

minister

GitHub initiative tracking and release management.

SkillPurpose
github-initiative-pulseInitiative progress tracking
release-health-gatesRelease readiness checks

Plugin Dependency Graph

graph TB
    subgraph Meta[Meta Layer]
        abstract[abstract<br/>Plugin infrastructure]
    end

    subgraph Foundation[Foundation Layer]
        imbue[imbue<br/>Intelligent workflows]
        sanctum[sanctum<br/>Git & workspace ops]
        leyline[leyline<br/>Pipeline building blocks]
    end

    subgraph Utility[Utility Layer]
        conservation[conservation<br/>Resource optimization]
        conjure[conjure<br/>External delegation]
    end

    subgraph Domain[Domain Specialists]
        archetypes[archetypes<br/>Architecture patterns]
        pensive[pensive<br/>Code review toolkit]
        parseltongue[parseltongue<br/>Python development]
        memory_palace[memory-palace<br/>Spatial memory]
        spec_kit[spec-kit<br/>Spec-driven dev]
        minister[minister<br/>Release management]
    end

    abstract --> leyline
    pensive --> imbue
    pensive --> sanctum
    sanctum --> imbue
    conjure --> leyline
    spec_kit --> imbue

    style Meta fill:#fff3e0,stroke:#e65100,color:#e65100
    style Foundation fill:#e1f5fe,stroke:#01579b,color:#01579b
    style Utility fill:#f3e5f5,stroke:#4a148c,color:#4a148c
    style Domain fill:#e8f5e8,stroke:#1b5e20,color:#1b5e20

Quick Start

# Start a spec-driven feature
/speckit.specify Add user authentication with OAuth2

# Review code changes
/sanctum:pr

# Get a quick catchup on changes
/imbue:catchup

# Run architecture analysis
Skill(archetypes:architecture-paradigms)

Setup

Before using this marketplace, push each plugin to GitHub:

# For each plugin directory
cd ~/archetypes && git init && git add . && git commit -m "Initial commit"
gh repo create athola/archetypes --public --source=. --push

# Repeat for all plugins: abstract, conjure, conservation, imbue, leyline,
# memory-palace, minister, parseltongue, pensive, sanctum, spec-kit

Then update .claude-plugin/marketplace.json with your actual GitHub URLs.

Philosophy

  • Modular: Shallow dependency chains, single responsibility.
  • Progressive: Load only what you need.
  • Composable: Plugins are designed to work together.
  • Spec-driven: Define what before implementing how.

Contributing

See individual plugin READMEs for contribution guidelines. Each plugin maintains its own test suite and documentation.

License

MIT

Prompt Playground

1 Variable

Fill Variables

Preview

# Claude Night Market

A collection of Claude Code plugins for software engineering workflows.

[**View Capabilities Reference**](docs/capabilities-reference.md) for a detailed list of all skills, commands, and agents.

> **Recommended Dependency**: Many skills in this marketplace achieve their full potential when used alongside the [**superpowers**](https://github.com/obra/superpowers) skills. While plugins work standalone, superpowers provides foundational methodology skills (TDD, debugging, code review patterns) that enhance workflows significantly. See [Superpowers Dependencies](docs/capabilities-reference.md#superpowers-dependencies) for details.

## Installation

```bash
# Add the marketplace
/plugin marketplace add athola/claude-night-market

# Install individual plugins
/plugin install archetypes@claude-night-market
/plugin install conjure@claude-night-market
/plugin install imbue@claude-night-market
/plugin install spec-kit@claude-night-market
```

## Plugins

### Meta Layer

#### abstract
Meta-skills infrastructure for the plugin ecosystem—skill authoring, hook development, modular design patterns, and evaluation frameworks.

| Skill | Purpose |
|-------|---------|
| `skill-authoring` | TDD methodology for skill creation |
| `hook-authoring` | Security-first hook development |
| `modular-skills` | Modular design patterns |
| `skills-eval` | Skill quality assessment |
| `hooks-eval` | Hook security scanning |
| `escalation-governance` | Model escalation decisions |
| `makefile-dogfooder` | Makefile completeness analysis |
| `shared-patterns` | Cross-skill patterns and utilities |

### Foundation Layer

#### imbue
Workflow methodologies for analysis, evidence gathering, and structured output. Base layer for building additional workflow plugins.

| Skill | Purpose |
|-------|---------|
| `review-core` | Shared review scaffolding and methodology |
| `diff-analysis` | Semantic changeset analysis |
| `catchup` | Quick context recovery for any delta |
| `evidence-logging` | Evidence capture methodology |
| `structured-output` | Output formatting patterns |
| `feature-review` | Evidence-based feature prioritization |
| `scope-guard` | Branch scope management and anti-overengineering |

#### sanctum
Git and workspace operations for active development workflows.

| Skill | Purpose |
|-------|---------|
| `git-workspace-review` | Preflight git status and diffs |
| `commit-messages` | Conventional commit generation |
| `pr-prep` | Pull request preparation |
| `pr-review` | PR analysis and feedback |
| `doc-updates` | Documentation updates |
| `doc-consolidation` | Merge ephemeral docs into permanent |
| `update-readme` | README modernization |
| `version-updates` | Version bumping |
| `test-updates` | Test suite maintenance |
| `fix-issue` | GitHub issue resolution workflow |
| `workflow-improvement` | Workflow optimization analysis |

#### leyline
Infrastructure and pipeline building blocks for plugins.

| Skill | Purpose |
|-------|---------|
| `quota-management` | Rate limiting and quotas |
| `usage-logging` | Telemetry and usage tracking |
| `service-registry` | Service discovery patterns |
| `error-patterns` | Standardized error handling |
| `testing-quality-standards` | Test quality enforcement |
| `authentication-patterns` | Auth implementation patterns |
| `mecw-patterns` | Minimum effective context patterns |
| `progressive-loading` | Lazy loading strategies |
| `pytest-config` | Pytest configuration templates |
| `storage-templates` | Data persistence patterns |
| `evaluation-framework` | Skill evaluation infrastructure |

### Utility Layer

#### conservation
Resource optimization and performance monitoring.

| Skill | Purpose |
|-------|---------|
| `context-optimization` | MECW context management |
| `mcp-code-execution` | Tool-heavy workflow optimization |
| `cpu-gpu-performance` | Performance guardrails |
| `token-conservation` | Context efficiency |

#### conjure
Delegation to external LLM services, primarily through headless calls.

| Skill | Purpose |
|-------|---------|
| `delegation-core` | Task routing framework |
| `gemini-delegation` | Gemini CLI integration |
| `qwen-delegation` | Qwen MCP integration |

### Domain Specialists

#### archetypes
Architecture paradigm selection and implementation planning.

| Skill | Purpose |
|-------|---------|
| `architecture-paradigms` | Interactive paradigm selector |
| `architecture-paradigm-*` | 13 specific paradigm guides |

#### pensive
Code review toolkit.

| Skill | Purpose |
|-------|---------|
| `api-review` | API surface evaluation |
| `architecture-review` | Principal-level architecture review |
| `bug-review` | Deep bug hunting |
| `makefile-review` | Makefile structure review |
| `math-review` | Mathematical correctness |
| `rust-review` | Rust-specific review |
| `test-review` | TDD/BDD test suite review |
| `unified-review` | Multi-discipline review orchestration |

#### parseltongue
Modern Python development suite—testing, performance optimization, async patterns, and packaging.

| Skill | Purpose |
|-------|---------|
| `python-testing` | Pytest and TDD workflows |
| `python-performance` | Profiling and optimization |
| `python-async` | Async programming patterns |
| `python-packaging` | Modern packaging with uv |

#### memory-palace
Knowledge organization using spatial memory concepts.

| Skill | Purpose |
|-------|---------|
| `memory-palace-architect` | Palace building and management |
| `knowledge-locator` | Spatial search and retrieval |
| `knowledge-intake` | Knowledge intake and curation |
| `digital-garden-cultivator` | Digital garden maintenance |
| `session-palace-builder` | Session-scoped knowledge capture |

#### spec-kit
Specification-Driven Development (SDD) toolkit—structured specification, planning, and implementation workflows.

| Skill | Purpose |
|-------|---------|
| `spec-writing` | Feature specification authoring |
| `task-planning` | Dependency-ordered task generation |
| `speckit-orchestrator` | Workflow coordination |

#### minister
GitHub initiative tracking and release management.

| Skill | Purpose |
|-------|---------|
| `github-initiative-pulse` | Initiative progress tracking |
| `release-health-gates` | Release readiness checks |

## Plugin Dependency Graph

```mermaid
graph TB
    subgraph Meta[Meta Layer]
        abstract[abstract<br/>Plugin infrastructure]
    end

    subgraph Foundation[Foundation Layer]
        imbue[imbue<br/>Intelligent workflows]
        sanctum[sanctum<br/>Git & workspace ops]
        leyline[leyline<br/>Pipeline building blocks]
    end

    subgraph Utility[Utility Layer]
        conservation[conservation<br/>Resource optimization]
        conjure[conjure<br/>External delegation]
    end

    subgraph Domain[Domain Specialists]
        archetypes[archetypes<br/>Architecture patterns]
        pensive[pensive<br/>Code review toolkit]
        parseltongue[parseltongue<br/>Python development]
        memory_palace[memory-palace<br/>Spatial memory]
        spec_kit[spec-kit<br/>Spec-driven dev]
        minister[minister<br/>Release management]
    end

    abstract --> leyline
    pensive --> imbue
    pensive --> sanctum
    sanctum --> imbue
    conjure --> leyline
    spec_kit --> imbue

    style Meta fill:#fff3e0,stroke:#e65100,color:#e65100
    style Foundation fill:#e1f5fe,stroke:#01579b,color:#01579b
    style Utility fill:#f3e5f5,stroke:#4a148c,color:#4a148c
    style Domain fill:#e8f5e8,stroke:#1b5e20,color:#1b5e20
```

## Quick Start

```bash
# Start a spec-driven feature
/speckit.specify Add user authentication with OAuth2

# Review code changes
/sanctum:pr

# Get a quick catchup on changes
/imbue:catchup

# Run architecture analysis
Skill(archetypes:architecture-paradigms)
```

## Setup

Before using this marketplace, push each plugin to GitHub:

```bash
# For each plugin directory
cd ~/archetypes && git init && git add . && git commit -m "Initial commit"
gh repo create athola/archetypes --public --source=. --push

# Repeat for all plugins: abstract, conjure, conservation, imbue, leyline,
# memory-palace, minister, parseltongue, pensive, sanctum, spec-kit
```

Then update `.claude-plugin/marketplace.json` with your actual GitHub URLs.

## Philosophy

- **Modular**: Shallow dependency chains, single responsibility.
- **Progressive**: Load only what you need.
- **Composable**: Plugins are designed to work together.
- **Spec-driven**: Define what before implementing how.

## Contributing

See individual plugin READMEs for contribution guidelines. Each plugin maintains its own test suite and documentation.

## License

[MIT](LICENSE)
Share: