CONTEXT_CAPTURE_INSTRUCTIONS

Constant CONTEXT_CAPTURE_INSTRUCTIONS 

Source
const CONTEXT_CAPTURE_INSTRUCTIONS: &str = r#"
## Context-Aware Capture Analysis

Analyze the provided context to identify capture-worthy content.

**Capture Signals to look for**:
- Decision language: "let's use", "we decided", "going with"
- Pattern language: "always", "never", "when X do Y", "the pattern is"
- Learning language: "TIL", "gotcha", "realized", "the issue was"
- Context language: "because", "constraint", "requirement", "the reason"

**For each suggestion, provide**:
```
Namespace: <appropriate namespace>
Content: <memory text>
Tags: <comma-separated tags>
Confidence: <0.0-1.0>
Rationale: <why this should be captured>
```

**Filtering rules**:
- Only suggest if confidence >= threshold
- Skip purely mechanical/trivial content
- Prefer actionable insights over raw observations
- Dedupe against what might already exist
"#;