0 cumulative citations
View corpus contextA read-only, environment-probing curator substantially improves agent memory: on CLBench probe-enabled curation raised pass rate from 39% to 73% and halved task-agent cost (≈$3.38 → $1.68), while reducing redundant tool calls and improving cost-effectiveness across multiple enterprise document worlds.
Citation observations
Cumulative provider counts captured on specific dates; providers are never combined.
Persistent memory is entering production-oriented agent platforms to help long-horizon agents accumulate experience across sessions. Yet a post-task curator agent restricted to completed trajectories can preserve errors, overgeneralize partial evidence, or retain stale knowledge. We introduce environment-probing curation, a deployment-compatible extension that gives an existing asynchronous curator agent least-privilege, read-only world tools to check, scope, and refresh candidate memories. It requires no model retraining and leaves the task agent, retriever, memory representation, and production write authority unchanged. In a production-like GitHub Copilot (GHCP) harness built on its SDK, we compare stateless execution, full in-context learning, GHCP + Mem, and GHCP + Mem (w/ Env Probing) on CLBench database exploration and 90 adapted APEX management-consulting tasks. On CLBench, probing raises pass rate from 39% to 73% and pass-discounted reward from 8.60 to 22.60 while reducing queries from 8.8 to 4.7 per question and task-agent cost from \$3.38 to \$1.68. Across six APEX worlds, all 18 memory-versus-baseline mean reward comparisons are positive and task-agent tool calls fall by 16--75%; probing gives the best task-agent reward gain per dollar in five worlds. Probing also attains higher mean reward than GHCP + Mem on both Sonnet 4.6 and Opus 4.7 without schema drift. Environment probing therefore turns existing agent-memory curation into an environment-informed, auditable process while preserving a compact task-time interface.
Summary
Main Finding
Environment-probing curation — giving an asynchronous post-task curator agent limited, read-only access to environment tools to test and refresh candidate memory records before committing them — substantially improves long-horizon agent performance and reduces task-time exploration cost. It requires no model retraining, preserves existing task-time interfaces and write authority, and yields large gains in accuracy, task-agent tool-call reduction, and cost-efficiency in production-like benchmarks.
Key Points
- Problem: post-task curation that only sees completed trajectories can preserve errors, overgeneralize from partial evidence, or retain stale facts after environment drift.
- Proposal: a propose–probe–commit curator that (1) distills the task trajectory, (2) proposes candidate memory records, (3) issues targeted read-only probes of the environment to verify/scope/refresh them, then (4) creates/updates/deletes memory records. Probes are off the user-facing critical path, use least-privilege read-only tools, and are audited.
- Deployment-friendly: no model weight changes, no changes to the task agent, retriever, memory schema, or production write authority; curator tools are limited to read-only operations and CRUD on memory.
- Empirical improvements (high-level):
- CLBench (GPT-5.4, schema-drift schedule): pass rate rose from 39% (no memory) to 73% (memory with probing); pass-discounted reward rose from 8.60 to 22.60. Queries per question dropped 8.8 → 4.7. Task-agent cost fell $3.38 → $1.68.
- APEX (six document worlds, 90 tasks): all 18 memory-vs-baseline mean-reward comparisons were positive; probing gave the best reward gain per task-agent dollar in 5 of 6 worlds. In the most expensive world, tool calls dropped from 71.6 → 17.7–19.3; tokens and run cost also fell dramatically (e.g., input tokens 53.92M → 6.56–7.67M; cost $54.30 → $7–$9 per run).
- Operational benefits: curators repair schema drift, scope procedural lemmas, and eliminate repeated environment exploration by later task agents.
- Limitations / requirements: needs a safe read-only surface for probing; curator compute and probe costs occur off the task-agent budget and must be accounted for in end-to-end cost analyses.
Data & Methods
- Systems compared (GitHub Copilot harness): GHCP (No Memory), GHCP + Full ICL (in-context prior trajectories), GHCP + Mem (trajectory-derived memory with read-only memory_read), GHCP + Mem (w/ Env Probing) — same task agent and memory schema; only curator gains read-only environment tools in the last condition.
- Benchmarks:
- CLBench: database exploration with two schedules — 40-question drift schedule (schema changes midstream) and 30-question no-drift schedule; evaluates schema discovery, reuse, and migration repair.
- Adapted APEX: 90 management-consulting tasks across six heterogeneous document worlds (PDF/XLSX/DOCX/PPTX), requiring discovery and analysis tools.
- Models: experiments primarily used gpt-5.4; task agent, distiller, curator share the same base model within experiments.
- Curator workflow:
- Distillation: non-writing transform of the raw trajectory to a distilled summary used by curator.
- Curator goals: produce compact, actionable records (lemma, scope, provenance, confidence) and perform CRUD to maintain a small high-utility store.
- Environment probing: read-only targeted queries to check candidate records (test relation on omitted slices, re-enact procedures, check preconditions, refresh stale fields).
- Metrics:
- Strict pass (all rubric criteria must pass).
- Pass-discounted reward: ri = pi * (1 − qi / B), where qi = task-agent tool calls and B is budget (B=15 for CLBench SQL calls; B=100 for APEX Archipelago calls).
- Also report queries/tool calls, tokens, and USD task-agent cost. Curation costs and memory-management calls are tracked separately (not included in task-agent cost).
Implications for AI Economics
- Cost-efficiency and ROI
- Environment-probing reduces expensive task-time exploration and thereby lowers per-task runtime compute/token costs and API spending for the task agent. The paper reports ~50% reductions in task-agent cost on CLBench (e.g., $3.38 → $1.68).
- The observed improvements imply a favorable ROI for investing in curator infrastructure: modest backend curation/probe compute can yield larger reductions in frequent, high-cost task-agent queries.
- However, careful accounting is required: curator compute, probe cost, and any storage/indexing overhead are additional operational expenses that should be included in total cost-of-ownership analyses.
- Pricing and product design
- Providers can tailor pricing models: charging separately for persistent memory/curation services or bundling curated memory as a value add (since it reduces downstream per-task cost and improves quality).
- Market differentiation: memory curation with environment probing becomes a service feature (better accuracy, lower usage cost) for enterprise customers with evolving environments.
- Scalability and platform incentives
- The method scales without retraining; as memory grows, retrieval (compact lemmas) avoids linear growth in task-time context, avoiding high ICL token costs.
- Centralized curator agents with controlled read-only access imply platform-level incentives to maintain secure, auditable connectors. This centralization may consolidate power with platform operators who manage read surfaces and auditing.
- Labor and automation effects
- Better persistent memory reduces redundant exploration work, increasing agent throughput and reducing human-in-the-loop verification costs; this can accelerate automation of enterprise analyst workflows.
- Conversely, building and maintaining the curator/tooling layer requires engineering investment, which shifts labor demand from repeated task execution to infrastructure and governance.
- Governance, auditing, and liability
- Because probing is auditable and least-privilege, it improves provenance and defendability of stored memory records — important for compliance and enterprise risk management.
- Read-only probes limit side effects, reducing operational risk versus giving asynchronous agents write access to environments.
- Research and accounting recommendations
- AI economists and deployers should evaluate end-to-end cost and benefit: include curator compute/token costs, frequency of memory reads by task agents, and long-run savings from fewer task-agent tool calls.
- Sensitivity analysis: measure break-even horizons where curation investment amortizes given task frequency, environment drift rates, and probe cost per record.
- Consider contract and access constraints: not all environments provide safe read-only surfaces; economic value depends on the ability to probe reliably.
- Broader strategic effects
- Reduces need for frequent model retraining for environment-specific facts/procedures (memory + probing provides continual updating).
- Encourages platform features that enable safe, auditable read-only connectors, changing how enterprise data integration is monetized and governed.
Takeaway: environment-probing curation is a low-friction, deployment-compatible intervention that materially raises long-horizon agent correctness and cost-efficiency. For AI-economic planning, it shifts some cost from per-task runtime to centralized curation/probing, but typically yields net savings and operational benefits; accurate end-to-end accounting and governance of the read-only probe surface are essential.
Assessment
Claims (9)
| Claim | Direction | Outcome | Confidence & Evidence | Details |
|---|---|---|---|---|
| On the 40-question CLBench schedule with schema drift, environment-probing memory increased the strict pass rate from 39% for GHCP without memory to 73%. Task Completion Time | positive | Strict task pass rate |
Reading fidelity
high
Study strength
medium
|
n=5
34 percentage-point increase (39% to 73%)
|
| On the CLBench drift schedule, environment-probing memory increased total pass-discounted reward from 8.60 to 22.60. Decision Quality | positive | Pass-discounted task reward |
Reading fidelity
high
Study strength
medium
|
n=5
14.00 reward points (8.60 to 22.60)
|
| Environment probing reduced CLBench task-agent SQL queries from 8.8 to 4.7 per question. Organizational Efficiency | negative | Task-agent SQL queries per question |
Reading fidelity
high
Study strength
medium
|
n=5
4.1 fewer queries per question (8.8 to 4.7)
|
| Environment probing reduced CLBench task-agent cost from $3.38 to $1.68. Organizational Efficiency | negative | Task-agent cost per run |
Reading fidelity
high
Study strength
medium
|
n=5
$1.70 reduction ($3.38 to $1.68)
|
| On the CLBench no-drift schedule, environment-probing memory achieved higher mean reward than GHCP plus memory without probing for both Sonnet 4.6 and Opus 4.7. Decision Quality | positive | Mean pass-discounted reward |
Reading fidelity
high
Study strength
medium
|
n=5
0.075 higher for Sonnet 4.6 and 0.025 higher for Opus 4.7
|
| Across the six adapted APEX worlds, all 18 memory-versus-baseline mean reward comparisons were positive. Decision Quality | positive | Mean task reward relative to baseline |
Reading fidelity
high
Study strength
low
|
n=90
All 18 comparisons positive
|
| In five of the six APEX worlds, environment probing produced the best task-agent reward gain per dollar among the evaluated memory configurations. Organizational Efficiency | positive | Task-agent reward gain per dollar |
Reading fidelity
high
Study strength
low
|
n=6
Best in 5 of 6 worlds
|
| Across the adapted APEX tasks, memory systems reduced task-agent tool calls by between 16% and 75% relative to baseline. Organizational Efficiency | negative | Task-agent tool calls |
Reading fidelity
high
Study strength
low
|
n=90
16%–75% reduction
|
| On CLBench, environment-probing memory achieved the highest pass rate and reward while using fewer input tokens than full in-context learning. Organizational Efficiency | positive | Task performance with task-time context consumption |
Reading fidelity
high
Study strength
medium
|
n=5
3.73M fewer input tokens than full ICL (1.69M versus 5.42M)
|