Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计提醒

ichiro-mind一郎心

Agent Skill

ichiro-mind 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,243

周安装

440

GitHub Stars

1

下载量

3,590
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ichiro-mind(一郎心)
来源仓库:https://github.com/hudul/ichiro-mind
安装命令:
openclaw skills install ichiro-mind
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ichiro-mind

简介

四层神经图记忆架构,融合向量搜索与经验学习实现高效知识检索。

  • 适用于需要长期记忆积累与快速联想的知识型 Agent 场景。
  • 通过 openclaw skills install ichiro-mind 安装,支持 HOT/WARM/COLD/ARCHIVE 分级存储。
  • 占用本地存储空间较大,建议 SSD 并预留 2GB+ 容量。
  • 检索延迟低于 200ms,适合实时问答系统后端支撑。

SKILL.md

name
ichiro-mind
version
1.0.0
description
Ichiro-Mind: The ultimate unified memory system for AI agents. 4-layer architecture (HOT→WARM→COLD→ARCHIVE) with neural graph, vector search, experience learning, and automatic hygiene. Built for persistent, intelligent memory.
author
兵步一郎 & OpenClaw Community
keywords
[memory, ai-agent, long-term-memory, neural-graph, vector-search, experience-learning, ichiro, unified-memory, persistent-context, smart-recall]
metadata
openclaw
emoji
🧠
requires
env
plugins

🧠 Ichiro-Mind

*"The mind of Ichiro — Unifying all memory layers into one intelligent system."*

Ichiro-Mind is the ultimate unified memory system for AI agents, combining the best of 5 proven memory approaches into one cohesive architecture. Named after its creator's vision for persistent, intelligent memory.

🏗️ Architecture Overview

┌─────────────────────────────────────────────────────────────────┐
│                    🧠 ICHIRO-MIND                               │
│              "The Mind That Never Forgets"                      │
├─────────────────────────────────────────────────────────────────┤
│                                                                 │
│  ⚡ HOT LAYER (Working RAM)        🔥 WARM LAYER (Neural Net)   │
│  ┌─────────────────────┐          ┌─────────────────────┐       │
│  │ SESSION-STATE.md    │◄────────►│ Associative Memory  │       │
│  │ • Real-time state   │  Sync    │ • Spreading recall  │       │
│  │ • WAL protocol      │          │ • Causal chains     │       │
│  │ • Survives compact  │          │ • Contradiction det │       │
│  └─────────────────────┘          └─────────────────────┘       │
│           │                                │                    │
│           ▼                                ▼                    │
│  💾 COLD LAYER (Vectors)         📚 ARCHIVE LAYER (Long-term)   │
│  ┌─────────────────────┐          ┌─────────────────────┐       │
│  │ LanceDB Store       │          │ MEMORY.md + Daily   │       │
│  │ • Semantic search   │          │ • Git-Notes Graph   │       │
│  │ • Auto-extraction   │          │ • Cloud backup      │       │
│  │ • Importance score  │          │ • Human-readable    │       │
│  └─────────────────────┘          └─────────────────────┘       │
│                                                                 │
│  🧹 HYGIENE ENGINE              🎓 LEARNING ENGINE              │
│  • Auto-cleanup                 • Decision tracking             │
│  • Deduplication                • Error learning                │
│  • Token optimization           • Entity evolution              │
└─────────────────────────────────────────────────────────────────┘

✨ Core Features

1. Intelligent Memory Routing

Automatically selects the best retrieval method based on query type:

Query TypeMethodSpeed
Recent contextHOT (SESSION-STATE)<10ms
Facts & preferencesCOLD (Vector search)~50ms
Causal relationshipsWARM (Neural graph)~100ms
Long-term decisionsARCHIVE (Git-Notes)~200ms

2. Automatic Memory Lifecycle

Capture → Extract → Process → Store → Recall → Cleanup
   │          │         │        │       │        │
Input    Mem0/Auto   Importance  4-Layer  Smart   Periodic
Capture   Extraction   Scoring   Storage  Route   Hygiene

3. Neural Graph with Spreading Activation

  • Not keyword search — Finds conceptually related memories through graph traversal
  • 20 synapse types — Temporal, causal, semantic, emotional connections
  • Hebbian learning — Memories strengthen with use
  • Contradiction detection — Auto-detects conflicting information

4. Experience Learning

Decision → Action → Outcome → Lesson
    │         │        │         │
   Store    Track    Record    Learn
  • Tracks decisions and their outcomes
  • Learns from errors
  • Suggests based on past patterns

5. Smart Hygiene

  • Auto-cleans junk memories
  • Deduplicates similar entries
  • Optimizes token usage
  • Monthly maintenance mode

🚀 Quick Start

Installation

clawhub install ichiro-mind

Setup

# Initialize Ichiro-Mind
ichiro-mind init

# Configure MCP
ichiro-mind setup-mcp

Basic Usage

from ichiro_mind import IchiroMind

# Initialize
mind = IchiroMind()

# Store memory (auto-routes to appropriate layer)
mind.remember(
    content="User prefers dark mode",
    category="preference",
    importance=0.9
)

# Recall with smart routing
result = mind.recall("What mode does user prefer?")

# Learn from experience
mind.learn(
    decision="Used SQLite for dev",
    outcome="slow_with_big_data",
    lesson="Use PostgreSQL for datasets >1GB"
)

📝 Memory Layers in Detail

HOT Layer — SESSION-STATE.md

Real-time working memory using Write-Ahead Log protocol.

# SESSION-STATE.md — Ichiro-Mind HOT Layer

## Current Task
Building unified memory system

## Active Context
- User: 兵步一郎
- Project: Ichiro-Mind
- Stack: Python + LanceDB + Neural Graph

## Key Decisions
- [x] Use 4-layer architecture
- [ ] Implement MCP interface

## Pending Actions
- [ ] Write SKILL.md
- [ ] Create Python core

WAL Protocol: Write BEFORE responding, not after.

WARM Layer — Neural Graph

Associative memory with spreading activation.

# Store with relationships
mind.remember(
    content="Use PostgreSQL for production",
    type="decision",
    tags=["database", "infrastructure"],
    relations=[
        {"type": "CAUSED_BY", "target": "performance_issues"},
        {"type": "LEADS_TO", "target": "better_scalability"}
    ]
)

# Deep recall
memories = mind.recall_deep(
    query="database decisions",
    depth=2  # Follow causal chains
)

COLD Layer — Vector Store

Semantic search with LanceDB.

# Auto-captured from conversation
mind.auto_capture(text="User likes minimal UI")

# Semantic search
results = mind.search("user interface preferences")

ARCHIVE Layer — Persistent Storage

Human-readable long-term memory.

workspace/
├── MEMORY.md              # Curated long-term
└── memory/
    ├── 2026-03-07.md      # Daily log
    ├── decisions/         # Structured decisions
    ├── entities/          # People, projects, concepts
    └── lessons/           # Learned experiences

🛠️ Advanced Features

Memory Hygiene

# Audit memory
ichiro-mind audit

# Clean junk
ichiro-mind cleanup --dry-run
ichiro-mind cleanup --confirm

# Optimize tokens
ichiro-mind optimize

Experience Replay

# Before making similar decision
similar = mind.get_lessons(context="database_choice")
# Returns past decisions and outcomes

Entity Tracking

# Track evolving entities
mind.track_entity(
    name="兵步一郎",
    type="person",
    attributes={
        "role": "creator",
        "interests": ["AI", "automation"],
        "preferences": {"ui": "minimal", "docs": "bilingual"}
    }
)

# Update entity
mind.update_entity("兵步一郎", {"last_contact": "2026-03-07"})

🔌 MCP Integration

Add to ~/.openclaw/mcp.json:

{
  "mcpServers": {
    "ichiro-mind": {
      "command": "python3",
      "args": ["-m", "ichiro_mind.mcp"],
      "env": {
        "ICHIRO_MIND_BRAIN": "default"
      }
    }
  }
}

📊 Performance

OperationLatencyThroughput
HOT recall<10ms10K ops/s
WARM recall~100ms1K ops/s
COLD search~50ms500 ops/s
ARCHIVE read~200ms100 ops/s
Store memory~20ms5K ops/s

🎯 Use Cases

  1. Long-running projects — Never lose context across sessions
  2. Complex decisions — Track decision trees and outcomes
  3. User relationships — Remember preferences, history, quirks
  4. Error prevention — Learn from mistakes, suggest alternatives
  5. Knowledge accumulation — Build up domain expertise over time

🧠 Philosophy

*"Memory is not storage — it's intelligence."*

Ichiro-Mind treats memory as a first-class citizen:

  • Memories have relationships
  • Memories evolve over time
  • Memories compete for attention
  • Memories decay when unused
  • Contradictions are resolved

📚 Related Skills

  • elite-longterm-memory — Foundation layer architecture
  • neural-memory — Associative graph engine
  • memory-hygiene — Cleanup and optimization
  • memory-setup — Configuration and structure

🙏 Credits

Built by 兵步一郎 (Ichiro) with love for persistent, intelligent AI memory.

Inspired by the best memory systems in the OpenClaw ecosystem.

License

MIT

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

79.1%
按下载量换算2,840

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills