Prompt engineering standards and context engineering principles for AI agents based on Anthropic best practices...
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: @plugins/meta-work/docs/HOW_TO_PROMPT_ENGINEERING.md
Anthropic's "Effective Context Engineering for AI Agents"