Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

mowenskillmowenskill 搜索

Agent Skill

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

总安装

4,445

周安装

189

GitHub Stars

公开资料未说明

下载量

1,557
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install mowenskill

简介

通过 Open API 在 Mowen(墨问)平台发布、编辑或管理笔记内容。

  • 适用于社交媒体风格的内容创作与非结构化信息记录场景。
  • 用户提及“发布笔记”或“使用 mowen”时自动触发操作接口。
  • 安装命令:openclaw skills install mowenskill,需申请并绑定有效 API Token。
  • mowenskill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
mowen-note-publisher
description
Publish, edit, or configure notes on Mowen (墨问) via Open API. Use when user mentions 墨问, mowen, 发布笔记, publish note, or wants to create social-media-style notes with rich text and images.
dependencies
python>=3
metadata
openclaw
requires
env
["MOWEN_API_KEY"]
primaryEnv
MOWEN_API_KEY

墨问笔记发布 (Mowen Note Publisher)

Overview

Publish rich-text notes (text, images, formatting) to 墨问 via its Open API. This skill covers three operations: creating new notes, editing existing notes (API-created only), and modifying note settings (privacy, sharing, expiration). A Python script (scripts/publish_note.py) handles all API calls, image uploads, and NoteAtom construction with zero third-party dependencies.

Prerequisites

  • API Key: Obtain from 墨问小程序 → 我的 → 设置 → 开放平台 → 创建 API Key
  • Environment: Set MOWEN_API_KEY environment variable, or pass via --api-key argument
  • Python 3: Required for running the publish script (macOS has it pre-installed)

Workflow Decision Tree

User Request
    │
    ├── "发布/创建笔记" or "publish note"
    │   └── ACTION: create
    │       ├── Has images? → Upload images first (see Image Handling)
    │       ├── Build input JSON with paragraphs, tags, autoPublish
    │       └── Run: publish_note.py --action create
    │
    ├── "编辑/修改笔记内容" or "edit note"
    │   └── ACTION: edit (requires noteId from previous create)
    │       ├── ⚠️ Only API-created notes can be edited
    │       ├── Build input JSON with new paragraphs
    │       └── Run: publish_note.py --action edit --note-id <ID>
    │
    └── "修改笔记设置/隐私" or "change note settings"
        └── ACTION: settings (requires noteId)
            └── Run: publish_note.py --action settings --note-id <ID> --privacy <N>

Creating a Note (Step by Step)

1. Gather Content from User

Collect the note content. Identify:

  • Text paragraphs (plain text or rich text with bold/highlight/links)
  • Images (local file paths or URLs)
  • Tags (optional, max 10, each ≤ 30 chars)
  • Whether to auto-publish (default: draft)
  • Privacy setting (default: public)

2. Prepare Input JSON

Build a JSON object following this schema:

{
  "paragraphs": [
    "Plain text paragraph",
    [{"text": "Bold text", "bold": true}, " and normal text"],
    {"type": "heading", "level": 1, "text": "Title"},
    {"type": "image", "src": "https://example.com/photo.jpg"},
    {"type": "image", "src": "/path/to/local/photo.jpg", "width": 1080, "height": 720},
    {"type": "blockquote", "text": "A quote"},
    {"type": "bulletList", "items": ["Item 1", "Item 2"]},
    {"type": "orderedList", "items": ["First", "Second"]}
  ],
  "tags": ["tag1", "tag2"],
  "autoPublish": true,
  "privacyType": 1
}

Paragraph types:

TypeFormatDescription
Plain text"string"Simple text paragraph
Rich text[{...}, ...]Array of text items with optional bold, highlight, link
Heading{"type":"heading", "level":1, "text":"..."}h1-h6 heading
Image{"type":"image", "src":"..."}Image (URL, local path, or fileId)
Quote{"type":"blockquote", "text":"..."} or {"type":"quote", "text":"..."}Block quote
Bullet list{"type":"bulletList", "items":["..."]}Unordered list
Ordered list{"type":"orderedList", "items":["..."]}Numbered list
Raw node{"type":"raw", "node":{...}}Direct NoteAtom node passthrough

Privacy types: public = public, private = self-only, rule = custom rules (with noShare/expireAt)

3. Save Input and Run Script

Save the JSON to a temporary file and execute:

python {SKILL_DIR}/scripts/publish_note.py --action create --input /tmp/note_input.json

Or pipe directly via stdin:

echo '<json>' | python {SKILL_DIR}/scripts/publish_note.py --action create

The script outputs a JSON result with noteId on stdout. Save this noteId — it is needed for subsequent edit or settings operations.

4. Report Result

Inform the user of the created note's ID and status (draft vs published).

Editing a Note

⚠️ Limitation: Only notes created via the API can be edited. Notes created in the 墨问 mini-program cannot be edited through this API.

To edit, provide the noteId (from a previous create) and new content:

python {SKILL_DIR}/scripts/publish_note.py --action edit --note-id <NOTE_ID> --input /tmp/note_edit.json

The input JSON format is identical to creation (the paragraphs field). The entire note content will be replaced.

Modifying Note Settings

To change privacy, sharing, or expiration settings:

# Set to private
python {SKILL_DIR}/scripts/publish_note.py --action settings --note-id <NOTE_ID> --privacy private

# Set to public
python {SKILL_DIR}/scripts/publish_note.py --action settings --note-id <NOTE_ID> --privacy public

# Set custom rule: forbid sharing with expiration
python {SKILL_DIR}/scripts/publish_note.py --action settings --note-id <NOTE_ID> --privacy rule --no-share --expire-at 1735689600

Image Handling

The script automatically handles images found in paragraphs:

  • URL images (http:// or https://): Uploaded via remote upload API (< 30MB)
  • Local file paths: Uploaded via local upload API (< 50MB, formats: gif/jpeg/jpg/png/webp)
  • Existing fileId: Passed through directly (no upload needed)

Image upload is automatic — simply include image entries in the paragraphs array and the script handles the rest. Optionally provide width and height for better rendering.

Rate limiting (1 req/sec) is automatically enforced between API calls.

API Reference

For complete API documentation including endpoint details, NoteAtom structure specification, request/response examples, and error codes, refer to:

📄 references/mowen_api.md

Key search patterns for the reference file:

  • ## 1. 笔记创建 — Create endpoint details
  • ## 2. 笔记编辑 — Edit endpoint details
  • ## 3. 笔记设置 — Settings endpoint details
  • ## 4. NoteAtom 结构定义 — Full NoteAtom schema with all node types
  • ## 5. 图片上传 — Image upload (local + remote) procedures
  • ## 7. 限频与配额汇总 — Rate limits and daily quotas

Common Use Cases

Publish a simple text note

{
  "paragraphs": [
    "今天天气真好,适合出门散步 ☀️"
  ],
  "tags": ["日常", "心情"],
  "autoPublish": true
}

Publish a note with images and formatting

{
  "paragraphs": [
    {"type": "heading", "level": 1, "text": "周末探店记录"},
    "今天去了一家超棒的咖啡店!",
    {"type": "image", "src": "https://example.com/coffee.jpg"},
    [{"text": "拿铁", "bold": true}, "味道超赞,推荐指数 ⭐⭐⭐⭐⭐"],
    {"type": "image", "src": "/Users/me/photos/cake.jpg", "width": 1080, "height": 1080},
    {"type": "blockquote", "text": "生活需要一点甜"},
    {"type": "bulletList", "items": ["环境优雅", "咖啡好喝", "甜品精致"]}
  ],
  "tags": ["探店", "咖啡", "美食"],
  "autoPublish": true
}

Edit a previously created note

# Original creation returned noteId = "note_abc123"
python publish_note.py --action edit --note-id note_abc123 --input updated_content.json

Make a note private

python publish_note.py --action settings --note-id note_abc123 --privacy private

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

95.24%
按下载量换算1,483

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills