Prompt engineering standards and context engineering principles for AI agents based on Anthropic best practices. Covers clarity, structure, progressive discovery, and optimization for signal-to-noise ratio.
Provides prompt engineering standards and context optimization techniques based on Anthropic best practices. Use when users ask for prompt structure help, context engineering guidance, or AI agent design to improve signal-to-noise ratio and token efficiency.
/plugin marketplace add danielmiessler/PAIPlugin/plugin install danielmiessler-pai@danielmiessler/PAIPluginThis skill inherits all available tools. When active, it can use any tool Claude has access to.
CLAUDE.mdContext 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: read ${PAI_DIR}/skills/prompting/CLAUDE.md
Anthropic's "Effective Context Engineering for AI Agents"
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.