{
  "markdown": "# 🔧 Prompt Enhancer Pack for Claude Code\n\nStop writing vague prompts. This pack auto-enhances your prompts before Claude responds.\n\n![Claude Code](https://img.shields.io/badge/Claude_Code-2.x+-orange)\n![Version](https://img.shields.io/badge/version-2.0-blue)\n![License](https://img.shields.io/badge/license-MIT-green)\n![Plugin](https://img.shields.io/badge/Claude_Code-Plugin-purple)\n\n## Demo\n\n![Prompt Enhancer Demo](assets/demo.png)\n\n## What's New in v2.0\n\n- **Context-aware**: Scans your codebase before enhancing — detects tech stack, frameworks, and project patterns\n- **Few-shot examples**: Each skill includes before/after examples so Claude knows exactly what \"good\" looks like\n- **Named techniques**: Uses specific methods like specificity injection, anti-patterns, and constraint setting\n- **Writing classification**: Automatically categorizes into 6 writing types and applies the right framework\n- **Deep platform profiles**: Each AI platform gets genuinely different optimization with detailed examples\n\n## Install (10 seconds)\n\n**Recommended — install as a Claude Code plugin** (auto-updates, one command):\n\n```\n/plugin marketplace add SivaJyothiPamarthy/prompt-enhancer-pack\n/plugin install prompt-enhancer-pack@prompt-enhancer\n```\n\nSkills are then available as `/prompt-enhancer-pack:enhance`, `/prompt-enhancer-pack:enhance-code`, etc.\n\nTo update later: `/plugin marketplace update prompt-enhancer`.\n\n<details>\n<summary>Manual install (legacy, unscoped skill names)</summary>\n\n**macOS / Linux:**\n```bash\ngit clone https://github.com/SivaJyothiPamarthy/prompt-enhancer-pack.git\ncd prompt-enhancer-pack\nchmod +x install.sh\n./install.sh\n```\n\n**Windows:**\n```cmd\ngit clone https://github.com/SivaJyothiPamarthy/prompt-enhancer-pack.git\ncd prompt-enhancer-pack\ninstall.bat\n```\n\nThen **restart Claude Code**. Skills are available as `/enhance`, `/enhance-code`, etc.\n\n</details>\n\n## Commands\n\n> **Note on naming:** Examples below use the unscoped names (`/enhance`). If you installed via the plugin marketplace, the names are namespaced: `/prompt-enhancer-pack:enhance`, `/prompt-enhancer-pack:enhance-code`, etc. Functionality is identical.\n\n| Command | Best For | Context-Aware | Example |\n|---------|----------|:---:|---------|\n| `/enhance` | Anything | ✅ | `/enhance explain kubernetes` |\n| `/enhance-code` | Coding tasks | ✅ Detects tech stack | `/enhance-code add authentication` |\n| `/enhance-writing` | Writing tasks | ✅ Matches content style | `/enhance-writing blog post about AI` |\n| `/enhance-for` | Other AIs | — | `/enhance-for chatgpt explain docker` |\n\n### `/enhance [prompt]` — General purpose\n\nAnalyzes your prompt for intent, audience, scope, and gaps. Adds specificity, structure, constraints, and anti-patterns.\n\n```\n/enhance explain kubernetes\n/enhance compare SQL vs NoSQL\n/enhance help me with system design interview prep\n```\n\n### `/enhance-code [prompt]` — Code focused (reads your codebase)\n\nAutomatically detects your project's tech stack from `package.json`, `requirements.txt`, `Cargo.toml`, etc. References actual files and patterns from your codebase in the enhanced prompt.\n\n```\n/enhance-code add authentication        # detects Next.js, suggests NextAuth\n/enhance-code add endpoint for users    # detects FastAPI, matches existing router pattern\n/enhance-code python web scraper        # no project? falls back to best practices\n```\n\n**Example output inside a Next.js project:**\n```\nENHANCED CODE PROMPT\n─────────────────────────────────────\nProject: Next.js 14 + TypeScript + Prisma\n─────────────────────────────────────\nAdd authentication using NextAuth.js (already in package.json).\nImplement: sign-in page at /auth/signin with email/password\nand Google OAuth, session management using the existing Prisma\nadapter, protected API routes using middleware...\n```\n\n### `/enhance-writing [prompt]` — Writing focused (classifies type)\n\nClassifies your request into one of 6 categories (technical, business, marketing, creative, academic, personal) and applies the right enhancement framework for each.\n\n```\n/enhance-writing cover letter for Google          # → Personal: authenticity, highlights\n/enhance-writing blog post about AI trends        # → Marketing: hook, audience, CTA\n/enhance-writing API documentation                # → Technical: structure, code examples\n/enhance-writing email to client about delay      # → Business: tone, action items\n```\n\n### `/enhance-for [platform] [prompt]` — Cross-platform\n\nEach AI responds differently to prompt structures. This rewrites your prompt optimized for a specific platform's strengths. Copy the result and paste it there.\n\nSupported: `chatgpt` · `gemini` · `cursor` · `copilot` · `claude`\n\n```\n/enhance-for chatgpt explain microservices\n/enhance-for cursor build a login component in React\n/enhance-for gemini compare cloud providers\n```\n\n| Platform | Optimization Strategy |\n|----------|----------------------|\n| ChatGPT | Role-based persona, markdown formatting, numbered steps |\n| Gemini | Structured sections, tables, comparison frameworks |\n| Cursor | File paths, function signatures, project-aware context |\n| Copilot | Comment-style, input/output types, inline edge cases |\n| Claude | Clear constraints, scope boundaries, anti-patterns |\n\n## How It Works\n\n```\nYou type:     /enhance explain docker\n                    ↓\nClaude:       [Scans project context if available]\n                    ↓\nClaude shows: Enhanced, well-structured prompt\n                    ↓\nYou choose:   yes → proceed | edit → modify | skip → use original\n                    ↓\nClaude:       High-quality response based on approved prompt\n```\n\n## Project Structure\n\n```\nprompt-enhancer-pack/\n├── README.md\n├── CHANGELOG.md\n├── LICENSE\n├── .claude-plugin/\n│   ├── marketplace.json             → declares this repo as a Claude Code marketplace\n│   └── plugin.json                  → plugin manifest (name, version, author)\n├── install.sh                       → legacy manual installer\n├── install.bat                      → legacy manual installer (Windows)\n├── uninstall.sh                     → legacy manual uninstaller\n├── assets/\n│   └── demo.png\n└── skills/\n    ├── enhance/SKILL.md             → /enhance\n    ├── enhance-code/SKILL.md        → /enhance-code\n    ├── enhance-writing/SKILL.md     → /enhance-writing\n    └── enhance-for/SKILL.md         → /enhance-for\n```\n\n## Uninstall\n\n**Plugin install:**\n```\n/plugin uninstall prompt-enhancer-pack@prompt-enhancer\n/plugin marketplace remove prompt-enhancer\n```\n\n**Legacy manual install:**\n```bash\nchmod +x uninstall.sh\n./uninstall.sh\n```\n\n## Contributing\n\nPRs welcome! To add a new enhancer:\n\n1. Create `skills/your-skill-name/SKILL.md`\n2. Add YAML frontmatter with `name` and `description`\n3. Add `allowed-tools` if it needs codebase access\n4. Include few-shot examples for better results\n5. Test it locally, then submit a PR\n\n## Requirements\n\n- Claude Code 2.x+\n\n",
  "bytes": 6896,
  "sha": "8e54bf58748bd7fea03840eff255fa65c0aa20e2d48865ee7b6c794357586a15",
  "repo_slug": "sivajyothipamarthy/prompt-enhancer-pack",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_sivajyothipamarthy_prompt_enhancer_pack__93f8f46c/readme"
}