Skip to main content
Glama
samvallad33

Vestige

by samvallad33

plan_supersede

Preview superseding a memory with a new one: invalidates the old bitemporally, keeps it queryable for audit, and returns a plan ID to apply later.

Instructions

Preview superseding memory A with B — bitemporal invalidation (stamps valid_until, keeps A queryable for audit) WITHOUT applying. Returns a plan_id for apply_plan.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
new_idYesMemory that supersedes the old one.
old_idYesMemory being superseded (kept, marked invalid).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv2.6.0
  2. Removedv2.3.0
  3. First observedv2.1.27

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the disclosure burden. It reveals that the operation is a dry run, describes bitemporal invalidation (stamps valid_until, keeps A queryable for audit), and states it returns a plan_id. It does not cover input validation or plan lifetime, but the key side-effect profile is transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single dense sentence packs the action, behavioral mechanism, non-applying caveat, and return value with no filler. Every clue earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a two-parameter preview tool with no output schema, the description gives enough: what it does, what changes it models, that it does not apply, and what the agent receives next. An agent can invoke it correctly and know the follow-up step.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and both parameters are already well described. The description adds the A/B role mapping and reinforcorces that old_id is kept and marked invalid, but this mostly restates schema semantics rather than adding new meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Preview superseding memory A with B', giving a specific verb and resource, and clarifies the non-applying preview nature with 'WITHOUT applying'. This clearly distinguishes it from apply_plan and other mutation siblings like plan_merge.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly frames the tool as a preview ('Preview... WITHOUT applying') and names the follow-up tool ('Returns a plan_id for apply_plan'), so the agent knows when to use it. It does not explicitly rule out related alternatives such as plan_merge, but the workflow context is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.