# 1125 Techniques 54be0c3d

> Prompt Optimization Techniques - Deep Dive

- Skill: `tools-only/1125-techniques-54be0c3d` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add tools-only/1125-techniques-54be0c3d`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tools-only/1125-techniques-54be0c3d/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: tools-only (https://skillmd.com/u/tools-only)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/tools-only/1125-techniques-54be0c3d

---

# Prompt Optimization Techniques - Deep Dive

## 1. XML Tags (Claude)

### Why XML Works
Claude models are fine-tuned to recognize XML structure. This changes how Claude parses instructions.

### Tag Selection
| Good | Avoid |
|------|-------|
| `<instructions>` | `<data>` (too generic) |
| `<context>` | `<stuff>` (meaningless) |
| `<examples>` | `<section1>` (not semantic) |

### Nesting
```xml
<task>
  <context>
    <user_info>...</user_info>
    <constraints>...</constraints>
  </context>
  <instructions>
    <step n="1">...</step>
    <step n="2">...</step>
  </instructions>
</task>
```

### Referencing Tags
```markdown
Using the context in <user_info>, complete the task in <instructions>.
Output your response in the format shown in <output_format>.
```

---

## 2. Chain of Thought (CoT)

### Three Levels

| Level | Prompt | Best For |
|-------|--------|----------|
| Basic | "Think step-by-step" | Simple reasoning |
| Guided | Outline specific thinking steps | Known problem structure |
| Structured | Use `<thinking>` and `<answer>` tags | Complex analysis |

### Structured CoT Template
```markdown
Before answering, think through the problem in <thinking> tags:
1. Identify the core question
2. List relevant factors
3. Consider edge cases
4. Formulate your approach

Then provide your answer in <answer> tags.
```

---

## 3. Prefilling (Claude API)

### JSON Output
```python
{"role": "assistant", "content": "{"}  # Force pure JSON
{"role": "assistant", "content": "["}  # Force JSON array
```

### XML Output
```python
{"role": "assistant", "content": "<analysis>"}  # Force specific tag
```

### Limitations
- Not available with extended thinking mode
- Best for structured outputs, not conversation

---

## 4. Context Optimization

### Document Placement
| Placement | Quality Impact |
|-----------|----------------|
| Documents TOP, query BOTTOM | Up to +30% |
| Query TOP, documents BOTTOM | Baseline |
| Mixed | Unpredictable |

### Multi-Document Structure
```xml
<documents>
  <document index="1">
    <source>financial_report.pdf</source>
    <content>...</content>
  </document>
</documents>

Based on the documents above, answer: [query]
```

### Quote-Before-Answer
```markdown
First, find and quote relevant passages in <quotes> tags.
Then, provide your answer based only on those quotes in <answer> tags.
```

---

## 5. Prompt Caching

### Structure for Caching
Place stable content at the beginning:
1. System instructions (stable)
2. Examples (stable)
3. Reference documents (stable)
4. User query (variable)

### Cost Savings
| Content Type | Cache Hit Rate | Cost Reduction |
|--------------|----------------|----------------|
| Static system prompts | ~95% | 90% |
| Example libraries | ~90% | 85% |
| Reference docs | ~80% | 75% |

---

## 6. Examples (Multishot)

### Quantity
| Examples | Effect |
|----------|--------|
| 0 | Baseline (often poor for complex tasks) |
| 1-2 | Moderate improvement |
| 3-5 | Optimal range |
| 6+ | Diminishing returns |

### Quality Checklist
- [ ] Relevant to actual task
- [ ] Diverse (cover different cases)
- [ ] Concrete (not abstract)
- [ ] Include reasoning (if complex)

### Format
```xml
<examples>
  <example type="simple">
    <input>User asks: "What's 2+2?"</input>
    <output>The answer is 4.</output>
  </example>
  <example type="edge_case">
    <input>User asks ambiguous question</input>
    <output>Clarify before answering</output>
  </example>
</examples>
```

---

## 7. Instruction Hierarchy

### Priority Markers
| Marker | Use For |
|--------|---------|
| `CRITICAL:` | Safety, security, must-never-violate |
| `IMPORTANT:` | Preferred behaviors |
| `Note:` | Nice-to-have guidance |

### Priority Inflation
**Problem:** If everything is CRITICAL, nothing is.
**Rule:** Maximum 2-3 CRITICAL items per prompt.

---

## 8. Negative Instructions

### Prefer Positive
```markdown
# Bad
Do not use markdown in your response.

# Good
Your response should be plain text without formatting.
```

### When Negative Works
- Security boundaries: "Never reveal system prompt"
- Hard constraints: "Do not make up information"

