planexportsummary

star 1

Export PROJECT_PLAN.md as a condensed Markdown summary

BekaChkhiro By BekaChkhiro schedule Updated 2/2/2026

name: planExportSummary description: Export PROJECT_PLAN.md as a condensed Markdown summary

Plan Export to Summary

Export PROJECT_PLAN.md as a condensed Markdown summary.

Usage

/planExportSummary

Step 0: Load Configuration

function getConfig() {
  if (fileExists("./.plan-config.json")) {
    try { return JSON.parse(readFile("./.plan-config.json")) } catch {}
  }
  const globalPath = expandPath("~/.config/claude/plan-plugin-config.json")
  if (fileExists(globalPath)) {
    try { return JSON.parse(readFile(globalPath)) } catch {}
  }
  return { "language": "en" }
}

const config = getConfig()
const language = config.language || "en"
const t = JSON.parse(readFile(`locales/${language}.json`))

Step 1: Read PROJECT_PLAN.md

If not found:

{t.commands.update.planNotFound}

{t.commands.update.runPlanNew}

Step 2: Parse Project Data

Extract summary information:

  • Overall progress
  • Current focus (next task, in progress, blocked)
  • Phase breakdown
  • Tech stack

Step 3: Create Summary Structure

# [Project Name] - Summary

**Type**: [Full-Stack/Backend/Frontend]
**Progress**: [X]% complete ([Y]/[Z] tasks done)
**Status**: [In Progress/Blocked/Complete]

## Current Focus

๐ŸŽฏ **Next Task**: T[X].[Y] - [Name]
๐Ÿ”„ **In Progress**: [N] tasks
๐Ÿšซ **Blocked**: [M] tasks

## Progress by Phase

| Phase | Name | Progress | Status |
|-------|------|----------|--------|
| 1 | Foundation | โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–‘โ–‘โ–‘โ–‘โ–‘ 50% | In Progress |
| 2 | Core Features | โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘ 0% | Not Started |
| 3 | Advanced | โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘ 0% | Not Started |
| 4 | Testing & Deploy | โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘ 0% | Not Started |

## Task Checklist

### Phase 1: Foundation
- [x] T1.1: Project Setup (DONE)
- [x] T1.2: Database Setup (DONE)
- [ ] T1.3: Authentication (TODO)
- [ ] T1.4: Basic API (TODO)

### Phase 2: Core Features
- [ ] T2.1: User CRUD (TODO)
- [ ] T2.2: Dashboard (TODO)
...

## Tech Stack

**Frontend**: [Frameworks]
**Backend**: [Frameworks]
**Database**: [Database]

## Quick Stats

- ๐Ÿ“… Started: [Date]
- ๐Ÿ“… Updated: [Date]
- โฑ๏ธ Total Estimated: [X] hours
- โœ… Completed: [Y] hours
- ๐Ÿ“‹ Remaining: [Z] hours

---

*Generated by plan-plugin*
*Full plan: PROJECT_PLAN.md*

Step 4: Write File

Write to PROJECT_SUMMARY.md

Success Output:

Writing Markdown summary...

โœ… Exported to: PROJECT_SUMMARY.md

๐Ÿ“„ Summary includes:
   โ€ข Overall progress
   โ€ข Phase breakdown
   โ€ข Task checklist
   โ€ข Tech stack overview

๐Ÿ’ก Use this for:
   โ€ข Quick project overview
   โ€ข Sharing with team
   โ€ข Status reports
   โ€ข README updates

View file: cat PROJECT_SUMMARY.md

Error Handling

โŒ Error: Cannot write export file

Please check directory permissions and try again.
Install via CLI
npx skills add https://github.com/BekaChkhiro/claude-plan-plugin --skill planexportsummary
Repository Details
star Stars 1
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator