Skip to main content
Glama

mem_pin

Prevent critical skills from decaying or being archived by pinning them, or unpin when no longer needed. Use for rare but vital rules like deploy gates or safety constraints.

Instructions

Pin a skill so it never decays and is never archived, or unpin it. For a rule that matters precisely because it is rarely needed — a deploy gate, a safety constraint — where rarity is the point and decay would read it as irrelevance.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYesSkill slug to pin.
pinnedNotrue to pin (default), false to unpin.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.10.5

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and largely delivers: it discloses the core behavioral effect (protection from decay and archival) and reversibility (unpin). It does not detail secondary effects on retrieval or permissions, but the primary state-changing behavior 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.

Conciseness4/5

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

Two sentences: the first states the action and effect, the second provides a rationale with concrete examples. Each sentence earns its place; the rationale may be slightly stylized, but it remains compact and informative.

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

Completeness4/5

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

For a simple 2-parameter tool with no output schema, the description covers the essential state change (pin/unpin), the effect (no decay/archive), and a plausible use case. Minor omissions (e.g., exact interaction with memory retrieval) are acceptable given complexity.

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 description coverage is 100%, with both parameters already documented ('slug' and 'pinned' including default behavior). The tool description adds no additional parameter-level meaning beyond the schema, so the baseline 3 applies.

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?

Clearly states the verb ('pin'/'unpin'), the resource ('skill'), and the effect (never decays, never archived). The purpose is distinct from all sibling tools, which perform search, retrieval, writing, updating, learning, and reinforcement.

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?

Provides clear contextual guidance: it explains when pinning is appropriate ('a deploy gate, a safety constraint') and why it matters for rarely-needed rules. It does not explicitly name alternatives or offer when-not-to-use exclusions, but the context is sufficient for an agent to decide.

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