Skip to content

Sources & value of information

Source collection is not the goal. The skill gathers and measures information only when it improves the estimate or changes the action.

  1. The agent gathers available local context before web research.
  2. Direct evidence, official sources, reference classes, and comparable cases are listed separately.
  3. Every source is judged against the exact estimate target for quality and freshness.
  4. Facts are distinguished from assumptions and inference.
  5. Remaining uncertainties are ranked by their decision impact.
  6. The agent proposes the cheapest credible next measurement.
  7. Research stops when additional evidence cannot change the decision.

For local nonprofit, community, or relationship-priced work, the agent models both full-market pricing and plausible paid-quote pricing. It never applies that adjustment to official fees, statutory rates, or current public benchmarks.

Inputs

  • estimate target and mode;
  • decision threshold;
  • available sources and observations;
  • source dates and provenance;
  • reference classes;
  • remaining uncertainties; and
  • cost or effort of additional measurements.

Outputs

  • source/anchor table;
  • source-quality and freshness notes;
  • confirmed fact / assumption / inference separation;
  • ranked value-of-information table;
  • top uncertainty driver;
  • next measurement step; and
  • stopping rule.
StateBehavior
Fresh direct sourceUse it as a confirmed anchor.
Indirect comparableUse it as a reference class and label the inference.
Stale sourceRefresh it or weaken confidence.
Conflicting sourcesPreserve the disagreement and widen the range.
Small sampleUpdate cautiously and keep the interval calibrated to sample size.
Sensitive private evidenceUse only when the user explicitly authorizes inclusion.
Easy but irrelevant metricDo not measure it if it cannot change the decision.
Discounted local contextModel a realistic paid scenario and stress-test the low bound.
Official fee or statutory rateUse the current official source without local discounting.
type EvidenceItem = {
label: string
value: number | string
sourceUrl?: string
observedAt?: string
kind: "direct" | "official" | "reference-class" | "assumption" | "inference"
quality: "high" | "medium" | "low"
freshness: "current" | "aging" | "stale" | "unknown"
relevance: string
}
type ValueOfInformationItem = {
rank: number
uncertainty: string
whyItMatters: string
measurement: string
expectedDecisionImpact: string
stopWhen: string
}
  • 2026-07-11 — Source relevance is target-specific. A reputable source can still be a weak anchor for the quantity being estimated.
  • 2026-07-11 — Research has a stopping rule. More citations are not automatically more decision value.

None for the current release.