cmd_instinct_import

cmd_instinct_import is a skill for Claude Code from majiang213/OpenClaw-MAS. It costs 22 tokens per session (718 once invoked), scanned A, original, MIT.

A command that reads memory sections from a Markdown file and merges new ones into the workspace's MEMORY.md. It can also preview changes before writing them.

In plain words
What is it for?
Use it to import team memory, restore notes from a backup, or preview an import with a dry run.
Why use it?
It helps bring shared or previously exported agent knowledge into a workspace while skipping duplicate sections.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: built for openclaw.

Good fit Use it to import team memory, restore notes from a backup, or preview an import with a dry run.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/majiang213/openclaw-mas/cmd_instinct_import
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add majiang213/OpenClaw-MAS --skill cmd_instinct_import
Clone the repo
git clone --depth 1 https://github.com/majiang213/OpenClaw-MAS

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cmd_instinct_import

README.md
[![agentmods](https://agentmods.dev/badge/skills/majiang213/openclaw-mas/cmd_instinct_import.svg)](https://agentmods.dev/skills/majiang213/openclaw-mas/cmd_instinct_import)
Your own site
<a href="https://agentmods.dev/skills/majiang213/openclaw-mas/cmd_instinct_import"><img src="https://agentmods.dev/badge/skills/majiang213/openclaw-mas/cmd_instinct_import.svg" alt="Measured on agentmods" height="20"></a>
Per session 22 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 718 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00022 $0.00718
Opus 5 $0.00011 $0.00359
Sonnet 5 $0.00004 $0.00144
Haiku 4.5 $0.00002 $0.00072

Measured 4d ago against content hash fbc702cf01aa, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

cmd_instinct_import scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s "<url>"
skills/cmd_instinct_import/SKILL.md · 99 lines

How it starts

The opening of the file, as written. The whole thing — 99 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Project Path

The first argument is the project path. Before doing anything else:

  1. Extract the project path from the first argument
  2. Verify the path exists
  3. Work within that directory for all file operations and shell commands

Memory Import

Imports memory entries from a markdown file (produced by /skill cmd_instinct_export or written manually) into the workspace MEMORY.md. Duplicate sections are detected and skipped. New sections are appended.

Usage

/skill cmd_instinct_import <project-path> <file-path>
/skill cmd_instinct_import <project-path> https://example.com/memory.md
/skill cmd_instinct_import <project-path> team-memory.md --dry-run
/skill cmd_instinct_import <project-path> team-memory.md --force

Flags

  • --dry-run — show what would be added without writing anything
  • --force — skip the confirmation prompt

What to Do

  1. Read the import source:

    • If the second argument starts with http:// or https://, fetch it:
      curl -s "<url>"
      
    • Otherwise read the file directly. If the source cannot be read, report the error and stop.
  2. Parse import sections: extract all ##-level headings and their content blocks. Skip export header lines (# Memory Export, # Exported:, # Source:, # Sections:, and the --- separator).

  3. Read the existing ~/.openclaw/workspace-main/MEMORY.md. Extract all existing ##-level heading names for deduplication.

  4. Classify each imported section:

    • New: heading name does not exist in current MEMORY.md (case-insensitive match)
    • Duplicate: heading name already exists — will be skipped
  5. Report the analysis:

    Import Analysis: <source>
    ================================
    
    Found <N> sections in import file.
    
    New sections (<count>):
      + <heading name>
      + <heading name>
    
    Duplicate sections (<count>, will be skipped):
      = <heading name>
    
  6. If --dry-run is set, stop here.

  7. If there are no new sections, report "Nothing to import — all sections already exist." Stop.

Read the full file on GitHub · 99 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 99 lines · 22 tokens per session scan A fbc702cf01aa

Subscribe to this mod's changes

cmd_instinct_import is a skill published in the GitHub repository majiang213/OpenClaw-MAS (5 stars, last pushed 5mo ago), licensed MIT. It adds 22 tokens to every session and 718 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

save-md

Saves a named source to Markdown with provenance and faithful extraction through direct export endpoints. Use when asked to "save this article", "get the markdown", "transcribe this", or "keep this source". A URL supplied as task context alone does not trigger conversion; a chat summary stays in chat.

mblode/agent-skills · 64 tokens

morph-ppt

Use this skill when the user wants a .pptx with smooth cross-slide animation — PowerPoint Morph transitions, Keynote-style continuous motion, shapes that grow / move / rotate as the slide advances. Trigger on: 'morph', 'morph transition', 'smooth transition', 'continuous animation across slides', 'Keynote-style…

iOfficeAI/OfficeCLI · 169 tokens

officecli-academic-paper

Use this skill to build academic-style .docx output: journal / conference / thesis chapters carrying formal citation style (APA, Chicago, IEEE, MLA), numbered equations, figure & table cross-references, footnotes/endnotes, bibliography, or multi-column journal layout. Trigger on: 'research paper', 'journal paper'…

iOfficeAI/OfficeCLI · 141 tokens

officecli

Create, analyze, proofread, and modify Office documents (.docx, .xlsx, .pptx) using the officecli CLI tool. Use when the user wants to create, inspect, check formatting, find issues, add charts, or modify Office documents.

iOfficeAI/OfficeCLI · 56 tokens

data-sync

Sync and archive data from messaging platforms (WhatsApp, Discord, Slack, Twitter/X, Google) into Moltis memory as daily digest summaries. Orchestrates crawl tools and writes structured markdown to the memory system.

moltis-org/moltis · 46 tokens

apple-notes

Manage Apple Notes via the memo CLI on macOS (create, view, search, edit).

moltis-org/moltis · 23 tokens