store_skill
Store a reusable skill runbook for AI agents with trigger patterns, instructions, and verification steps to index and surface across sessions.
Instructions
Store an agent-readable skill runbook with trigger conditions, instruction content, and verification steps. Side effect: persists a new skill entry and indexes it. Use when you identify a reusable procedure worth surfacing across sessions. NOTE: RecallNest does NOT execute skills — implementation is a runbook agents read as context, not a script we run. (v2.5 收缩,2026-05-27)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Unique skill identifier, e.g. 'deploy_production' or 'run_migrations' | |
| description | Yes | Natural language description of what the skill does (used for semantic retrieval matching) | |
| triggerPattern | Yes | Natural language pattern describing when to suggest this skill, e.g. 'user asks to deploy to production' | |
| implementationType | Yes | Skill runbook type. Currently only 'instruction_sequence' is supported — RecallNest stores runbooks for agents to read, does not execute them. (v2.5 schema 收缩,2026-05-27) | |
| implementation | Yes | Agent-readable runbook content: markdown steps, natural language workflow, or structured procedure. RecallNest does NOT execute this — agents read it as context to follow. | |
| inputSchema | No | JSON Schema defining the skill's input parameters, e.g. {"env": {"type": "string"}} | |
| verification | No | Steps to verify the skill executed correctly, e.g. 'check deployment URL returns 200' | |
| scope | Yes | Scope to store the skill under, e.g. 'project:recallnest' | |
| source | No | How this skill was captured: 'manual' by user, 'agent' by AI, or 'api' programmatically | agent |
| tags | No | Optional categorization tags, e.g. ['deployment', 'production'] |