What problem does it solve? AI agents writing to a memory MCP server frequently invent fields, nest arguments incorrectly, violate strict enums, or exceed character caps, causing repeated validation failures. This Skill auto-loads the exact call shape and rules before any memory write so writes succeed on the first attempt. ## Core Features & Use Cases - Call-shape enforcement: Documents the wrapper-trio dispatch pattern (execute_forgetful_tool with sibling tool_name and arguments) and the most common nesting failure. - Field, enum, and cap reference: Lists required fields per primitive (create_memory, create_document, create_entity, create_project, create_code_artifact), strict case-sensitive enums, and hard character caps with split-don't-trim guidance. - Asymmetric linking table and error playbook: Maps which link operations exist, which tools do not exist, and provides an error-to-fix lookup table for validation failures. - Use Case: Before calling create_memory, the agent loads this Skill, supplies all six required fields with importance as an integer, keeps content under 2000 characters, and sets project_ids so the memory is visible to project-scoped queries. ## Quick Start Load the memory schema before writing any memory and create a memory with title, content, context, keywords, tags, and integer importance using the documented call shape.