← 返回 Skills 市场
mdx2025

BrainX V5 — The First Brain for OpenClaw

作者 Mdx2025 · GitHub ↗ · v0.3.5 · MIT-0
cross-platform ⚠ suspicious
659
总下载
1
收藏
2
当前安装
24
版本数
在 OpenClaw 中安装
/install brainx
功能描述
Vector memory engine with PostgreSQL + pgvector + OpenAI embeddings. Stores, searches, and injects contextual memories into LLM prompts. Includes auto-inject...
使用说明 (SKILL.md)

BrainX V5 — The First Brain for OpenClaw

Persistent memory system using vector embeddings for contextual retrieval in AI agents.

37 Features

# Feature Description
1 Production Active on 32 agent profiles with centralized shared memory (2,400+ memories)
2 🧠 Auto-Learning Learns on its own from every conversation without human intervention
3 💾 Persistent Memory Remembers across sessions — PostgreSQL + pgvector
4 🤝 Shared Memory All agents share the same knowledge pool
5 💉 Automatic Briefing Personalized context injection at each agent startup
6 🔎 Semantic Search Searches by meaning, not exact keywords
7 🏷️ Intelligent Classification Auto-typed: facts, decisions, learnings, gotchas, notes
8 📊 Usage-Based Prioritization Hot/warm/cold tiers — automatic promote/degrade based on access
9 🤝 Cross-Agent Learning Propagates important gotchas and learnings across all agents
10 🔄 Anti-Duplicates Semantic deduplication by cosine similarity with intelligent merge
11 Anti-Contradictions Detects contradictory memories and supersedes the obsolete one
12 📋 Session Indexing Searches past conversations (30-day retention)
13 🔒 PII Scrubbing Automatic redaction of sensitive data before storage
14 🔮 Pattern Detection Detects recurring patterns and promotes them automatically
15 🛡️ Disaster Recovery Full backup/restore (DB + configs + hooks + workspaces)
16 Quality Scoring Evaluates memory quality and promotes only what deserves to persist
17 ⚙️ Fact Extraction Regex + LLM pipelines capture both operational facts and nuanced learnings
18 📦 Context Packs Weekly project packs and bootstrap topic files for fast situational awareness
19 📈 Telemetry Query logs, injection metrics, and health monitoring built in
20 🧵 Supersede Chains Old memories can be replaced cleanly without losing history
21 🌀 Memory Distillation Consolidates raw logs into higher-signal memories over time
22 🛡️ Pre-Action Advisory Queries past mistakes before high-risk tool execution
23 👤 Agent Profiles Per-agent hook injection: boosts/filters memories by agent role
24 🔀 Cross-Agent Injection Slots Hook reserves 30% of context slots for other agents' memories
25 📊 Metrics Dashboard CLI dashboard with top patterns, memory stats, and usage trends
26 🔧 Doctor & Auto-Fix Schema integrity check + automatic repair of detected issues
27 👍 Memory Feedback Mark memories as useful/useless/incorrect to refine quality
28 🗺️ Trajectory Recording Records problem→solution paths for future reference
29 📝 Learning Details Extended metadata extraction for learnings and gotchas
30 🔄 Lifecycle Management Automatic promotion/degradation of memories by age and usage
31 📥 Workspace Import Imports existing MEMORY.md files from all workspaces into the brain
32 🧪 Eval Dataset Generation Generates evaluation datasets from real memories for quality testing
33 🏗️ Session Snapshots Captures full agent state at session close for analysis
34 🧹 Low-Signal Cleanup Automatic cleanup of low-value, outdated, or redundant memories
35 🔃 Memory Reclassification Reclassifies memories with correct types and categories post-hoc
36 🔄 Auto-Promotion Pipeline Detects high-recurrence patterns and promotes them as rules in workspace files automatically
37 📊 15-Step Daily Pipeline Consolidated daily pipeline: bootstrap, lifecycle, distiller, harvester, bridge, auto-distiller, consolidation, cross-agent, contradiction, md-harvester, error-harvester, auto-promoter, promotion-applier, memory-enforcer, audit

When to Use

USE when:

  • An agent needs to "remember" information from previous sessions
  • You want to give additional context to an LLM about past actions
  • You need semantic search by content
  • You want to store important decisions with metadata

DON'T USE when:

  • Ephemeral information that doesn't need persistence
  • Structured tabular data (use a regular DB)
  • Simple cache (use Redis or in-memory)

Auto-Injection (Hook)

BrainX V5 includes an OpenClaw hook that automatically injects relevant memories when an agent starts.

Production Validation Status

Real validation completed on 2026-03-18:

  • Global hook enabled in ~/.openclaw/openclaw.json
  • Managed hook synced with ~/.openclaw/skills/brainx-v5/hook/ (handler.js re-synced)
  • Active physical database: brainx_v5
  • agent-profiles.json expanded from 10 to 32 profiles (all agents)
  • Cross-agent injection slots (30%) activated in production
  • 20 null embeddings regenerated + 17 duplicate pairs deduped via brainx fix
  • 2 pending migrations applied
  • Doctor: 18/18 passed, 0 warnings
  • Real bootstrap smoke test passed for 10 agents
  • Expected evidence confirmed:
    • \x3C!-- BRAINX:START --> block written into MEMORY.md
    • Updated: timestamp present
    • Fresh row recorded in brainx_pilot_log

If this validation becomes stale, rerun a bootstrap smoke test before assuming runtime is still healthy.

How it works:

  1. agent:bootstrap event → Hook fires automatically
  2. PostgreSQL query → Fetches hot/warm recent memories
  3. Generates file → Creates BRAINX_CONTEXT.md in the workspace
  4. Agent reads → File is loaded as initial context

Configuration:

In ~/.openclaw/openclaw.json:

{
  "hooks": {
    "internal": {
      "enabled": true,
      "entries": {
        "brainx-auto-inject": {
          "enabled": true,
          "limit": 5,
          "tier": "hot+warm",
          "minImportance": 5
        }
      }
    }
  }
}

Per-agent setup:

Add to AGENTS.md in each workspace:

## Every Session

1. Read `SOUL.md`
2. Read `USER.md`
3. Read `brainx.md`
4. Read `BRAINX_CONTEXT.md` ← Auto-injected context

Available Tools

brainx_add_memory

Saves a memory to the vector brain.

Parameters:

  • content (required) — Memory text
  • type (optional) — Type: note, decision, action, learning (default: note)
  • context (optional) — Namespace/scope
  • tier (optional) — Priority: hot, warm, cold, archive (default: warm)
  • importance (optional) — Importance 1-10 (default: 5)
  • tags (optional) — Comma-separated tags
  • agent (optional) — Name of the agent creating the memory

Example:

brainx add --type decision --content "Use embeddings 3-small to reduce costs" --tier hot --importance 9 --tags config,openai

brainx_search

Searches memories by semantic similarity.

Parameters:

  • query (required) — Search text
  • limit (optional) — Number of results (default: 10)
  • minSimilarity (optional) — Threshold 0-1 (default: 0.3)
  • minImportance (optional) — Filter by importance 0-10
  • tier (optional) — Filter by tier
  • context (optional) — Exact context filter

Example:

brainx search --query "API configuration" --limit 5 --minSimilarity 0.5

Returns: JSON with results.

brainx_inject

Gets memories formatted for direct injection into LLM prompts.

Parameters:

  • query (required) — Search text
  • limit (optional) — Number of results (default: 10)
  • minImportance (optional) — Filter by importance
  • tier (optional) — Tier filter (default: hot+warm)
  • context (optional) — Context filter
  • maxCharsPerItem (optional) — Truncate content (default: 2000)

Example:

brainx inject --query "what decisions were made about openai" --limit 3

Returns: Formatted text ready for injection:

[sim:0.82 imp:9 tier:hot type:decision agent:coder ctx:openclaw]
Use embeddings 3-small to reduce costs...

---

[sim:0.71 imp:8 tier:hot type:decision agent:support ctx:brainx]
Create SKILL.md for OpenClaw integration...

brainx_health

Verifies BrainX is operational.

Parameters: none

Example:

brainx health

Returns: PostgreSQL + pgvector connection status.

Backup and Recovery

Create Backup

./scripts/backup-brainx.sh ~/backups

Creates brainx-v5_backup_YYYYMMDD_HHMMSS.tar.gz containing:

  • Full PostgreSQL database (SQL dump)
  • OpenClaw configuration (hooks, .env)
  • Skill files
  • Workspace documentation

Restore Backup

./scripts/restore-brainx.sh backup.tar.gz --force

Fully restores BrainX V5 including:

  • All memories (with embeddings)
  • Hook configuration
  • Environment variables

Full Documentation

See RESILIENCE.md for:

  • Complete disaster scenarios
  • Migration to new VPS
  • Troubleshooting
  • Automatic backup configuration

Configuration

Environment Variables

# Required
DATABASE_URL=postgresql://user:pass@host:5432/brainx_v5
OPENAI_API_KEY=sk-...

# Optional
OPENAI_EMBEDDING_MODEL=text-embedding-3-small
OPENAI_EMBEDDING_DIMENSIONS=1536
BRAINX_INJECT_DEFAULT_TIER=hot+warm
BRAINX_INJECT_MAX_CHARS_PER_ITEM=2000
BRAINX_INJECT_MAX_LINES_PER_ITEM=80

Database Setup

# Schema is in ~/.openclaw/skills/brainx-v5/sql/
# Requires PostgreSQL with pgvector extension

psql $DATABASE_URL -f ~/.openclaw/skills/brainx-v5/sql/v3-schema.sql

Direct Integration

You can also use the unified wrapper that reads the API key from OpenClaw:

cd ~/.openclaw/skills/brainx-v5
./brainx add --type note --content "test"
./brainx search --query "test"
./brainx inject --query "test"
./brainx health

Compatibility: ./brainx-v5 and ./brainx-v5-cli also work as aliases for the main wrapper.

Advisory System (Pre-Action Check)

BrainX includes an advisory system that queries relevant memories, trajectories, and recurring patterns before executing high-risk tools. Helps agents avoid repeating past mistakes.

High-Risk Tools

The following tools automatically trigger advisory checks: exec, deploy, railway, delete, rm, drop, git push, git force-push, migration, cron, message send, email send.

CLI Usage

# Check for advisories before a tool execution
./brainx-v5 advisory --tool exec --args '{"command":"rm -rf /tmp/old"}' --agent coder --json

# Quick check via helper script
./scripts/advisory-check.sh exec '{"command":"rm -rf /tmp/old"}' coder

Agent Integration (Manual)

Since only agent:bootstrap is supported as a hook event, agents should manually call brainx advisory before high-risk tools:

# In agent SKILL.md or AGENTS.md, add:
# Before exec/deploy/delete/migration, run:
cd ~/.openclaw/skills/brainx-v5 && ./scripts/advisory-check.sh \x3Ctool> '\x3Cargs_json>' \x3Cagent>

The advisory returns relevant memories, similar past problem→solution paths, and recurring patterns with a confidence score. It's informational — never blocking.

Agent-Aware Hook Injection

The agent:bootstrap hook uses agent profiles (hook/agent-profiles.json) to customize memory injection per agent:

  • coder: Boosts gotcha/error/learning memories; filters by infrastructure/code/deploy/github contexts; excludes notes
  • writer: Boosts decision/learning; filters by content/seo/marketing; excludes errors
  • monitor: Boosts gotcha/error; filters by infrastructure/health/monitoring
  • echo: No filtering (default behavior)

Agents not listed in the profiles file get the default unfiltered injection. Edit hook/agent-profiles.json to add new agent profiles.

Cross-Agent Memory Sharing

The hook reserves ~30% of injection slots for cross-agent memories, ensuring each agent sees relevant learnings from other agents. The cross-agent-learning.js script tags high-importance memories for cross-agent visibility without creating duplicates.

Security & Trust

This skill is flagged with "suspicious patterns" by ClawHub's automated scanner. Here's what each pattern does and why it's necessary:

Pattern File Why
child_process.execFile hook/handler.js Invokes the BrainX CLI to query memories during agent bootstrap. No arbitrary command execution.
process.env access lib/db.js, lib/openai-rag.js, lib/cli.js Reads DATABASE_URL and OPENAI_API_KEY to connect to PostgreSQL and generate embeddings. Standard for any database-backed skill.
fetch('https://api.openai.com') lib/openai-rag.js Calls OpenAI Embeddings API to generate vector representations. Single endpoint, no other network calls.
File read/write hook/handler.js Writes BRAINX_CONTEXT.md and updates MEMORY.md in the agent's workspace during bootstrap injection.

No secrets are stored in code. All credentials come from environment variables. No data leaves the system except embedding requests to OpenAI.

Notes

  • Memories are stored with vector embeddings (1536 dimensions)
  • Search uses cosine similarity
  • inject is the most useful tool for giving context to LLMs
  • Tier hot = fast access, cold/archive = long-term storage
  • Memories are persistent in PostgreSQL (independent of OpenClaw)
  • Auto-injection hook fires on every agent:bootstrap

Feature Status (Tables)

✅ All Operational

Table Function Status
brainx_memories Core: stores memories with embeddings ✅ Active (2,400+)
brainx_query_log Tracks search/inject queries ✅ Active
brainx_pilot_log Tracks auto-inject per agent ✅ Active
brainx_context_packs Pre-generated context packages ✅ Active
brainx_patterns Detects recurring errors/issues ✅ Active
brainx_session_snapshots Captures state at session close ✅ Active
brainx_learning_details Extended metadata for learning/gotcha memories ✅ Active
brainx_trajectories Records problem→solution paths ✅ Active

8/8 tables operational. Population scripts implemented 2026-03-06.

Full Feature Inventory (35)

CLI Core (brainx \x3Ccmd>)

# Command Function
1 add Save memory (7 types, 20+ categories, V5 metadata)
2 search Semantic search by cosine similarity
3 inject Formatted memories for LLM prompt injection
4 fact / facts Shortcut to save/list infrastructure facts
5 resolve Mark pattern as resolved/promoted/wont_fix
6 promote-candidates Detect memories eligible for promotion
7 lifecycle-run Degrade/promote memories by age/usage
8 metrics Metrics dashboard and top patterns
9 doctor Full diagnostics (schema, integrity, stats)
10 fix Auto-repair issues detected by doctor
11 feedback Mark memory as useful/useless/incorrect
12 health PostgreSQL + pgvector connection status

Processing Scripts (scripts/)

# Script Function
13 memory-bridge.js Syncs memory between sessions/agents
14 memory-distiller.js Distills sessions into new memories
15 session-harvester.js Harvests info from past sessions
16 session-snapshot.js Captures state at session close
17 pattern-detector.js Detects recurring errors/issues
18 learning-detail-extractor.js Extracts metadata from learnings/gotchas
19 trajectory-recorder.js Records problem→solution paths
20 fact-extractor.js Extracts facts from conversations
21 contradiction-detector.js Detects contradicting memories
22 cross-agent-learning.js Shares learnings between agents
23 quality-scorer.js Scores memory quality
24 context-pack-builder.js Generates pre-built context packages
25 reclassify-memories.js Reclassifies memories with correct types/categories
26 cleanup-low-signal.js Cleans up low-value memories
27 dedup-supersede.js Detects and marks duplicates
28 eval-memory-quality.js Evaluates dataset quality
29 generate-eval-dataset-from-memories.js Generates evaluation dataset
30 memory-feedback.js Per-memory feedback system
31 import-workspace-memory-md.js Imports from workspace MEMORY.md files
32 migrate-v2-to-v3.js Schema migration V2→V3
33 promotion-applier.js Last-mile auto-promotion: distills patterns via LLM and writes rules to workspace files

Hooks and Infrastructure

# Component Function
34 brainx-auto-inject Auto-injection hook at each agent bootstrap
35 backup-brainx.sh Full backup (DB + config + skills)
36 restore-brainx.sh Full restore from backup
37 promotion-applier.js Pipeline step 13: writes promoted patterns to workspace files

V5 Metadata

  • sourceKind — Origin: user_explicit, agent_inference, tool_verified, llm_distilled, etc.
  • sourcePath — Source file/URL
  • confidence — Score 0-1
  • expiresAt — Automatic expiration
  • sensitivity — normal/sensitive/restricted
  • Automatic PII scrubbing (BRAINX_PII_SCRUB_ENABLED)
  • Similarity-based dedup (BRAINX_DEDUPE_SIM_THRESHOLD)
安全使用建议
What to check before installing/activating BrainX V5: - Review the hook and ingestion scripts (hook/handler.js, lib/openai-rag.js, lib/db.js, and cron/harvester scripts). Those are the runtime code that will read workspace/session files and call the embeddings API. - Understand data flow: conversations, session logs, and workspace MEMORY.md files may be read and stored into the Postgres DB, and text is sent to OpenAI's embeddings endpoint using OPENAI_API_KEY. If that data may contain PII or secrets, either disable auto-ingest or enable/validate the PII-scrub config (BRAINX_PII_SCRUB_ENABLED and related settings) and test it in a sandbox. - Keep the BrainX database isolated: use a dedicated Postgres instance and user with least privileges, and do not reuse production DB credentials that grant broader access. - Protect the OPENAI_API_KEY: it will be used to send data to OpenAI; confirm your data-handling policy and consider using an API key with appropriate organization/billing and retention settings. - Inspect BRAINX_ENV / .env usage: the skill can load env files; ensure those files do not contain other unrelated secrets or tokens you don't want the skill to read. - Backup/restore and optional cloud sync steps are operator-run. If you plan to enable automatic backup-to-cloud, verify those scripts to avoid accidental exfiltration. - If you do not want cross-agent sharing or automatic learning, do not enable the managed hook/crons or change config to restrict injection/auto-learning. If you want further assurance, provide specific files (hook/handler.js and lib/openai-rag.js) for a quick targeted review of network calls, data redaction code paths, and any external endpoints beyond OpenAI.
功能分析
Type: OpenClaw Skill Name: brainx Version: 0.3.5 BrainX V5 is a highly sophisticated vector memory and RAG (Retrieval-Augmented Generation) system for OpenClaw agents. It uses PostgreSQL with pgvector and OpenAI embeddings (https://api.openai.com/v1/embeddings) to provide persistent, shared memory across agent sessions. Key security features include a robust PII scrubbing engine (lib/brainx-phase2.js) that redacts sensitive data like API keys and emails before storage, and an 'Advisory System' (lib/advisory.js) designed to prevent agents from repeating past mistakes during high-risk tool executions. While the skill possesses powerful capabilities, such as an 'Auto-Promotion Pipeline' (promotion-applier.js) that can modify agent instruction files (AGENTS.md, SOUL.md) based on learned patterns, these are well-documented features aligned with its purpose as an autonomous learning engine. The code is professional, includes extensive diagnostic tools (lib/doctor.js), and lacks any indicators of malicious intent or unauthorized data exfiltration.
能力评估
Purpose & Capability
Name/description (vector memory + Postgres + OpenAI embeddings) matches the declared requirements: it needs psql, DATABASE_URL, and OPENAI_API_KEY and contains CLI, DB, embedding and hook code. Required binaries and env vars are proportionate to the stated purpose.
Instruction Scope
SKILL.md and other docs instruct the agent/operator to read and write OpenClaw config and workspace files (~/.openclaw/openclaw.json, ~/.openclaw/.env, MEMORY.md, BRAINX_CONTEXT.md, workspace memory files) and to run cron/maintenance scripts that harvest session logs and markdown files. Those actions are within the memory-engine purpose but are broad (capture of agent sessions, automatic ingestion, and writing per-agent MEMORY.md) and can surface sensitive data if not configured carefully.
Install Mechanism
No remote download/install spec — the package is distributed with its code files and hooks. That lowers supply-chain risk. However, the repo includes hook/handler.js and many scripts that, when installed/synced, will be executed on agent bootstrap and by cron if enabled; the user should inspect those files before copying them into their managed hooks directory.
Credentials
The two required env vars (DATABASE_URL, OPENAI_API_KEY) are appropriate for a vector DB + embedding service. The code also supports optional BRAINX_ENV and recommends reading ~/.openclaw/.env; loading an external env file means the skill could access other secrets if that file contains them. The docs also reference optional cloud sync (rclone) and backups — these are operator-controlled but expand the data-handling surface.
Persistence & Privilege
always:false and normal model invocation behavior. The skill includes an auto-inject hook (agent:bootstrap) that, when installed, will modify per-agent files (MEMORY.md / BRAINX_CONTEXT.md) and share memories across agents. This is expected for a shared memory engine, but it is persistent and cross-agent by design — review sharing/PII settings before enabling in multi-user or sensitive environments.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install brainx
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /brainx 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.3.5
Extract embedding client to separate file to eliminate static analysis false positive. No functional changes.
v0.3.4
Refactor: lazy-load env vars in openai-rag.js to eliminate static analysis false positive (env access + network send at module load)
v0.3.3
Singleton PostgreSQL pool (fixes connection leak), PII password scrub patterns (multilingual), search defense-in-depth with PII filtering on results, null embedding filter
v0.3.2
fix: correct display name
v0.3.1
fix: restore name to BrainX V5, remove dotenv from lib to clear security flag
v0.3.0
feat: promotion-applier, 15-step pipeline, 32 agent profiles, sanitized README
v0.2.8
Add security trust section explaining flagged patterns
v0.2.7
Major cleanup and consolidation of maintenance scripts. - Removed 36 shell and JS scripts related to cron jobs, manual backups, and memory utilities. - Retained core functionality for memory search, injection, and management in main codebase. - No user-facing command or API changes; CLI and primary features are unaffected. - SKILL.md and package.json updated to reflect current capabilities and requirements.
v0.2.4
- Major update: Introduced full documentation, new CLI scripts, hooks, and system integration. - Added comprehensive docs covering architecture, configuration, schema, CLI usage, scripts, agent propagation, tests, and gap analysis. - Introduced cron scripts for health checks, ops alerts, and weekly dashboards. - Added OpenClaw hook handler scripts and agent profile support. - Significant codebase expansion in core memory and advisory logic. - Enhanced backup, recovery, and health monitoring capabilities.
v0.2.3
Version 0.2.3 — Major removal of implementation files and documentation. - Removed 66 code, documentation, and script files, including all libraries, hooks, scripts, and docs. - Only the SKILL.md manifest remains, containing the feature summary and tool documentation. - The skill is now documentation-only; all operational implementation files have been deleted.
v0.2.2
BrainX 0.2.2 introduces an expanded feature overview and improved documentation. - Added a comprehensive "35 Features" table to SKILL.md highlighting all core and advanced capabilities. - Enhanced documentation for clarity and quick feature discovery. - No functional or CLI/API changes; this update focuses on clearer and more accessible documentation.
v0.2.1
Security: git history rewritten to remove leaked OAuth token fragment
v0.2.0
Major: English SKILL.md, security fixes (token redaction), cross-agent memory sharing refactor, hook injection split (own+cross slots)
v0.1.2
Docs: BrainX V5 validation, hook sync checklist, doctor cron update, config notes
v0.1.2-test
manual curl nested test
v0.1.1
Sync BrainX V5 docs/config/hook metadata with the validated production runtime; restore hook alignment guidance; update doctor checks for the consolidated cron pipeline; document live validation evidence and current database/hook behavior.
v5.2.0
Full English translation of SKILL.md and docs
v5.1.1
Fix skill name
v5.1.0
V5.1: full codebase with advisory, EIDOS, consolidation, agent-aware injection, quality gate, HNSW
v5.0.1
V5: advisory system, EIDOS loop, auto-distiller, memory consolidation, agent-aware injection, quality gate, HNSW indexing
元数据
Slug brainx
版本 0.3.5
许可证 MIT-0
累计安装 3
当前安装数 2
历史版本数 24
常见问题

BrainX V5 — The First Brain for OpenClaw 是什么?

Vector memory engine with PostgreSQL + pgvector + OpenAI embeddings. Stores, searches, and injects contextual memories into LLM prompts. Includes auto-inject... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 659 次。

如何安装 BrainX V5 — The First Brain for OpenClaw?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install brainx」即可一键安装,无需额外配置。

BrainX V5 — The First Brain for OpenClaw 是免费的吗?

是的,BrainX V5 — The First Brain for OpenClaw 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

BrainX V5 — The First Brain for OpenClaw 支持哪些平台?

BrainX V5 — The First Brain for OpenClaw 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 BrainX V5 — The First Brain for OpenClaw?

由 Mdx2025(@mdx2025)开发并维护,当前版本 v0.3.5。

💬 留言讨论