Fresh source
- Source
- Project Atlas status page
- Published
- recent demo update
- Retrieved
- now, during the demo run
- Content
- “Project Atlas is operational after the May patch.”
A small static demo showing how FreshContext ranks fresh, stale, unknown-date, and failed retrieval signals before they reach a model.
The example uses synthetic data and simplified envelopes to show the Core scoring, ranking, explanation, and provenance logic through the MCP/reference implementation.
Scenario
The demo query is fictional: “What is the current status of Project Atlas?” The raw snippets below are synthetic examples designed to show the context-quality problem.
Naive retrieval
A simple retriever can find all four snippets relevant to Project Atlas, then pass them into the model without enough context about age, confidence, or failure state.
FreshContext pass
FreshContext Core logic evaluates each signal for source, timestamps, freshness, confidence, utility, status, and provenance metadata before an LLM or agent sees it.
| Rank | Source | Freshness | Confidence | Status | Reason |
|---|---|---|---|---|---|
| 1 | Project Atlas status page | High | High | success | Recent source with a clear publication signal and direct current-status language. |
| 2 | archived engineering memo | Low | Medium | success, stale | Authoritative source, but the age conflicts with a current-status query. |
| 3 | copied internal note | Unknown | Low | unknown date | Relevant content, but no reliable published timestamp or source provenance. |
| 4 | dashboard API | Unavailable | None | excluded | Fetch failed; the result is marked as a failed signal and excluded from trusted context. |
Context envelope
This is a simplified demo envelope, not a claim that the block below is the exact production schema.
{
"source": "Project Atlas status page",
"published_at": "recent-demo-update",
"retrieved_at": "demo-run-now",
"freshness_score": "high",
"confidence": "high",
"status": "success",
"reason": "Recent source with direct current-status language.",
"provenance": "audit metadata"
}
Final agent-facing context
FreshContext would prefer the fresh status page, warn that the archived memo is stale, down-rank the unknown-date note, and exclude the failed dashboard API result from trusted context.
Project Atlas is operational after the May patch.
Attached warning: an older memo says limited beta, but it is stale relative to the query.
Better models do not remove context risk. They increase the importance of deciding what information reaches the model in the first place.