← 返回 Skills 市场
davek-dev

Joplin

作者 Dave K · GitHub ↗ · v1.3.6 · MIT-0
cross-platform ✓ 安全检测通过
187
总下载
0
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install joplin-cli-skill
功能描述
Interact with Joplin notes via CLI. Use for reading, creating, editing notes and managing todos. Supports WebDAV sync and kanban-formatted notes.
使用说明 (SKILL.md)

Joplin CLI Skill

Use joplin CLI to interact with Joplin notes.

⚠️ Important: Use CLI, Not SQL

Use the joplin CLI for editing notes. Avoid modifying the SQLite database directly - it can cause sync conflicts and data loss.

Setup

If Joplin is not configured with WebDAV, configure it:

joplin config sync.target 6
joplin config sync.6.path "https://your-webdav-server/path"
joplin config sync.6.username "your-username"
joplin config sync.6.password "your-password"
joplin sync

Common Commands

List Notebooks and Notes

joplin ls                          # List notebooks
joplin ls "Notebook Name"          # List notes in a notebook
joplin status                      # Show sync status and note counts
joplin ls -l                       # List with IDs

Read Note

joplin cat \x3Cnote-id>               # Display note content
joplin cat "Note Title"            # Also works with title
joplin note \x3Cnote-id>              # Open note in editor

Create Note

joplin mknote "Note Title"         # Create note in default notebook
joplin mknote "Note Title" --notebook "Notebook Name"
joplin mkbook "New Notebook"       # Create new notebook

Tip: Ask the user which notebook to use. Use:

  • joplin use — shows current notebook
  • joplin use "Notebook Name" — switch to a notebook
  • joplin ls — see all notebooks

Edit Note

joplin edit --note \x3Cnote-id>       # Edit note in editor
joplin set \x3Cnote-id> title "New title"  # Change note title

Delete Note

joplin rmnote \x3Cnote-id>            # Delete note
joplin rmbook "Notebook Name"      # Delete notebook

Move Notes Between Notebooks

joplin mv "Note Title" "Target Notebook"

Todos

joplin todos                       # List all todos
joplin todo \x3Cnote-id>              # Toggle todo status
joplin done \x3Cnote-id>              # Mark as done
joplin undone \x3Cnote-id>            # Mark as not done

Sync

joplin sync                        # Sync with WebDAV server

Export

joplin export \x3Cnote-id> --format md
joplin export \x3Cnote-id> --format html
joplin export \x3Cnote-id> --format pdf

Import

joplin import /path/to/note.md --notebook "Notebook Name"

Search

Note: joplin search is only available in GUI mode. Use joplin ls to list notebooks and notes instead.

All Joplin Commands

attach, batch, cat, config, cp, done, e2ee, edit, export, geoloc, help, 
import, ls, mkbook, mknote, mktodo, mv, ren, restore, rmbook, rmnote, 
server, set, share, status, sync, tag, todo, undone, use, version

Referencing Notes and Notebooks

A note or notebook can be referred to by:

  • Title: "Note Title"
  • ID: fe889 (get from joplin ls -l)
  • Shortcuts:
    • $n — Currently selected note
    • $b — Currently selected notebook
    • $c — Currently selected item

Interactive Shell Mode

Joplin can run interactively (like a shell). Start with just joplin:

joplin                          # Start interactive mode

Shell Commands (prefix with :)

Command Description
:sync Sync with WebDAV server
:quit or :q Exit Joplin
:help Show help
:open \x3Cnote-id> Open a note

Shell Mode Shortcuts

  • e — Edit current note
  • i — Insert new note
  • Space — Select item
  • Enter — Open note

Example Workflow

# Create a notebook
joplin mkbook "My notebook"

# Switch to it
joplin use "My notebook"

# Create a note
joplin mknote "My note"

# View notes with IDs
joplin ls -l

# Edit a note's title
joplin set \x3Cnote-id> title "New title"

Kanban Notes (YesYouKan Plugin)

Some notebooks use the YesYouKan kanban plugin for visual kanban boards. These notes have a specific format that must be preserved when editing:

Kanban Format

# Notebook Name

# Backlog

## Task 1

Description here

## Task 2



# In progress

## Another Task

Details



# Done

## Completed Task

Result

```kanban-settings
# Do not remove this block

### ⚠️ Kanban Formatting Rules

The YesYouKan plugin uses a specific format. Key points:

1. **Kanban settings block** - The kanban-settings block at the end of the note is used by the plugin. Its format should be preserved as shown in the example above.

2. **Use `##` for task headings** (not `#`)

3. **Column headings** should use `# Backlog`, `# In progress`, `# Done`

4. **Blank lines** between tasks are visible in the kanban view

5. **After editing a kanban note, run `joplin sync`** to upload changes

6. **Verify changes with `joplin cat \x3Cnote-id>`** to ensure formatting is correct

### Moving Tasks Between Columns

When moving a task, simply move the `##` task section from one column to another.
安全使用建议
This skill is an instruction-only wrapper for the joplin CLI and appears coherent. Before using it, make sure: (1) you have the joplin CLI installed and trust it; (2) you understand the agent will be instructed to run commands that can modify or delete notes (ask for explicit confirmation before destructive actions); (3) if you configure WebDAV, you only use trusted servers because sync will transmit your notes and credentials; and (4) keep backups of your notes before allowing unattended/automated use. If you want stricter safety, require the agent to prompt you before any rm/sync/import/export operations.
功能分析
Type: OpenClaw Skill Name: joplin-cli-skill Version: 1.3.6 The Joplin CLI skill bundle provides standard instructions and command references for managing notes, notebooks, and todos via the official Joplin terminal application. It includes legitimate configuration steps for WebDAV synchronization and specific formatting rules for the YesYouKan plugin, with no evidence of malicious intent, data exfiltration, or unauthorized execution in SKILL.md or _meta.json.
能力评估
Purpose & Capability
Name/description (Joplin CLI) match the SKILL.md contents. All commands and examples are Joplin CLI operations; nothing unrelated (no cloud providers, unrelated services, or extra binaries) is requested.
Instruction Scope
Runtime instructions are limited to using the joplin CLI (list, read, create, edit, delete, sync, export, import, kanban formatting). They don't instruct reading unrelated system files or environment variables. They do show examples configuring WebDAV (URL, username, password) which is expected for sync operations.
Install Mechanism
No install spec and no code files — the skill is instruction-only and does not write or fetch code to disk.
Credentials
The skill declares no required environment variables or credentials. The SKILL.md shows how a user might provide WebDAV credentials to Joplin's config, which is proportional to the sync feature and is not requested by the skill itself.
Persistence & Privilege
always is false and there is no install-time persistence. The skill does not request system-wide privileges or modify other skills' configuration.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install joplin-cli-skill
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /joplin-cli-skill 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.3.6
- Clarified that all interactions must use the `joplin` CLI, not direct SQL or database edits. - Added and expanded setup instructions for WebDAV sync. - Provided comprehensive examples of common Joplin CLI commands for managing notes, notebooks, todos, syncing, importing/exporting, and editing. - Included guidance and formatting rules for notes using the YesYouKan kanban plugin, including how to maintain and move tasks in kanban notes. - Listed available Joplin CLI commands and explained referencing notes/notebooks by title, ID, or shortcut. - Detailed interactive shell mode usage and shortcuts.
v1.3.5
- No changes detected in this release. - Documentation, features, and usage instructions remain unchanged from the previous version.
v1.3.4
- Added a comprehensive SKILL.md with detailed instructions for using the Joplin CLI to manage notes, todos, and kanban boards. - Included important warnings to avoid direct SQLite manipulation and preserve kanban note formatting. - Expanded setup and usage examples for WebDAV sync, shell mode, and exporting/importing notes. - Enumerated all primary Joplin CLI commands with descriptions and usage tips for efficient note management.
元数据
Slug joplin-cli-skill
版本 1.3.6
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 3
常见问题

Joplin 是什么?

Interact with Joplin notes via CLI. Use for reading, creating, editing notes and managing todos. Supports WebDAV sync and kanban-formatted notes. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 187 次。

如何安装 Joplin?

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

Joplin 是免费的吗?

是的,Joplin 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Joplin 支持哪些平台?

Joplin 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Joplin?

由 Dave K(@davek-dev)开发并维护,当前版本 v1.3.6。

💬 留言讨论