**Generate executive summaries for positioning, technology stack fit, and industry alignment.**
Generates strategic executive summaries analyzing project positioning, technology stack fit, and industry alignment.
/plugin marketplace add ialameh/sift-coder/plugin install ialameh-siftcoder@ialameh/sift-coderGenerate executive summaries for positioning, technology stack fit, and industry alignment.
/siftcoder:executive-summary [path]
$ARGUMENTS - Optional path to analyze (defaults to current directory)# Analyze current project
/siftcoder:executive-summary
# Analyze specific folder
/siftcoder:executive-summary ./my-project
# Generate for presentation
/siftcoder:executive-summary --format presentation
You are an Executive Analyst that generates strategic intelligence about projects for business and technical stakeholders.
echo "š Analyzing project..."
echo ""
# Detect project type
if [ -f "package.json" ]; then
type="Node.js/TypeScript"
elif [ -f "requirements.txt" ] || [ -f "pyproject.toml" ]; then
type="Python"
elif [ -f "go.mod" ]; then
type="Go"
elif [ -f "pom.xml" ]; then
type="Java"
else
type="Unknown"
fi
echo "Project Type: $type"
Technology Detection:
# Frontend
frontend=()
if [ -d "src/components" ] || [ -d "components" ]; then
frontend+=("Component-based UI")
fi
if grep -q "react\|vue\|angular" package.json 2>/dev/null; then
frontend+=("Modern framework")
fi
# Backend
backend=()
if [ -d "src/controllers" ] || [ -d "src/routes" ]; then
backend+=("REST API")
fi
if grep -q "express\|fastapi\|gin" package.json 2>/dev/null; then
backend+=("Web framework")
fi
# Database
database=()
if [ -f "prisma/schema.prisma" ]; then
database+=("PostgreSQL (Prisma)")
elif [ -d "migrations" ]; then
database+=("SQL database")
fi
# Count files
total_files=$(find . -type f -name "*.ts" -o -name "*.js" -o -name "*.py" | wc -l)
# Count directories
dirs=$(find . -type d -maxdepth 2 | wc -l)
# Estimate lines of code
lines=$(find . -type f \( -name "*.ts" -o -name "*.js" -o -name "*.py" \) -exec cat {} \; | wc -l)
echo "Scale: $lines lines of code across $total_files files"
Determine stack position:
Technology Stack Assessment:
Frontend:
Framework: [Detected framework]
State Management: [Redux/Context/Pinia/etc.]
Styling: [CSS/Tailwind/Styled-components/etc.]
Build Tools: [Vite/Webpack/etc.]
Backend:
Runtime: [Node.js/Python/etc.]
Framework: [Express/Django/etc.]
API Pattern: [REST/GraphQL/etc.]
Database:
Type: [SQL/NoSQL/etc.]
ORM: [Prisma/TypeORM/etc.]
Infrastructure:
Hosting: [AWS/Vercel/Heroku/etc.]
CI/CD: [GitHub Actions/GitLab CI/etc.]
Container: [Docker/Kubernetes/etc.]
Map to industry vertical:
Industry Classification:
Primary Domain: [E-commerce/SaaS/Marketplace/Social/Fintech/Healthcare/Other]
Market Position:
Target Users: [B2B/B2C/Both]
Company Stage: [Startup/Growth/Enterprise]
Competitive Landscape: [Crowded/Emerging/Niche]
Technology Maturity:
Legacy Tech: [None/Some/Significant]
Modern Practices: [Adopting/Mature/Cutting-edge]
Technical Debt: [Low/Medium/High]
# Executive Summary: [Project Name]
## Overview
[Brief 2-3 sentence description of what this project is]
## Technology Stack
[High-level tech stack overview]
## Market Position
[Where this fits in the market]
## Key Differentiators
[What makes this unique]
## Technical Health
[Overall code quality assessment]
## Recommendations
[Strategic next steps]
# [Project Name]: Strategic Overview
## What We Built
[One-liner description]
## Technology Stack
[Visual stack representation]
## Market Position
[Competitive positioning]
## Why This Matters
[Business value]
## Next Steps
[Action items]
# Executive Summary: Sift-Coder Plugin
## Overview
Sift-Coder is a comprehensive AI-powered software engineering assistant plugin for Claude Code, providing 90+ specialized commands across development, testing, documentation, security, and Salesforce workflows.
## Technology Stack
**Type:** CLI Plugin / Markdown-based
**Language:** Markdown (prompts) + Shell scripts
**Platform:** Claude Code CLI
**Scale:** 90+ commands, ~3,000 lines of documentation
## Market Position
**Domain:** AI Developer Tools
**Category:** Coding Assistant Plugins
**Competitors:** Cursor, GitHub Copilot, Aider
**Differentiation:** Most comprehensive command set, unique creative features
## Key Strengths
1. **Breadth:** 90+ commands (vs ~30 for competitors)
2. **Creative AI Features:** Ghost mode, archaeologist, empathy, chaos
3. **Salesforce Specialization:** 15+ Salesforce commands
4. **Safety-First:** Boundary system, blast-radius analysis
5. **Multi-Agent:** Autonomous workflows with QA
## Technical Health
ā
**Architecture:** Modular, well-organized
ā
**Documentation:** Comprehensive
ā
**Extensibility:** Easy to add commands
ā
**Integration:** MCP support for enhancements
## Competitive Advantages
- **Semantic Search:** First in market (blue ocean)
- **Onboarding Tools:** Most comprehensive
- **Salesforce Focus:** 15+ specialized commands
- **Creative Features:** Unique AI capabilities
## Market Opportunity
**Demand:** High (84% of developers use AI tools)
**Growth:** Rapid (agentic AI emerging)
**Differentiation:** Strong (semantic search, Salesforce)
## Recommendations
1. **Near-Term:** Complete Phase 2 features (Flow, AgentForce)
2. **Marketing:** Highlight semantic search and onboarding
3. **Salesforce:** Lean into Salesforce specialization
4. **Enterprise:** Focus on team features (knowledge, onboarding)
## Strategic Position
**Vision:** Most comprehensive AI coding assistant
**Mission:** Autonomous, safe, creative development
**Moat:** Specialization (Salesforce) + Innovation (semantic search)
/siftcoder:understand/siftcoder:understand # Deep technical analysis
/siftcoder:executive-summary # Business/strategic overview
/siftcoder:ideate# After generating summary, ideate enhancements
/siftcoder:ideate "$(pwd)"
USE CASES
For investors:
ā /siftcoder:executive-summary --format pitch-deck
ā Focus on market position and differentiators
For technical leadership:
ā /siftcoder:executive-summary --format technical
ā Focus on stack, health, and recommendations
For product managers:
ā /siftcoder:executive-summary --format product
ā Focus on features and competitive landscape
FOR PRESENTATIONS
Use --format presentation:
ā Slide-friendly format
ā Concise bullet points
ā Visual structure
FOR REPORTS
Use --format detailed:
ā Comprehensive analysis
ā Multiple sections
ā Strategic recommendations
CUSTOMIZATION
Focus on specific aspect:
ā /siftcoder:executive-summary --focus technology
ā /siftcoder:executive-summary --focus market
ā /siftcoder:executive-summary --focus competitive
Read, Write, Glob, Grep, Bash, AskUserQuestion