npx claudepluginhub jeffh/claude-plugins --plugin paiThis skill uses the workspace's default tool permissions.
- Prompt engineering questions
Provides expert guidance on prompt engineering, custom instructions design, and optimization for AI agents. Covers best practices, advanced techniques like chain-of-thought prompting, few-shot examples, and evaluation methods for refining prompts and debugging issues.
Guides context engineering for Claude: designing prompts, system prompts, and context windows using Anthropic techniques like clear instructions, multishot examples, chain-of-thought, XML tags. For API calls, agents, complex inputs.
Crafts or updates LLM prompts from first principles by discovering goals, constraints, and context through targeted questions. Use for new prompts, updates, or reviews.
Share bugs, ideas, or general feedback.
Context engineering = Curating optimal set of tokens during LLM inference
Primary Goal: Find smallest possible set of high-signal tokens that maximize desired outcomes
Use clear semantic sections:
✅ Good: "Validate input before processing" ❌ Bad: "You should always make sure to validate..."
✅ Good: "Use calculate_tax tool with amount and jurisdiction" ❌ Bad: "You might want to consider using..."
✅ Good: Bulleted constraints ❌ Bad: Paragraph of requirements
Don't load full data dumps - use references and load when needed
Persist important info outside context window
Delegate subtasks to specialized agents with minimal context
❌ Verbose explanations ❌ Historical context dumping ❌ Overlapping tool definitions ❌ Premature information loading ❌ Vague instructions ("might", "could", "should")
For full standards: reading the Prompting skill
Anthropic's "Effective Context Engineering for AI Agents"