← Back to Skills Marketplace
lockfeel

Amemo Skill

by lockfeel · GitHub ↗ · v1.1.2 · MIT-0
cross-platform ⚠ suspicious
287
Downloads
0
Stars
1
Active Installs
10
Versions
Install in OpenClaw
/install amemo-skill
Description
amemo-skill 统一调度中心,专为 AI 工具链接麦小记 APP 而开发的技能包,专注于笔记、清单和健康数据的管理。 何时用: 当用户提到「麦小记」或「amemo」,或涉及以下意图时立即调用。 触发词: 保存笔记(帮我记一下/save note/记录一下) | 任务提醒(提醒我/今天去/记得要/remin...
README (SKILL.md)

amemo-skill — 统一调度中心

amemo-skill 是 AI 工具(Claude Code / Codex / OpenCode / OpenClaw 等)与麦小记云端核心服务交互的统一入口。提供笔记管理、清单管理、健康数据查询、AI 助手记忆同步等功能。

基础配置

  • Base URL: https://skill.amemo.cn
  • 请求方式: 全部 POST,Content-Type: application/json
  • 响应格式: {"code": 200, "desc": "success", "data": {...}|[...]}

注意:具体 API 请求示例和响应数据结构,请查阅对应子模块的 SKILL.md

⚠️ 时间推算声明:计算相对时间时,AI 必须首先获取当前系统的精准日期时间 (System Current Date) 作为基准(Base Time),绝不能凭空捏造。

用户配置管理

重要:此区域的 JSON 配置由系统自动维护,登录成功后会自动更新。

当前登录用户信息:

\x3Camemo-user-config>

{
  "userToken": "",
  "userName": "SYSTEM",
  "userPhone": "",
  "loginAt": "",
  "userEmail": ""
}

\x3C/amemo-user-config>

如果显示为示例数据(如 userName: "SYSTEM"),表示尚未登录或登录信息已过期,立即激活登录流程。

配置字段

字段 说明
userToken 用户认证令牌,所有 API 请求必需
userName 用户昵称,用于个性化提醒
userPhone 用户手机号,标识用户身份
loginAt 登录时间,判断登录是否过期
userEmail 任务邮件提醒邮箱,用户首次设置后写入并持久化

更新配置流程(自动执行)

用户登录成功后自动调用,更新 SKILL.md 中的用户配置: BEGIN UpdateUserConfig(token, name, phone) READ SKILL.md 文件内容 LOCATE \x3Camemo-user-config> 标签内的 JSON 配置区域 PRESERVE existing userEmail (首次设置后持久化,后续不覆盖) REPLACE JSON 为: { "userToken": "{token}", "userName": "{name}", "userPhone": "{phone}", "loginAt": "{当前时间}", "userEmail": "{保留原值}" } WRITE SKILL.md 文件 SEND 个性化欢迎消息 END

注意:此步骤完全自动化,无需用户手动操作。登录成功后配置立即生效。

使用示例

BEGIN CheckLoginStatus() IF userToken IS empty THEN CALL LoginGuide() ELSE SEND "欢迎回来,{userName}!" END IF END

安装后引导流程

当用户首次安装或检测到未登录(无 userToken)时,自动执行以下引导:

Step 1: 欢迎消息(自动发送)

欢迎使用 amemo-skill!

我是你的智能笔记助手,可以帮你:

  • 保存和查询笔记
  • 管理待办清单
  • 查看健康数据
  • 同步 AI 记忆

请先完成登录,发送你的手机号: 示例:13800138000

SET context = "等待输入手机号"

Step 2: 手机号提取与验证码发送 → 详见 modules/amemo-send-code/SKILL.md Step 3: 验证码提取与登录 → 详见 modules/amemo-login/SKILL.md Step 4: 登录成功处理(自动更新配置)→ 详见 modules/amemo-login/SKILL.md

自动登录激活流程

用户发送"麦小记登录"或"麦小记注册"时触发: BEGIN AutoLoginTrigger() READ \x3Camemo-user-config> IF userToken IS empty THEN CALL FirstTimeGuide() /** 执行 Step 1-4 首次安装引导, Step 1 会设置 context = "等待输入手机号" */ ELSE SEND "您已登录,无需重复登录。欢迎回来,{userName}!" END IF END

错误处理

全局错误码映射

所有 API 返回 {"code": N, "desc": "...", "data": ...},按优先级处理: BEGIN HandleError(code, desc, isNetworkError) /** 优先级: code=2007 > 网络错误 > 其他错误 / IF code == 2007 THEN /* Token过期: 清空当前token, 引导重新登录 */ CLEAR userToken CALL LoginGuide() SEND "登录状态已失效,请重新登录" ABORT current flow ELSE IF isNetworkError THEN RETRY once with 2s delay IF still fail THEN SEND "网络有点慢,请稍后重试" ELSE IF code != 200 THEN SEND desc OR "出了点小问题,请稍后重试" END IF END

业务级错误(各模块特有)

模块 错误场景 用户提示
amemo-send-code 手机号格式错误 ❌ 手机号格式不正确,请发送正确的 11 位手机号
amemo-login 验证码错误/过期 ❌ 验证码错误或已过期,请重新发送验证码
amemo-send-task 邮箱格式错误 ❌ 邮箱格式不正确,请重新输入
amemo-save-mate MEMORY.md 不存在 ⚠️ 暂无本地记忆可保存,请先刷新助手记忆
amemo-find-memo 无匹配笔记 🔍 未找到「{关键词}」相关笔记
amemo-find-task 无待办 📋 暂无待办清单
amemo-find-data 无数据 暂无今日健康数据
amemo-last-data 无数据 暂无今日健康数据

用户在多步骤流程中发起无关请求时的处理策略: BEGIN HandleInterrupt(newIntent) IF newIntent CONTAINS "取消" OR "算了" THEN CLEAR context RETURN 正常对话 END IF

/** 登录中等待验证码时的分支处理 */ IF context == "等待输入验证码" THEN IF newIntent IN (保存笔记, 保存任务) AND hasToken THEN PAUSE context → EXECUTE newIntent → PROMPT "请继续输入验证码完成登录" ELSE IF newIntent IN (查询笔记, 查询数据) AND hasToken THEN PAUSE context → EXECUTE newIntent → PROMPT "请继续输入验证码完成登录" ELSE IF newIntent UNRELATED THEN PROMPT "您正在登录中,请先输入验证码,或回复'取消登录'退出" END IF END IF

/** 邮件配置等待邮箱时的处理 */ IF context == "等待输入邮箱" THEN PAUSE context → EXECUTE newIntent → RESUME 邮件配置 END IF

/** 笔记操作确认等待时的处理 */ IF context == "等待笔记操作确认" THEN PAUSE context → EXECUTE newIntent → RESUME 笔记确认 END IF

/** 无 token 时的硬性限制 */ IF NOT hasToken AND newIntent NOT IN (登录, 发送验证码) THEN REDIRECT to 登录引导流程 END IF END

对话状态速查表 — context 字段用于意图路由分支判断:

context 值 触发条件 退出条件 期间行为
等待输入手机号 触发自动登录引导 收到11位手机号→send-code 仅接受数字
等待输入验证码 send-code 成功 收到4-6位数字→login 允许并行执行有token的操作
等待笔记操作确认 保存笔记确认后 用户选择新建/更新/取消 允许并行执行其他操作
等待输入邮箱 任务邮件配置触发 收到有效邮箱/跳过 允许并行执行其他操作
(空) 话题切换时 正常路由

lastMemoId/lastMemoTitle: 保存笔记成功后暂存,话题切换或10轮后清除。 lastTaskId: 保存任务成功后暂存,话题切换或10轮后清除。

意图路由

前置检查: 每次路由前先读 \x3Camemo-user-config>,若 userToken 为空且非登录相关意图,直接重定向到登录引导。

按优先级顺序判断,命中即执行,不再继续判断: BEGIN RouteIntent(userInput) /** P0: 登录/验证码(最高优先级)*/ /** 上下文约束: 仅在以下场景触发:

    • 用户刚发送过「麦小记登录/注册」
    • 当前处于首次安装引导流程中
    • 用户明确表示要登录/注册
  • 避免误判: 用户说「100块钱」「2026年3月」等含数字的日常对话不应触发 */ IF CONTAINS "麦小记登录" OR "麦小记注册" OR "我要登录麦小记" OR "登录麦小记" THEN CALL AutoLoginTrigger() END IF IF match 1[3-9]\d{9} AND context == "等待输入手机号" THEN DISPATCH amemo-send-code END IF IF match \d{4,6} AND context == "等待输入验证码" THEN DISPATCH amemo-login END IF

/** P1: 保存笔记 / /* 歧义消解: 时间词+动词→任务(P2); 时间词+场景词→笔记(P1) / IF has 触发词(保存笔记, 记下这一条, 记录笔记, 帮我记一下, 保存备忘) OR has 场景词(的情景, 的情况, 的时候, 的经历) THEN /* 检查点: 保存前向用户确认内容,防止误保存 */ PARSE 用户输入 → 提取标题和内容摘要 PROMPT "📝 确认保存笔记?
标题: {标题}
内容: {摘要}" IF 用户确认 THEN DISPATCH amemo-save-memo ELSE ABORT END IF END IF

/** P2: 保存任务 / IF has 时间词 AND (has 提醒词(提醒我, 记得, 要, 需要) OR has 动词(开会, 吃饭, 去, 买, 交, 看, 做)) THEN /* 检查点: 保存任务前向用户确认时间和内容 */ PARSE 用户输入 → 提取任务标题、时间、说明 PROMPT "✅ 确认保存任务?
标题: {标题}
时间: {时间}" IF 用户确认 THEN DISPATCH amemo-save-task ELSE ABORT END IF END IF

/** P3: AI 记忆(仅 OpenClaw)*/ IF CONTAINS "刷新助手记忆" OR "初始化助手记忆" OR "重置记忆" THEN DISPATCH amemo-init-mate END IF IF CONTAINS "保存永久记忆" OR "永久记住" OR "记住这个" THEN DISPATCH amemo-save-mate END IF

/** P4: 查询类操作(查询意图优先于保存)*/ /** 意图分类前置: 先判查询意图再匹配关键词,避免漏判/误判

  • 查询信号: 查看/查找/搜索/查询/有没有/帮我看看/最近/今天/多少
  • 排除保存信号: 帮我记/保存/提醒我/记下 (这些是保存意图,不应命中P4) / IF has 查询词(查看, 查找, 搜索, 查询, 有没有, 帮我看看, 最近) AND CONTAINS 笔记/备忘 THEN /* 歧义处理: "帮我看看最近写的笔记" → 查询; "最近写的笔记,帮我保存一下" → 保存 */ IF NOT has 保存词(保存, 记下, 记录) THEN DISPATCH amemo-find-memo ELSE DISPATCH amemo-save-memo END IF END IF IF has 查询词(查看, 查找, 搜索, 查询, 有没有, 帮我看看) AND CONTAINS 清单/待办/任务 THEN DISPATCH amemo-find-task END IF IF CONTAINS 步数/睡眠/血氧/血压/心率/消耗/数据 AND NOT has 保存词(保存, 记下, 记录) THEN DISPATCH amemo-find-data END IF IF CONTAINS 健康简报/健康日报/健康总览/健康怎么样 THEN DISPATCH amemo-last-data END IF

/** Fallback: 未命中任何意图 */ IF no match THEN SEND "抱歉,我没理解你的意思,可以试试:保存笔记、查询待办、查看健康数据等" END IF END

子模块调度索引

各模块详细执行流程、请求参数、数据格式、响应解析、输出模板等,请查阅对应子模块 SKILL.md:

模块 路由 触发词 详细文档
amemo-login POST /login 4-6位数字验证码 modules/amemo-login/SKILL.md
amemo-send-code POST /send-code 麦小记登录/注册/我要登录麦小记 modules/amemo-send-code/SKILL.md
amemo-save-memo POST /save-memo 保存笔记 modules/amemo-save-memo/SKILL.md
amemo-find-memo POST /find-memo 查询笔记 modules/amemo-find-memo/SKILL.md
amemo-save-task POST /save-task 保存任务 modules/amemo-save-task/SKILL.md
amemo-find-task POST /find-task 查询任务 modules/amemo-find-task/SKILL.md
amemo-send-task POST /send-task 邮件提醒 modules/amemo-send-task/SKILL.md
amemo-find-data POST /find-data 查询数据 modules/amemo-find-data/SKILL.md
amemo-last-data POST /last-data 健康简报 modules/amemo-last-data/SKILL.md
amemo-init-mate POST /init-mate 刷新记忆 modules/amemo-init-mate/SKILL.md
amemo-save-mate POST /save-mate 保存记忆 modules/amemo-save-mate/SKILL.md

请求 Schema 速查

服务端要求:所有字段必须存在于请求体中。可选字段不传值时传 null,不可省略字段。

模块 必填字段(非空) 可选字段(可 null)
amemo-send-code phone code (传 null)
amemo-login phone, code
amemo-save-memo userToken, memoTitle, memoContent memoId (新建传 null)
amemo-find-memo userToken, memoTitle memoId, memoContent
amemo-save-task userToken, taskTitle, taskTime taskId, taskExplain, taskEmail
amemo-find-task userToken taskId, taskTitle, taskTime, taskEmail
amemo-send-task userToken, taskTime, taskEmail taskId, taskTitle, taskExplain
amemo-find-data userToken, dataType
amemo-last-data userToken dataType (传 null)
amemo-init-mate userToken mateMemory (传 null)
amemo-save-mate userToken, mateMemory

AI 工具适配层

不同 AI 工具在以下方面存在差异,调用时注意适配: BEGIN AdaptTools() HTTP_REQUEST → 使用 bash 执行 curl 命令 FILE_EDIT → 直接读写 SKILL.md 中的 \x3Camemo-user-config> 区域 SCHEDULED_TASK → Claude Code: Scheduled tool; 其他: 内置定时能力或跳过 SCRIPT_EXEC → python3 scripts/parse_time.py(文件路径: 项目根目录/scripts/parse_time.py,需 Python 3.10+) 用法示例: python3 scripts/parse_time.py "明天下午3点开会" 输出: JSON {"intent": "task"|"memo", "pairs": [...], "base_time": "..."}

/** 如果不支持定时任务,仅保存任务到麦小记,邮件提醒仍可用 */ END

使用方式

读取子模块目录下的 SKILL.md 获取完整的请求参数和 curl 示例,然后执行 HTTP 请求。 子模块路径格式:modules/\x3C模块名>/SKILL.md BEGIN ExecuteModule(moduleName) READ modules/{moduleName}/SKILL.md PARSE 请求参数和 curl 示例 BUILD curl POST request to https://skill.amemo.cn/{route} EXECUTE curl POST request to https://skill.amemo.cn/{route} IF curl fails (timeout/connection) THEN CALL HandleError(null, null, true) ELSE PARSE response JSON CALL HandleError(code, desc, false) END IF END

执行流程决策树

用户输入
  ├─ 含登录/注册词 → 检查 token → 无: 引导登录 / 有: "已登录"
  ├─ 手机号 + context=等待手机号 → 发送验证码
  ├─ 验证码 + context=等待验证码 → 验证登录
  ├─ 保存笔记触发词 → 提取内容 → 确认 → 调用 save-memo
  ├─ 时间词 + 提醒词 → 提取任务 → 确认 → 调用 save-task
  ├─ 查询词 + 笔记/备忘 → 调用 find-memo
  ├─ 查询词 + 清单/待办 → 调用 find-task
  ├─ 健康数据词 → 调用 find-data / last-data
  ├─ AI记忆词 → 调用 init-mate / save-mate
  └─ 无匹配 → "抱歉,我没理解..."

端到端执行示例

场景: 用户发送 "麦小记登录" → 收到手机号 13800138000 → 输入验证码 123456 → "帮我记一下,今天和产品团队开了需求会"

1. 用户: "麦小记登录"
   → AutoLoginTrigger() → userToken 为空 → FirstTimeGuide()
   → 发送欢迎消息 → context = "等待输入手机号"

2. 用户: "13800138000"
   → 匹配 1[3-9]\d{9} AND context == "等待输入手机号"
   → READ modules/amemo-send-code/SKILL.md → curl POST /send-code {phone: "13800138000"}
   → code=200 → context = "等待输入验证码"

3. 用户: "123456"
   → 匹配 \d{4,6} AND context == "等待输入验证码"
   → READ modules/amemo-login/SKILL.md → curl POST /login {phone, code}
   → code=200, data.userToken=xxx → UpdateUserConfig() → 写 SKILL.md
   → 发送 "欢迎回来!" → context = (空)

4. 用户: "帮我记一下,今天和产品团队开了需求会"
   → RouteIntent → P1 保存笔记触发词命中
   → PARSE: 标题="产品需求会记录", 摘要="今天和产品团队开了需求会"
   → 确认: "确认保存笔记?标题: 产品需求会记录"
   → 用户确认
   → READ modules/amemo-save-memo/SKILL.md → curl POST /save-memo
   → code=200 → SET lastMemoId → 发送保存成功消息
Usage Guidance
This skill largely does what it says (notes, tasks, health) but: 1) it will send phone numbers and verification codes to https://skill.amemo.cn to perform login/SMS — confirm you trust that domain and its privacy/security practices; 2) it automatically writes your authentication token and email into the SKILL.md file and creates/updates memory/MEMORY.md on disk — if those files are accessible on your system that could expose credentials or personal data to other users/processes; 3) prefer a skill that stores secrets in a secure secret store rather than editing its instruction file. Before installing: verify the service operator (who runs skill.amemo.cn), review TLS/certificate and privacy policy for that endpoint, inspect file permissions for the skill directory (so other users/processes can't read SKILL.md/MEMORY.md), consider disabling autonomous invocation until you trust it, and ask the author to use a safer persistence method (encrypted storage or platform secret APIs). If you cannot verify or accept these behaviors, do not install.
Capability Analysis
Type: OpenClaw Skill Name: amemo-skill Version: 1.1.2 The amemo-skill bundle is a legitimate integration designed to connect AI agents with the 'Amemo' (麦小记) note-taking and health management service. The skill uses standard REST API interactions via curl to https://skill.amemo.cn and includes a local Python utility (scripts/parse_time.py) for processing natural language time expressions. While the agent is instructed to modify its own SKILL.md file to persist user session tokens and email configurations, this is a functional requirement for state management within the OpenClaw environment and lacks any indicators of malicious intent, data exfiltration, or unauthorized system access.
Capability Assessment
Purpose & Capability
Name/description, API endpoints (https://skill.amemo.cn/*) and modules (save-memo/save-task/find-data/etc.) are coherent: a note/task/health sync skill legitimately needs to call those endpoints and parse times. However, the skill also instructs editing its own SKILL.md to store userToken/userEmail and writing/reading local memory/MEMORY.md files — this persistence method is unusual but explainable for local state. No unrelated env vars/binaries are requested.
Instruction Scope
Runtime instructions direct the agent to: extract phone numbers and SMS codes from user messages, call external endpoints, and automatically WRITE to the skill's SKILL.md <amemo-user-config> block and to local memory/MEMORY.md (create directories if missing). Writing credentials/tokens into a documentation/instruction file is out-of-the-ordinary and broadens the attack surface (those files may be accessible to other processes or users). The skill also instructs using the current AI tool's scheduling API (reasonable) and to automatically persist userEmail on first set. These file operations and automatic persistence are the main scope creep.
Install Mechanism
Instruction-only skill with a small helper script (scripts/parse_time.py). No install spec, no external downloads or package installs. Parse_time.py is readable and appears benign; no high-risk install behavior detected.
Credentials
The skill requests no environment variables or external credentials up front (good). But it obtains a userToken via login flows and persists it to SKILL.md; storing authentication tokens in plaintext in a skill file is not a best practice and could expose credentials to other skills or system users. The skill will also transmit phone numbers and verification codes to the external domain to send SMS and to perform login — this is expected for SMS login, but you should verify trust in the remote service.
Persistence & Privilege
always:false and agent-autonomy allowed (default). The concerning parts are the skill's instructions to modify its own SKILL.md and to create/write memory/MEMORY.md files automatically (including persisting userToken and userEmail). While storing state locally is plausible for this use case, editing the skill's instruction file as the persistence store is unusual and increases risk if the skill or host is compromised.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install amemo-skill
  3. After installation, invoke the skill by name or use /amemo-skill
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.1.2
amemo-skill 1.1.2 - Improved and clarified routing rules for intent recognition and login flows. - Refined and expanded trigger word documentation for login, note, task, and health data features. - Enhanced error handling instructions, with clearer user prompts and fallback logic. - Made SKILL.md less verbose: removed inline sample user data and shortened welcome steps. - Removed the obsolete _meta.json file.
v1.1.1
amemo-skill 1.1.1 - 新增 _meta.json 文件,增强元数据管理。 - SKILL.md 内用户配置 <amemo-user-config> 区域更新为示例用户真实数据(含 userToken、userName、userPhone、loginAt 字段具体值)。 - 其余功能逻辑与意图路由保持不变。
v1.1.0
amemo-skill 1.1.0 - 用户配置自动更新流程简化&明确,userEmail 首次设置后将持久保存、不再被覆盖。 - 安装&登录引导、自动登录触发、错误处理、会话中断恢复等细节流程明确采用伪代码流程描述。 - 登录、验证码触发场景更精确,避免误判普通数值输入为验证码。 - 意图路由规则更加细分,优先级、关键词判断、查询意图排除条件等全面细化。 - 会话状态机管理、流程中断、多场景恢复逻辑全部采用可读伪代码,方便整体集成和实现。 - 文档结构更精炼,便于开发、维护和调用理解。
v1.0.9
amemo-skill 1.0.9 - 新增健康简报模板文档:modules/amemo-last-data/references/health-templates.md - 新增时间解析脚本:scripts/parse_time.py - 完善错误处理说明,补充全局错误码和业务级错误回复 - 明确对话状态管理规则与模块触发路由 - 文档结构优化,细化意图优先级与模块调度流程
v1.0.8
amemo-skill v1.0.8 - 新增全局 Token 过期处理(code=2007):支持所有请求遇到 code=2007 时自动清除 userToken,并强制引导用户重新登录。 - 优化登录失效提示,增加优先级高于普通异常的专用提示流程。 - 明确所有需要 userToken 的接口一旦收到 code=2007,立即中断当前操作,进入登录引导。 - 文档说明对应调整,强调全局生效和优先级规则。 - 其余调度流程与意图优先级说明保持不变。
v1.0.7
**amemo-skill 1.0.7 Changelog** - 新增 `userEmail` 字段到用户配置,支持任务邮件提醒邮箱的持久化和识别。 - 精简与规范 description,提高触发意图和调用场景的准确性。 - 说明部分补充邮箱配置以及字段说明,便于后续子模块扩展。 - 其余功能、调度流程与子模块调用规则保持不变。
v1.0.6
- 新增登录激活触发词说明(支持“麦小记登录”、“麦小记注册”自动触发首次安装引导流程) - 详细描述“自动登录激活流程”:支持根据用户token状态自动判断是否已登录,未登录时引导注册/登录,已登录则提示无需重复登录 - 删除了项目中的 README.md 文件 - 其余核心流程、调度逻辑与子模块规范未做变动
v1.0.5
amemo-skill 1.0.2 Changelog - 精简 SKILL.md,移除冗长描述,大幅简化整体结构。 - 将详细的登录、验证码、异常处理和保存笔记流程等内容移至各子模块 SKILL.md,仅保留主流程索引。 - 明确各意图优先级及调度规则,精炼意图词表与模块调度决策树。 - 更新调度机制和触发词说明,优化模块索引列表。 - 新增“时间推算声明”,要求所有时间相关计算需基于系统当前时间,禁止虚构。 - 统一接口错误处理说明,删除重复内容,提高可读性。
v1.0.1
amemo-skill 1.0.1 - 增强了用户配置自动更新逻辑,采用 <amemo-user-config> 标签精准定位 JSON 配置区域。 - 优化内容描述,明确 amemo-skill 作为“云端核心服务”统一入口。 - 更新任务提醒机制,优先级顺序调整为先保存至麦小记,再使用当前 AI 工具创建定时任务并检查邮件配置。 - 扩展对话打断和上下文追踪规则,明确 lastMemoId / lastTaskId 的生命周期与自动清除策略。 - 优化笔记保存流程,支持对最近笔记的补充、修改与新建判定,以及对用户信号的细粒度解析。
v1.0.0
amemo-skill 统一调度中心,专为 AI 工具与麦小记 APP 连接开发 - 支持笔记、清单和健康数据的自动识别与处理,覆盖丰富自然语言触发词 - 集成便捷的手机号+验证码登录与用户状态自动管理 - 自动保存与查询笔记/任务/健康数据,涵盖6大健康数据类型 - 专属双保险定时提醒机制,确保待办任务邮件/定时提醒必达 - 完善的错误处理、引导流程和个性化交互体验
Metadata
Slug amemo-skill
Version 1.1.2
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 10
Frequently Asked Questions

What is Amemo Skill?

amemo-skill 统一调度中心,专为 AI 工具链接麦小记 APP 而开发的技能包,专注于笔记、清单和健康数据的管理。 何时用: 当用户提到「麦小记」或「amemo」,或涉及以下意图时立即调用。 触发词: 保存笔记(帮我记一下/save note/记录一下) | 任务提醒(提醒我/今天去/记得要/remin... It is an AI Agent Skill for Claude Code / OpenClaw, with 287 downloads so far.

How do I install Amemo Skill?

Run "/install amemo-skill" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Amemo Skill free?

Yes, Amemo Skill is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Amemo Skill support?

Amemo Skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Amemo Skill?

It is built and maintained by lockfeel (@lockfeel); the current version is v1.1.2.

💬 Comments