9.6k★neutron-agent-memory – OpenClaw Skill
neutron-agent-memory is an OpenClaw Skills integration for ai ml workflows. Store and retrieve agent memory using Neutron API. Use for saving information with semantic search, and persisting agent context between sessions.
Skill Snapshot
| name | neutron-agent-memory |
| description | Store and retrieve agent memory using Neutron API. Use for saving information with semantic search, and persisting agent context between sessions. OpenClaw Skills integration. |
| owner | naeemmaliki036 |
| repository | naeemmaliki036/neutron-agent-memory |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @naeemmaliki036/neutron-agent-memory |
| last updated | Feb 7, 2026 |
Maintainer

name: neutron-agent-memory description: Store and retrieve agent memory using Neutron API. Use for saving information with semantic search, and persisting agent context between sessions. user-invocable: true metadata: {"openclaw": {"emoji": "🧠", "requires": {"env": ["NEUTRON_API_KEY", "NEUTRON_APP_ID"]}, "primaryEnv": "NEUTRON_API_KEY"}}
Overview
Neutron Agent Memory provides persistent memory storage with semantic search. Use this to:
- Save information and search it semantically
- Persist agent context between sessions
- Organize content into bundles
Configuration
Required environment variables:
NEUTRON_API_KEY- API authentication keyNEUTRON_APP_ID- Application ID (e.g.,5925f30c-135c-4e10-b275-edf0936ef4be)NEUTRON_EXTERNAL_USER_ID- User identifier (default:1)
API Base URL
https://api-development.myneutron.ai
Authentication
All requests require:
- Header:
Authorization: Bearer $NEUTRON_API_KEY - Query params:
appIdandexternalUserId
Seeds (Memory Storage & Search)
Save Text Content
curl -X POST "https://api-development.myneutron.ai/seeds?appId=$NEUTRON_APP_ID&externalUserId=$NEUTRON_EXTERNAL_USER_ID" \
-H "Authorization: Bearer $NEUTRON_API_KEY" \
-F 'text=["Your content to save"]' \
-F 'textTypes=["text"]' \
-F 'textSources=["mcp"]' \
-F 'textTitles=["Title of content"]'
Text types: text, markdown, json, csv, claude_chat, gpt_chat, email
Sources: upload, mcp, chrome_extension, gmail, gdrive
Semantic Search
curl -X POST "https://api-development.myneutron.ai/seeds/query?appId=$NEUTRON_APP_ID&externalUserId=$NEUTRON_EXTERNAL_USER_ID" \
-H "Authorization: Bearer $NEUTRON_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "natural language search", "limit": 10, "threshold": 0.5}'
Request body:
query(required): Natural language search querylimit(optional): Max results 1-100, default 30threshold(optional): Similarity threshold 0-1, default 0.5seedIds(optional): Limit to specific seeds
Response: Array of results with seedId, content, similarity score (0-1)
Agent Contexts (Session Persistence)
Create Context
curl -X POST "https://api-development.myneutron.ai/agent-contexts?appId=$NEUTRON_APP_ID&externalUserId=$NEUTRON_EXTERNAL_USER_ID" \
-H "Authorization: Bearer $NEUTRON_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"agentId": "my-agent",
"memoryType": "episodic",
"data": {"key": "value"},
"metadata": {"tags": ["tag1"]}
}'
Memory types:
episodic- Conversation history, decisions, actionssemantic- Domain knowledge, user preferencesprocedural- System prompts, tool definitionsworking- Current task state, variables
List Contexts
curl -X GET "https://api-development.myneutron.ai/agent-contexts?appId=$NEUTRON_APP_ID&externalUserId=$NEUTRON_EXTERNAL_USER_ID&agentId=my-agent" \
-H "Authorization: Bearer $NEUTRON_API_KEY"
Get Context by ID
curl -X GET "https://api-development.myneutron.ai/agent-contexts/{id}?appId=$NEUTRON_APP_ID&externalUserId=$NEUTRON_EXTERNAL_USER_ID" \
-H "Authorization: Bearer $NEUTRON_API_KEY"
Usage Guidelines
- Seeds for long-term knowledge: documents, notes, reference material
- Agent Contexts for session state: conversation history, task progress
- Search uses semantic similarity, not keyword matching
- Processing takes 5-30 seconds after creating seeds
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
Configuration
Required environment variables: - `NEUTRON_API_KEY` - API authentication key - `NEUTRON_APP_ID` - Application ID (e.g., `5925f30c-135c-4e10-b275-edf0936ef4be`) - `NEUTRON_EXTERNAL_USER_ID` - User identifier (default: `1`)
FAQ
How do I install neutron-agent-memory?
Run openclaw add @naeemmaliki036/neutron-agent-memory in your terminal. This installs neutron-agent-memory into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/naeemmaliki036/neutron-agent-memory. Review commits and README documentation before installing.
