aggregate-logs
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Run a detailed review that picks its dimensions from what the codebase and diff contain.
> /plugin marketplace add athola/claude-night-marketHow it fires
How this command gets triggered: by you, by Claude, or both.
/full-reviewContext preview
What this command does when you run it.
Run a detailed review that picks its dimensions from what the codebase and diff contain.
name: full-review description: Run a detailed review that picks its dimensions from what the codebase and diff contain.
Run a detailed review using intelligent skill selection based on codebase analysis.
# Auto-detect and run appropriate reviews /full-review # Focus on specific domains /full-review api # API surface review /full-review architecture # Architecture review /full-review bugs # Bug hunting /full-review tests # Test suite review /full-review rust # Rust-specific review /full-review math # Mathematical review /full-review makefile # Makefile review /full-review safety-critical # NASA Power of 10 verifiable-code review /full-review all # Run all applicable
Automatically selects review skills based on:
1. **Language Detection**: File extensions and manifests 2. **File Patterns**: Makefiles, API definitions, test files 3. **Git Context**: Status and diffs 4. **Project Structure**: Architecture patterns and build systems
| Pattern | Skills Triggered | |---------|-----------------| | `*.rs`, `Cargo.toml` | rust-review, bug-review, api-review | | `openapi.yaml`, `routes/` | api-review, architecture-review | | `test_*.py`, `*_test.go` | test-review, bug-review | | `Makefile`, `*.mk` | makefile-review | | Math algorithms | math-review, bug-review | | ADRs, architecture docs | architecture-review | | Low assertion density, unbounded loops, unproven recursion, fixed-bound violations | safety-critical-patterns |
1. **Context Analysis**: Analyze repository structure 2. **Skill Selection**: Choose based on detected patterns 3. **Parallel Dispatch**: Launch agents using the mapping below 4. **Integrated Report**: Consolidate findings
Skills are NOT agents. Use this table to dispatch correctly:
| Skill | Agent Type | Scope | |---|---|---| | bug-review | `pensive:code-reviewer` | Bugs, API, tests | | api-review | `pensive:code-reviewer` | API focus | | test-review | `pensive:code-reviewer` | Test focus | | architecture-review | `pensive:architecture-reviewer` | ADR, design | | rust-review | `pensive:rust-auditor` | Rust-specific | | code-refinement | `pensive:code-refiner` | Quality | | math-review | `general-purpose` | Invoke `Skill(pensive:math-review)` | | makefile-review | `general-purpose` | Invoke `Skill(pensive:makefile-review)` | | shell-review | `general-purpose` | Invoke `Skill(pensive:shell-review)` | | safety-critical-patterns | `general-purpose` | Invoke `Skill(pensive:safety-critical-patterns)` |
When `pensive:code-reviewer` covers multiple domains, dispatch once with combined scope rather than multiple times with the same agent type.
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.
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Analyze skill file complexity metrics and generate modularization recommendations for splitting or progressive loading.
Scaffold new Claude Code skills with brainstorming, TDD methodology, and proper frontmatter and module structure.