โ† All skills
Tencent SkillHub ยท Developer Tools

joplin

Interact with Joplin notes via CLI. Use for reading, creating, editing notes and managing todos. Supports WebDAV sync and kanban-formatted notes.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Interact with Joplin notes via CLI. Use for reading, creating, editing notes and managing todos. Supports WebDAV sync and kanban-formatted notes.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.3.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 22 sections Open source page

Joplin CLI Skill

Use joplin CLI to interact with Joplin notes.

โš ๏ธ Important: Use CLI, Not SQL

Always use the joplin CLI for editing notes. Do not modify the SQLite database directly unless absolutely necessary. Direct database edits 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

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 <note-id> # Display note content joplin cat "Note Title" # Also works with title joplin note <note-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: Always 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 <note-id> # Edit note in editor joplin set <note-id> title "New title" # Change note title

Delete Note

joplin rmnote <note-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 <note-id> # Toggle todo status joplin done <note-id> # Mark as done joplin undone <note-id> # Mark as not done

Sync

joplin sync # Sync with WebDAV server

Export

joplin export <note-id> --format md joplin export <note-id> --format html joplin export <note-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 and pipe to grep 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 :)

CommandDescription:syncSync with WebDAV server:quit or :qExit Joplin:helpShow help:open <note-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 <note-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 1. **Always include the kanban-settings block** at the end of the note with the exact format: # Do not remove this block 2. **Use `##` for task headings** (not `#`) 3. **Keep column headings** as `# Backlog`, `# In progress`, `# Done` 4. **Preserve blank lines** between tasks โ€” these are visible in the kanban view 5. **After editing a kanban note, always run `joplin sync`** to upload changes 6. **Verify changes with `joplin cat <note-id>`** to ensure formatting is correct ### Moving Tasks Between Columns When moving a task, simply move the `##` task section from one column to another.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc