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.”
FreshContext takes caller-provided context, scores the evidence, explains the treatment, and returns a readable handoff before an agent or model acts.
This page is a static product demo. It reflects the current evaluate_context path, readable output, provenance readiness, and handoff-safety framing without claiming a live app console.
Console proof
This is the product boundary: FreshContext does not fetch by default. It judges candidate context that a caller provides, then makes that judgment readable and safe to pass forward.
{
"profile": "academic_research",
"intent": "citation_check",
"signals": [{
"title": "Fresh source with clear date",
"source_type": "official_docs",
"published_at": "2026-06-13",
"semantic_score": 0.92
}]
}
Use this as main evidence while preserving citation and provenance.
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. |
Readable decision output
FreshContext now returns a readable layer beside the structured result, so a person or another agent can see how the context should be treated.
This source is strong enough to use as main evidence.
Why: Strong semantic match and current freshness. Source profile supports lenient academic date policy. Intent profile selected citation checking.
Use this as main evidence while preserving citation and provenance.
Boundary: FreshContext does not determine truth. It records why context was used, supported, questioned, refreshed, watched, or excluded before it reaches a model.
Walkthroughs
These videos show the judgment layer first: candidate context goes in, FreshContext evaluates it, and decision-ready output comes out.
Candidate context in, scoring and readable decision out.
Bring your own JSON, then inspect what survives and why.
What FreshContext preserves for audit and handoff.
Install, connect, run smoke, and call the context judgment tool.
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.