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

moltcare-open换毛护理开放

Agent Skill

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

总安装

8,938

周安装

380

GitHub Stars

公开资料未说明

下载量

3,131
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install moltcare-open

简介

moltcare-open 用于安装和配置 MoltCare Agent Framework,支持三层触发架构。

  • 适用于构建具有精确触发条件的代理系统。
  • 支持 Exact、Fuzzy 和 Contextual 触发模式。
  • 使用前需确认框架依赖和环境兼容性。
  • 建议核实触发逻辑和事件响应机制。moltcare-open 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
moltcare-open
description
Install and configure the MoltCare Agent Framework - a four-layer configuration system (SOUL/AGENTS/USER/MEMORY) with three-layer trigger architecture (Exact + Semantic + Agent Evaluation) and PUA problem-solving framework. Use when the user wants to set up or configure OpenClaw Agent with structured personality, intelligent memory triggers, proactive problem-solving, and multi-expert decision modes. Triggers on phrases like 'install moltcare', 'setup agent framework', 'configure openclaw personality', 'set up memory triggers', or when the user needs a complete Agent configuration system.

MoltCare-Open Skill

🦞 OpenClaw Skill - v3.2.0 | Auto-published via GitHub Actions

Install and configure the MoltCare Agent Framework for OpenClaw.

What is MoltCare?

MoltCare is a four-layer configuration framework that transforms OpenClaw Agent from passive execution to proactive problem-solving:

┌─────────────────────────────────────────┐
│  SOUL.md        ← Agent 灵魂(原则、人格) │
├─────────────────────────────────────────┤
│  AGENTS.md      ← 操作手册(流程、工具)   │
├─────────────────────────────────────────┤
│  USER.md        ← 用户画像(偏好、约束)   │
├─────────────────────────────────────────┤
│  MEMORY.md      ← 长期记忆(核心信息)     │
└─────────────────────────────────────────┘

Core Features

1. Three-Layer Trigger Architecture (AGENTS.md v3.2)

LayerTriggerSignalPriority
Layer 1Exact triggers+2🔴 Highest
Layer 2Semantic triggers+1🟡 Medium
Layer 3Agent self-evaluationAuto🟢 Lowest

Layer 1 - Exact Triggers:

  • 多专家讨论: → Multi-expert mode [🧠]
  • 这很重要 → High priority memory [⭐]
  • 记住这个 → Learning debt [💾]
  • 我偏好 → User preference [👤]

Layer 2 - Semantic Triggers:

  • "关键是..." / "核心在于..." → Key info [⭐]
  • "别忘了..." / "要记住..." → Learning debt [💾]
  • "我喜欢..." / "我讨厌..." → Preference [👤]
  • "还不行" / "太慢了" → PUA activation [🔥]

Layer 3 - Agent Evaluation: After task completion, self-evaluate 7 questions and auto-record if ≥2 criteria met.

2. PUA Problem-Solving Framework

Three Iron Laws:

  1. Exhaust all options - Never say "cannot solve" until all tried
  2. Act first, ask later - Use tools before asking user
  3. Take ownership - End-to-end delivery

Pressure Escalation (L1-L4):

  • L1: "Try again" / "Another approach"
  • L2: "Why still not working" / 2 failures
  • L3: "You can't do it" / 3+ failures + 7-item checklist
  • L4: "Cannot solve" / 5+ failures →拼命模式

3. Multi-Expert Decision System

Automatically activate for:

  • Architecture design
  • Security/risk assessment
  • Complex trade-offs

Experts: 🔍 Researcher → 🧠 Architect → 💻 Engineer → 👑 Captain

4. Task Layering & Cost Optimization

Intelligent task execution with minimal token consumption:

LayerTask TypeExecutionToken Cost
L0Data collection, polling, formattingPure scriptZero
L1Query, display, status checksPure scriptZero
L2Anomaly detection, threshold checksScript + conditional triggerOn-demand
L3Analysis, decision-making, summarizationAI invocationNormal

Principle: Push computation to scripts; reserve AI for judgment.

Benefits:

  • 90%+ reduction in token consumption for routine tasks
  • Faster response times (no model latency)
  • Predictable operational costs
  • Scalable automation

5. Daily Token Optimization Audit

Automated daily review of tasks and workflows to identify optimization opportunities:

What it checks:

Check ItemPurpose
Repetitive AI tasksIdentify tasks that could be scripted
High-frequency queriesFind patterns for caching/pre-computation
Threshold-based decisionsDetect rules that could be automated
Data processing workflowsSpot opportunities for batch/aggregate processing

Daily Checklist:

□ Review yesterday's token usage patterns
□ Identify tasks with >3 similar executions
□ Check for threshold-based decisions using AI
□ Look for data formatting/processing done by AI
□ Find opportunities for incremental updates

Optimization Report Template:

## [Date] Token Optimization Report

### Findings
| Task | Current | Suggested | Savings |
|------|---------|-----------|---------|
| [Name] | AI every call | Script + cache | ~X% |

### Action Items
- [ ] [Task]: Convert to L0/L1/L2
- [ ] [Task]: Add caching layer
- [ ] [Task]: Implement incremental updates

Auto-trigger: Daily at configured time or manual via "检查token优化"

Installation

Step 1: Copy Templates (⚠️ Important: Copy to ROOT, not subfolders)

OpenClaw automatically loads these files from workspace root at session start:

CORE (required):

~/.openclaw/workspace/
├── AGENTS.md      ← Operation manual (auto-loaded)
├── SOUL.md        ← Agent principles (auto-loaded)
├── USER.md        ← User profile (auto-loaded)
└── MEMORY.md      ← Long-term memory (auto-loaded)

OPTIONAL (loaded if exists):

~/.openclaw/workspace/
├── IDENTITY.md    ← Agent identity (auto-loaded)
├── TOOLS.md       ← Environment tools (auto-loaded)
└── HEARTBEAT.md   ← Health check system (auto-loaded)

MEMORY templates (read on-demand):

~/.openclaw/workspace/memory/
├── learning-debt.md      (read via `read` tool)
├── constraints.md        (read via `read` tool)
├── preferences.md        (read via `read` tool)
└── token-audit-template.md  (read via `read` tool)

❌ WRONG - Do NOT do this:

# Wrong - creates subfolders
mkdir -p ~/.openclaw/workspace/core
mkdir -p ~/.openclaw/workspace/assets
cp assets/* ~/.openclaw/workspace/core/  # ❌ WRONG

✅ CORRECT (or use install.sh):

# Core templates → ROOT (auto-loaded by OpenClaw)
cp assets/AGENTS.md ~/.openclaw/workspace/
cp assets/SOUL.md ~/.openclaw/workspace/
cp assets/USER.md ~/.openclaw/workspace/
cp assets/MEMORY.md ~/.openclaw/workspace/

# Optional templates → ROOT (auto-loaded if exists)
cp assets/IDENTITY.md ~/.openclaw/workspace/
cp assets/TOOLS.md ~/.openclaw/workspace/
cp assets/HEARTBEAT.md ~/.openclaw/workspace/

# Memory templates → memory/ (read on-demand)
mkdir -p ~/.openclaw/workspace/memory
cp assets/learning-debt.md ~/.openclaw/workspace/memory/
cp assets/constraints.md ~/.openclaw/workspace/memory/
cp assets/preferences.md ~/.openclaw/workspace/memory/
cp assets/token-audit-template.md ~/.openclaw/workspace/memory/

# Note: BEST_PRACTICES.md stays in skill/assets/ (reference only, not auto-loaded)

Step 2: Configure User Profile

Edit ~/.openclaw/workspace/USER.md and fill in:

  • Your name/role
  • Communication preferences
  • Technical level
  • Constraints and boundaries

Step 3: Initialize Memory System

Create today's memory file:

mkdir -p ~/.openclaw/workspace/memory
echo "# $(date +%Y-%m-%d) Memory Flush" > ~/.openclaw/workspace/memory/$(date +%Y-%m-%d).md

Step 4: Configure Weekly Token Audit (Auto-configured)

Token optimization audit is automatically configured during installation:

Default Schedule: Every Monday at 03:00 (cron)

0 3 * * 1 cd ~/.openclaw/workspace && echo '检查token优化' >> ~/.openclaw/workspace/.audit-trigger

Trigger methods:

  1. Automatic - Runs every Monday 03:00 via cron
  2. Manual - Say "检查token优化" anytime
  3. Custom period - Say "检查本周token优化" or "检查本月token优化"

To change schedule, edit crontab:

crontab -e
# Change: 0 3 * * 1 (Monday 03:00)
# To daily: 0 3 * * * (daily 03:00)
# To disable: Comment out or remove the line

File Reference

CORE Configuration (Auto-loaded by OpenClaw)

Must be in ~/.openclaw/workspace/ root.

FilePurposeKey ContentRequired
AGENTS.mdOperation manual3-layer triggers, multi-expert, PUA levels✅ Required
SOUL.mdAgent soul & principles7 principles, PUA framework, safety rules✅ Required
USER.mdUser profilePreferences, constraints, communication style✅ Required
MEMORY.mdLong-term memoryHigh-signal info (Signal 8-10)✅ Required

OPTIONAL Configuration (Auto-loaded if exists)

Placed in ~/.openclaw/workspace/ root. Loaded only if file exists.

FilePurposeKey Content
IDENTITY.mdAgent identityDisplay name, emoji, role definition
TOOLS.mdEnvironment toolsLocal tool versions, API keys, commands
HEARTBEAT.mdHealth check systemQuick status checks
TOKEN_AUDIT.mdWeekly audit configToken optimization schedule, thresholds
CONFIG_CHECKLIST.mdPost-install verificationHow to use all md files correctly

MEMORY Templates (Read on-demand)

Placed in ~/.openclaw/workspace/memory/. Read via read tool when needed.

FilePurpose
learning-debt.mdTopics to learn (Signal 6+)
constraints.mdAbsolute boundaries
preferences.mdPreference change log
token-audit-template.mdDaily token optimization review template

Reference Documentation (Not auto-loaded)

Stay in skill/assets/. Read manually when needed.

FilePurpose
BEST_PRACTICES.mdEfficiency guide - Task layering, token optimization
README.mdThis documentation

Quick Start

After installation, test the framework:

  1. Test Layer 1 trigger:
   用户: "这很重要,我偏好简洁的回答"
   Agent: [⭐] 已记录核心偏好: 简洁回答
  1. Test Layer 2 trigger:
   用户: "关键是配置要正确,别忘了备份"
   Agent: [⭐] 记录关键信息: 配置要正确
          [💾] 添加到学习债务: 别忘了备份
  1. Test Multi-Expert mode:
   用户: "多专家讨论: 如何设计一个高并发系统"
   Agent: [🧠 多专家模式]
          🔍 研究员: ...
          🧠 架构师: ...
          💻 工程师: ...
          👑 队长: ...

Updating

To update the framework while preserving your configurations:

  1. Backup your USER.md and MEMORY.md
  2. Reinstall the skill
  3. Merge your custom configurations back

Resources

All templates are in assets/ directory:

  • Core templates: SOUL.md, AGENTS.md, USER.md, MEMORY.md, HEARTBEAT.md
  • Memory templates: learning-debt.md, constraints.md, preferences.md

Version

v3.2 - Task Layering & Cost Optimization

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.83%
按下载量换算2,562

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills