
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
@astramindapp/openclaw-mind
Advanced tools
MIND personal knowledge graph for OpenClaw — 27 tools (171 actions), full canonical parity with @astramindapp/mcp-server v0.19. Auto-recall + auto-capture lifecycle hooks. Memory, life, CRM, knowledge graph, MINDsense emotional intelligence, agents, ticke
MIND personal knowledge graph for OpenClaw. 24 tools, 147 actions, 4 skills, full lifecycle hooks. The most complete memory plugin for AI agents — full canonical parity with @astramindapp/mcp-server.
Other memory plugins store text. MIND understands it.
openclaw plugins install @astramindapp/openclaw-mind
| Feature | MIND | Mem0 | Anthropic Memory MCP |
|---|---|---|---|
| Tools | 24 | 8 | 8 |
| Knowledge graph | ✅ true KG | ❌ vectors only | ❌ JSON |
| 50+ AI models | ✅ | ❌ provider-agnostic but no UI | ❌ Claude only |
| Emotional intelligence | ✅ MINDsense (patent-pending) | ❌ | ❌ |
| Auto-recall before turn | ✅ | ✅ | ❌ |
| Auto-capture after turn | ✅ | ✅ | ❌ |
| Graph traversal queries | ✅ | ❌ | ❌ |
| Life management | ✅ | ❌ | ❌ |
| CRM | ✅ | ❌ | ❌ |
| Mobile app | ✅ | ❌ | ❌ |
| Free tier | ✅ 50 credits/mo | ✅ 10K memories/mo | ✅ |
openclaw plugins install @astramindapp/openclaw-mind
Sign up at m-i-n-d.ai → Settings → Developer → Create API Key.
The key starts with mind_.
openclaw mind init --api-key mind_your_key_here
Or set the env var:
export MIND_API_KEY=mind_your_key_here
openclaw mind status
You should see "Connected to MIND" with your account info.
openclaw mind import
This reads ~/.openclaw/workspace/ and ingests SOUL.md, IDENTITY.md, USER.md, MEMORY.md, and the daily memory directory into your MIND knowledge graph — with automatic entity extraction.
| Tool | Actions | What It Does |
|---|---|---|
mind_query | 1 | Semantic + graph search (5 modes: hybrid / mix / global / local / naive) |
mind_remember | 5 | Store / search / get / list / delete — documents, entries, thoughts |
mind_context | 1 | Load persistent identity, preferences, rules, priorities, recent activity |
mind_folders | 6 | Organize documents into folders — list, create, rename, move, delete, file |
mind_save_typed / mind_list_templates / mind_get_template / mind_bootstrap_templates | 4 | The 16 Front Layer typed-document templates (SOUL, IDENTITY, BELIEFS, USER, AGENTS, TOOLS, SENSES, SKILLS, BEHAVIOR, LESSON, DECISION, POLICY, …) |
mind_life | 13 | Goals, projects, tasks + full calendar management + productivity stats |
mind_tasks | 9 | Site-wide tasks — assignable work items on projects, contacts, or agents, plus completion reports |
mind_crm | 7 | Contacts, pipeline stages, activity logging, interaction history |
mind_graph | 3 | Graph stats, diagnostics, entity labels |
mind_sense | 7 | MINDsense emotional intelligence — state, signals, timeline, KG weights, spikes |
mind_profile | 9 | Profile, custom system prompts, LLM model selection |
mind_insights | 7 | Autonomous Learning Engine insights, weekly summaries, feedback |
mind_research | 3 | Launch autonomous deep research jobs |
mind_train | 7 | Self-training sessions + save chats to KG |
mind_social | 14 | Thoughts (posts), social feed, communities, likes, comments |
mind_notify | 4 | Notifications, mark read, stats |
mind_automate | 6 | Scheduled automations, event triggers, execution history |
mind_accounts | 6 | Multi-MIND ownership — list/create/delete MINDs, manage owners/viewers, invitations |
mind_admin | 11 | Admin-only. User provisioning + the Featured Minds Portal: full CRUD over the public marketplace (get_full / update / update_owner_profile / reorder / delete), tier/credit management |
mind_agents | 21 | Admin-only. Agent Command Center — list/search/get/create/update/delete agents, heartbeats, probes, activity log, fleet seeding, invoice linking, ownership transfer + sharing |
mind_tickets | 7 | Admin-only. Agent ticket queue — file, view, answer (comment), triage, resolve, delete client feedback/bugs/ideas on any agent |
mind_admin drives https://m-i-n-d.ai/#/admin/featuredmindsportal end-to-end. The catalog (featured_minds collection) and the linked owner profile (user_profiles) edited together so changes hit https://m-i-n-d.ai/m/{username} immediately. Requires an admin-scoped MIND API key.
| Action | Description |
|---|---|
create_featured_mind | Promote a user's MIND into the featured catalog |
list_featured_minds | List every featured mind with mind_id, display_order, featured, is_public |
get_featured_mind_full | Bundled view: featured_mind + linked user_profile + available_models catalog (what the portal side sheet loads) |
update_featured_mind | Catalog fields: title / subtitle / description / tags / featured / display_order / is_public / avatar_url / banner_url / price |
update_featured_mind_owner_profile | Write-through to user_profiles: preferred_llm_model, public_mind_prompt, chat_temperature, chat_reasoning_effort, public_mind_enabled/tagline/greeting/persona, bio, avatar_url, banner_url. Pass null on preferred_llm_model to clear and use platform default. |
reorder_featured_minds | Bulk display_order via ordered_mind_ids list — index becomes order |
delete_featured_mind | Remove from catalog. User's underlying MIND is preserved. |
Example:
// Pick a model + prompt for a featured MIND from inside an OpenClaw agent
mind_admin({ action: "list_featured_minds" })
mind_admin({
action: "update_featured_mind_owner_profile",
mind_id: "<id>",
preferred_llm_model: "anthropic/claude-sonnet-4.6",
chat_temperature: 0.7,
public_mind_prompt: "Answer in three short sentences."
})
// → /m/{username} now uses the new model + prompt + temperature
| Skill | What It Does |
|---|---|
memory-triage | 5-gate importance scoring before storing (FUTURE UTILITY, NOVELTY, FACTUAL, SAFE, EMOTIONAL SALIENCE) |
memory-dream | Periodic KG consolidation — merge duplicates, remove noise, enforce TTL |
mind-emotional-encoding | MINDsense valence/arousal scoring on every captured fact |
mind-graph-recall | Graph traversal recall — find everything connected to an entity, not just text similar to it |
All configuration is optional. Defaults are sensible.
# ~/.openclaw/plugins/openclaw-mind.yaml
apiKey: ${MIND_API_KEY} # required (or use env var)
baseUrl: https://www.m-i-n-d.ai # override only for self-hosting
autoCapture: true # extract facts after each turn
autoRecall: true # inject memories before each turn
topK: 10 # memories to inject per turn
searchThreshold: 0.5 # similarity threshold (0-1)
queryMode: hybrid # hybrid | mix | global | local | naive
enableMindsense: true # MINDsense emotional weighting
enableLifeIntegration: true # allow agent to create life items
enableCrmLogging: true # allow agent to log contacts
openclaw mind init [--api-key KEY] [--email EMAIL]
openclaw mind status
openclaw mind import [--workspace PATH]
openclaw mind search "your query"
MIT licensed. Source at github.com/theastraway/openclaw-mind.
Built by Astra AI, Inc. — makers of MIND, the world's first personal knowledge graph AI platform.
Patents pending.
FAQs
MIND personal knowledge graph for OpenClaw — 27 tools (171 actions), full canonical parity with @astramindapp/mcp-server v0.19. Auto-recall + auto-capture lifecycle hooks. Memory, life, CRM, knowledge graph, MINDsense emotional intelligence, agents, ticke
The npm package @astramindapp/openclaw-mind receives a total of 28 weekly downloads. As such, @astramindapp/openclaw-mind popularity was classified as not popular.
We found that @astramindapp/openclaw-mind demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.