Short answer: you can do plenty on the evidence side without prompt engineering—but if an LLM is going to produce the final answer, you still need at least a minimal prompt contract. Context engineering outputs by itself; it prepares and governs the fuel. Prompts are the steering.

What you can do without prompt engineering

These are valuable and often prerequisite:

These deliver governance, auditability, and performance benefits independent of any prompt work.

What breaks if you skip prompt engineering (for LLM outputs)

The absolute minimum contract (copy/paste)

If you must keep it tiny, give the model this “seatbelt”:

System: Use only the provided context. Rank by retrieval_score; break ties by newest date; prefer primary sources.
If sources conflict, list both with dates; do not harmonize. If required fields are missing, ask for them or refuse.
Output JSON: {"answer":"...", "citations":["source_id"], "uncertainty":0-1, "missing":["field"], "rationale":"one sentence"}.

Practical takeaway