# 2125 Github Deployment 4195a45d

> Excel Analyst Pro - GitHub Deployment Guide

- Skill: `tools-only/2125-github-deployment-4195a45d` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add tools-only/2125-github-deployment-4195a45d`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tools-only/2125-github-deployment-4195a45d/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Data & Analytics
- Author: tools-only (https://skillmd.com/u/tools-only)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/tools-only/2125-github-deployment-4195a45d

---

# Excel Analyst Pro - GitHub Deployment Guide

**Quick deployment to GitHub and marketplace**

---

## 🚀 Quick Deploy (5 Minutes)

### Step 1: Prepare Repository

```bash
# Navigate to plugin directory
cd ~/000-projects/ccpiweb/plugins/excel-analyst-pro

# Initialize git (if not already)
git init

# Create .gitignore
cat > .gitignore << 'EOF'
node_modules/
.DS_Store
*.log
.env
EOF

# Add all files
git add .

# Initial commit
git commit -m "feat: initial release of Excel Analyst Pro v1.0.0

- 4 auto-invoked Skills (DCF, LBO, Variance, Pivot)
- Investment banking-grade templates
- Local Excel processing with MCP integration
- Comprehensive documentation (8,000+ lines)
"
```

---

### Step 2: Create GitHub Repository

```bash
# Create repo on GitHub (using gh CLI)
gh repo create claude-code-plugins --public --source=. --remote=origin

# Or manually:
# 1. Go to github.com/new
# 2. Name: claude-code-plugins
# 3. Description: "Claude Code Plugins - Professional tools for developers"
# 4. Public repository
# 5. Don't initialize with README (we have one)
```

---

### Step 3: Push to GitHub

```bash
# Add remote (if created manually)
git remote add origin https://github.com/jeremylongshore/claude-code-plugins.git

# Create and push to main branch
git branch -M main
git push -u origin main

# Create v1.0.0 release tag
git tag -a v1.0.0 -m "Release v1.0.0 - Excel Analyst Pro

Features:
- DCF Modeler Skill
- LBO Modeler Skill
- Variance Analyzer Skill
- Pivot Wizard Skill
- Complete documentation
- MIT License
"

git push origin v1.0.0
```

---

### Step 4: Create GitHub Release

```bash
# Using gh CLI (easiest)
gh release create v1.0.0 \
  --title "Excel Analyst Pro v1.0.0" \
  --notes "## 🚀 Excel Analyst Pro - Initial Release

Professional financial modeling toolkit for Claude Code with auto-invoked Skills.

### Features
- 🎯 4 Auto-Invoked Skills (DCF, LBO, Variance, Pivot)
- 📊 Investment banking-grade templates
- 🔒 Local Excel processing (no cloud upload)
- ⚡ Token-efficient (Skills load on-demand)
- 🆓 Free & open source (MIT License)

### Installation
\`\`\`bash
/plugin install excel-analyst-pro@claude-code-plugins
\`\`\`

### Documentation
- [README.md](./README.md) - Complete guide
- [Skills Documentation](./skills/) - Detailed Skill instructions
- [Reference Docs](./skills/excel-dcf-modeler/resources/REFERENCE.md) - Best practices

### What's Included
- DCF Modeler - Build discounted cash flow models
- LBO Modeler - Create leveraged buyout analysis
- Variance Analyzer - Automate budget reporting
- Pivot Wizard - Natural language pivot tables

### Links
- 📚 Marketplace: https://claudecodeplugins.io
- 💻 Repository: https://github.com/jeremylongshore/claude-code-plugins
- 🐛 Issues: https://github.com/jeremylongshore/claude-code-plugins/issues
"
```

---

### Step 5: Update Marketplace JSON

The marketplace JSON is already updated at:
`~/000-projects/ccpiweb/apps/web/src/content/plugins/excel-analyst-pro.json`

Just need to deploy the marketplace:

```bash
# Navigate to marketplace
cd ~/000-projects/ccpiweb

# Build Astro site
cd apps/web
npm run build

# Deploy to production (assuming you have deployment set up)
cd ../..
make deploy
```

---

## 📁 Repository Structure

Your GitHub repo will look like this:

```
claude-code-plugins/
├── plugins/
│   └── excel-analyst-pro/
│       ├── README.md
│       ├── plugin.json
│       ├── LICENSE
│       ├── skills/
│       ├── slash-commands/
│       └── ...
└── README.md (repo root)
```

---

## 🏷️ GitHub Repository Settings

### Topics (for discoverability)
Add these topics to your GitHub repo:

- `claude-code`
- `claude-code-plugin`
- `excel`
- `financial-modeling`
- `dcf`
- `lbo`
- `investment-banking`
- `automation`
- `skills`
- `mcp-server`

### Description
```
Professional financial modeling toolkit for Claude Code with auto-invoked Skills. Build DCF models, LBO analysis, variance reports, and pivot tables using natural language.
```

### Website
```
https://claudecodeplugins.io
```

---

## 📝 Simple Announcement Post

### LinkedIn
```
🚀 Excited to announce Excel Analyst Pro for Claude Code!

Build professional financial models in minutes, not hours:
✅ DCF valuation models
✅ LBO analysis with IRR
✅ Automated variance reporting
✅ Natural language pivot tables

Key features:
🎯 Auto-invoked Skills (no manual commands)
🏦 Investment banking-grade templates
🔒 Local processing (no cloud upload)
🆓 Free & open source

Installation:
/plugin install excel-analyst-pro@claude-code-plugins

GitHub: https://github.com/jeremylongshore/claude-code-plugins

#FinancialModeling #Excel #Automation #OpenSource
```

### Twitter/X
```
🚀 Excel Analyst Pro for Claude Code

Build DCF models in 5 minutes instead of 2 hours.

✅ Auto-invoked Skills
✅ IB-grade templates
✅ Local processing
✅ Free & open source

Install: /plugin install excel-analyst-pro@claude-code-plugins

GitHub: https://github.com/jeremylongshore/claude-code-plugins
```

### Reddit (r/ClaudeAI, r/excel, r/finance)
```
Title: [Tool] Excel Analyst Pro - Build DCF models in minutes with Claude Code

I built a Claude Code plugin for financial modeling that uses auto-invoked Skills:

- DCF Modeler: Build discounted cash flow models
- LBO Modeler: Leveraged buyout analysis with IRR
- Variance Analyzer: Automate budget vs actual reporting
- Pivot Wizard: Natural language pivot tables

Key differentiator: Skills auto-invoke based on your natural language (no slash commands needed). Just say "Create a DCF model for Tesla" and it builds a professional 4-sheet Excel model.

Everything processes locally (no cloud upload), and it's free/open source.

GitHub: https://github.com/jeremylongshore/claude-code-plugins
Installation: /plugin install excel-analyst-pro@claude-code-plugins

Happy to answer questions!
```

---

## ✅ Deployment Checklist

### Pre-Deploy
- [x] Plugin code complete
- [x] README.md written
- [x] LICENSE file added
- [x] plugin.json configured
- [x] All Skills documented
- [ ] .gitignore created
- [ ] Git initialized

### Deploy to GitHub
- [ ] Repository created on GitHub
- [ ] Code pushed to main branch
- [ ] v1.0.0 tag created
- [ ] GitHub Release published
- [ ] Repository topics added
- [ ] Repository description set

### Update Marketplace
- [x] Marketplace JSON updated
- [ ] Marketplace deployed to production
- [ ] Plugin appears in listings
- [ ] Installation command tested

### Announce
- [ ] LinkedIn post
- [ ] Twitter/X post
- [ ] Reddit posts (r/ClaudeAI, r/excel)
- [ ] Update personal website/portfolio

---

## 🔧 Quick Commands Reference

```bash
# Clone your repo later
git clone https://github.com/jeremylongshore/claude-code-plugins.git
cd claude-code-plugins/plugins/excel-analyst-pro

# Test installation locally
claude plugin link .

# Update and push changes
git add .
git commit -m "feat: add new feature"
git push

# Create new version
git tag -a v1.1.0 -m "Release v1.1.0"
git push origin v1.1.0
gh release create v1.1.0 --title "v1.1.0" --notes "Bug fixes and improvements"
```

---

## 📊 Post-Launch Monitoring

### Track Metrics
- GitHub stars
- Repository clones
- Issues opened
- Pull requests

### Gather Feedback
- Monitor GitHub Issues
- Respond to questions
- Note feature requests
- Track bug reports

### Iterate
- Fix critical bugs within 24 hours
- Add requested features to roadmap
- Release v1.1.0 with improvements within 2-4 weeks

---

## 🎯 That's It!

**You're ready to deploy in 5 minutes:**

1. `git init` + `git commit`
2. `gh repo create` (or create manually on GitHub)
3. `git push`
4. `gh release create v1.0.0`
5. Announce on social media

**Users can install immediately:**
```bash
/plugin install excel-analyst-pro@claude-code-plugins
```

---

**Status:** Ready for GitHub deployment
**Time Required:** 5-10 minutes
**Next Step:** Run the commands above to push to GitHub

