aggregate-logs
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Generate an implementation plan with system architecture design and dependency-ordered task breakdown from a specification.
> /plugin marketplace add athola/claude-night-marketHow it fires
How this command gets triggered: by you, by Claude, or both.
/blueprintContext preview
What this command does when you run it.
Generate an implementation plan with system architecture design and dependency-ordered task breakdown from a specification.
name: blueprint description: "Generate an implementation plan with system architecture design and dependency-ordered task breakdown from a specification." usage: /attune:blueprint [--input FILE] [--component NAME]
Transform specifications into executable implementation plans with system architecture, component design, and dependency-ordered task breakdown.
Use this command when you need to:
Avoid this command if:
# Create plan from specification /attune:blueprint # Plan with custom input /attune:blueprint --input docs/specification.md # Focus on specific component /attune:blueprint --component "authentication"
1. **Loads specification** from specify phase 2. **Invokes planning skill** with superpowers integration 3. **Designs system architecture** (components, interfaces, data flow) 4. **Breaks down into tasks** with dependencies and estimates 5. **Produces implementation plan** for execution phase
When superpowers plugin is available:
Without superpowers:
# 1. Invoke planning skill Skill(attune:project-planning) # 2. Design architecture: # - System components # - Component interfaces # - Data flow diagrams # - Technology selections # 3. Break down into tasks: # - Development tasks with dependencies # - Testing tasks # - Deployment tasks # - Documentation tasks # 4. Generate implementation plan # - Saved to docs/implementation-plan.md # - Includes architecture + task breakdown # 5. Workflow auto-continues (see below)
**After planning completes successfully**, auto-proceed to the next phase unless `--standalone` was specified:
1. **Verify artifact**: Confirm `docs/implementation-plan.md` exists and is non-empty 2. **Checkpoint message**: Display brief summary to user:
Implementation plan complete. Saved to docs/implementation-plan.md. Proceeding to execution phase...
3. **Auto-invoke next phase**:
Skill(attune:project-execution)
**Bypass Conditions** (skip auto-continuation if ANY true):
**Components**:
## System Architecture ### Component Diagram
┌─────────────┐ ┌──────────────┐ ┌─────────────┐ │ Web UI │─────▶│ API Server │─────▶│ Database │ │ (React) │ │ (FastAPI) │ │ (Postgres) │ └─────────────┘ └──────────────┘ └─────────────┘ │ ▼ ┌──────────────┐ │ GitHub API │ └──────────────┘
### Components #### Component 1: Web UI **Responsibility**: User interface for debt tracking **Technology**: React 18 + TypeScript + Vite **Interfaces**: - REST API client - OAuth callback handler **Data**: Client-side state management (React Context) #### Component 2: API Server **Responsibility**: Business logic and GitHub integration **Technology**: FastAPI + Python 3.10 **Interfaces**: - REST API endpoints - GitHub webhook receiver - Database access layer **Data**: Issue cache, user sessions #### Component 3: Database **Responsibility**: Persistent data storage **Technology**: PostgreSQL 14 **Schema**: - users (id, github_id, access_token) - repositories (id, owner, name) - debt_items (id, repo_id, issue_number, type, priority)
**Task Format**:
### TASK-001: [Task Name] **Description**: Clear description of what needs to be done **Type**: Implementation | Testing | Documentation | Deployment **Priority**: P0 (Critical) | P1 (High) | P2 (Medium) | P3 (Low) **Estimate**: [Story points or hours] **Dependencies**: TASK-002, TASK-005 **Assignee**: [Team member or TBD] **Acceptance Criteria**: - [ ] Criterion 1 - [ ] Criterion 2 **Technical Notes**: - Implementation detail 1 - Implementation detail 2 **Testing Requirements**: - Unit tests for X - Integration tests for Y
**Phase 1: Foundation** (Weeks 1-2)
**Phase 2: Core Features** (Weeks 3-6)
**Phase 3: Polish** (Weeks 7-8)
**Phase 4: Launch** (Week 9)
/attune:specify /attune:blueprint
**Output**: `docs/implementation-plan.md`
# Technical Debt
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.