Skip to main content
Glama

Log a user-visible change

log_change

Record one user-visible product change as a PostHog annotation so solo builders can later get statistically honest verdicts on whether it moved key metrics.

Instructions

Record ONE user-visible product change as a PostHog annotation so it can be graded later. Log only changes a user could notice: pricing, copy, onboarding, packaging, email, channel. Never log refactors, dependency bumps, tests, infra, CI, or internal tooling. One change per call — never batch. Non-code changes count and matter most: a price change announced in a chat session logs exactly as well as a merged PR does. If unsure whether something qualifies, ask the user once; never log speculatively.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNoISO-8601 with offset. Defaults to now. Set it when logging a change that shipped earlier.
summaryYesOne line, human readable, past tense. What changed, not why. Example: "Asked onboarding questions before requiring an account".
surfaceYesWhere it went live. Examples: "/free", "store checkout", "LinkedIn", "welcome email".
categoryYespricing | copy | onboarding | packaging | email | channel | other. Use "other" only when none of the rest fit, and set metric_hint when you do.
metric_hintNoThe funnel step this change most directly touches, as a PostHog event name where you know it. Example: "signup_started". Strongly improves the later verdict.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

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

Beyond the annotations (readOnlyHint=false, openWorldHint=true), the description reveals the external write side effect (creates a PostHog annotation), the singular-unit behavior, and the non-batching constraint. It also clarifies that non-code changes are valid, preventing the agent from assuming only PRs count. There is no contradiction with annotations, but it doesn't cover what happens if the same change is logged twice.

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?

The description is a dense, single paragraph with every clause adding operational guidance: qualifying categories, exclusions, batching constraint, non-code emphasis, and speculative-logging policy. It is front-loaded with the core action and avoids redundant restatements of the title. Each sentence contributes to correct selection and invocation.

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?

Given the tool has five parameters, no output schema, and annotations that are thin, the description covers the critical invocations: what counts as a loggable change, how to handle uncertainty, and the one-call-per-change rule. It is complete for an agent to select and call the tool without further clarification. The return value is not described, but with no output schema that is not a significant gap.

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?

The input schema already provides 100% description coverage for all five parameters, so the baseline is 3. The description adds context about what constitutes a qualifying change (non-code counts, ask user when unsure) but doesn't add syntax or format details beyond the schema. Therefore the parameter semantics are adequate but not significantly enhanced by the description.

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 uses a specific verb and resource ('Record ONE user-visible product change as a PostHog annotation') and clearly defines the scope by listing qualifying categories and exclusions. This makes it easy to distinguish from the sibling tool check_changes, which presumably reads/checks changes. The emphasis on 'ONE ... per call' adds precision.

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

Usage Guidelines5/5

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

It provides explicit inclusion lists (pricing, copy, onboarding, packaging, email, channel) and exclusion lists (refactors, dependency bumps, tests, infra, CI, internal tooling). It states cardinality ('One change per call — never batch'), and gives a decision rule for ambiguity ('If unsure, ask the user once; never log speculatively'). This covers when and when-not to use the tool, though it doesn't explicitly compare against check_changes.

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

Deploy Server

Other Tools