Agent Skill File
BaseLayer provides a canonical skill file that teaches AI agents how to use your knowledge graph properly. Point your agent framework at this URL:
What it teaches
The skill file focuses on usage patterns, not setup:
- Ask-first workflow - Search before asking, write back learnings
- Tool usage patterns - When to use ask_question vs record_memory vs vault_fact
- Best practices - Entity quality, avoiding duplication, relationship naming
The file is concise (~140 lines) and assumes MCP connection is already working. It contains zero setup instructions — if an agent is reading it, they’re already connected. Pure usage guidance only.
Core principle: Ask first, guess second
The skill file teaches agents to search your memory before asking you questions:
Each ask_question result is a synthesized answer. It’s cheap to search often and expensive to miss context.
Using with agent frameworks
OpenClaw
OpenClaw agents can reference the skill file directly from their config:
LangChain / LangGraph
Fetch the skill content and include it in your system prompt:
CrewAI / AutoGen
Add BaseLayer tools with the skill content as guidance:
Setup is separate
The skill file contains zero connection instructions. If an agent is reading it, the MCP connection is already working. Setup info lives in human-readable docs only.
What about llms.txt?
SKILL.md is for agents (usage patterns). llms.txt is for discovery (architecture, all integrations, connection endpoints).
- Agent learning BaseLayer? → SKILL.md
- Understanding BaseLayer architecture? → llms.txt
Keeping it updated
The skill file at baselayer.id/SKILL.md is always the latest version. If you’ve copied it into your agent config, check back periodically for updates — we improve the guidance as we learn what works.