Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Stack entry point. Routing decision table + setup checklist + maintenance audit as auto-loaded skills. Ships SessionStart + PreToolUse routing hooks, /stack:doctor, /stack:bootstrap, /stack:update.
npx claudepluginhub yesitsfebreeze/stack --plugin stackOne-shot install for the full stack. Detects OS, runs the matching script, creates the .stack marker, reports CONTEXT7_API_KEY status.
Health check for the stack — MCPs connected, env vars set, binaries on PATH, opt-in marker present.
Refresh the stack marketplace and update every sub-plugin (stack, git-fs, vicky, context7, pdf-reader, caveman, context-mode). Restart required to apply.
Monthly audit, prune, reindex commands for the stack. Trigger when user says "stack maintenance", "audit stack", "prune stack", "reindex".
Stack decision table for routing work across kern, git-fs, vicky, Context7, pdf-reader, skills. Trigger when user says "follow stack routing", "route this", "which tool", or starts work in a stack-enabled project.
Bootstrap checklist for the stack workflow. Trigger when user says "stack setup", "bootstrap stack", "set up stack", or starts a new machine/project that needs stack tools.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Upstash Context7 MCP server for up-to-date documentation lookup. Pull version-specific documentation and code examples directly from source repositories into your LLM context.
Comprehensive startup business analysis with market sizing (TAM/SAM/SOM), financial modeling, team planning, and strategic research
Comprehensive .NET development skills for modern C#, ASP.NET, MAUI, Blazor, Aspire, EF Core, Native AOT, testing, security, performance optimization, CI/CD, and cloud-native applications
Permanent coding companion for Claude Code — survives any update. MCP-based terminal pet with ASCII art, stats, reactions, and personality.
Semantic search for Claude Code conversations. Remember past discussions, decisions, and patterns.
Fn-level code index MCP server. Splits source files into per-function body files for token-efficient navigation. Bidirectional watcher syncs edits.
Demand-driven knowledge base. Auto-enriches answers when gaps detected. Drives Obsidian + Dataview for live KB views.
Virtual filesystem over a bare git object store. Each Claude Code session works on agent/<id> branch; every edit is a commit; Stop hook merges to main and materializes to disk.
Versioned library/SDK/framework docs (Context7 hosted MCP).
PDF text + image + metadata extraction via @sylphx/pdf-reader-mcp.
Token-efficient workflow stack for Claude Code. One marketplace, one install command, one routing hook.
Bundles the MCP servers and skills that route work cheaply:
| Plugin | Job |
|---|---|
stack | Hub. Ships routing/setup/maintenance skills, SessionStart + PreToolUse hooks, /stack:doctor, /stack:bootstrap. |
git-fs | Per-session virtual filesystem. Branch isolation, auto-merge on stop. |
vicky | Persistent research KB. Survives sessions, links findings. |
context7 | Versioned library/SDK/framework docs over HTTP. |
pdf-reader | PDF text + image + metadata extraction via @sylphx/pdf-reader-mcp. |
caveman | (external) Ultra-compressed communication mode. |
context-mode | (external) Sandbox raw tool output, FTS5 search. |
Sub-plugins ship their own .mcp.json — no manual ~/.claude.json edits.
Drop .stack (empty file) in any project root. From then on, every session in that project gets:
WebFetch of library docs (→ Context7), WebSearch (→ vicky first), Read on large files (→ Grep).Without the marker the hooks are silent. Zero cost.
/plugin marketplace add yesitsfebreeze/stack
/plugin install stack@stack
/stack:bootstrap
/stack:bootstrap runs scripts/install.sh (POSIX) or scripts/install.ps1 (Windows) via Bash. The script:
stack marketplace.git-fs, vicky, context7, pdf-reader, caveman, context-mode..stack marker in cwd (activates routing hooks).CONTEXT7_API_KEY is unset.npx is not on PATH (required for pdf-reader).Idempotent — safe to re-run.
Direct invocation (without Claude Code):
# POSIX
bash scripts/install.sh
# Windows
powershell -ExecutionPolicy Bypass -File scripts/install.ps1
# or
scripts\install.bat
Then verify:
/stack:doctor
Reports MCP health, env vars, opt-in marker, installed plugins.
| Plugin | Needs |
|---|---|
git-fs | None — plugin auto-downloads binary on first run. |
vicky | None — upstream yesitsfebreeze/vicky plugin. |
context7 | CONTEXT7_API_KEY env var (get key) |
pdf-reader | Node.js ≥18 (npx on PATH). First run downloads @sylphx/pdf-reader-mcp from npm. |
touch .stack
See docs/OPT-IN.md.
One-shot via the bundled command:
/stack:update
Runs scripts/update.sh (POSIX) or scripts/update.ps1 (Windows) — refreshes the stack marketplace and claude plugin updates each sub-plugin (stack, git-fs, vicky, context7, pdf-reader, caveman, context-mode). Idempotent. Restart Claude Code to apply, then /stack:doctor to verify.
Direct invocation (without Claude Code):
# POSIX
bash scripts/update.sh
# Windows
powershell -ExecutionPolicy Bypass -File scripts/update.ps1
# or
scripts\update.bat
Manual fallback (per-plugin):
/plugin marketplace update stack
/plugin update stack@stack
/plugin update git-fs@stack
/plugin update vicky@stack
/plugin update context7@stack
/plugin update pdf-reader@stack
/plugin update caveman@stack
/plugin update context-mode@stack
/plugin uninstall stack@stack
/plugin marketplace remove stack
Removes hooks, skills, MCP registrations. Vendored vicky source and .stack markers stay — delete by hand.
| File | Purpose |
|---|---|
| docs/SETUP.md | Manual bootstrap checklist (without marketplace) |
| docs/ROUTING.md | Full decision table |
| docs/MAINTENANCE.md | Monthly audit / prune |
| docs/OPT-IN.md | .stack marker mechanics |
| docs/tools/ | Per-tool reference (git-fs, vicky, context7, skills) |
| docs/install/ | Per-tool install docs (git-fs, vicky, context7, pdf-reader, skills) |
| docs/reference/WORKFLOWS.md | Comparison vs 2026 ecosystem |