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

joplin-notes-pro乔普林笔记专业版

Agent Skill

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

总安装

4,029

周安装

163

GitHub Stars

公开资料未说明

下载量

1,265
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:joplin-notes-pro(乔普林笔记专业版)
来源仓库:https://github.com/joergbot-cloud/joplin-notes-pro
安装命令:
openclaw skills install joplin-notes-pro
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install joplin-notes-pro

简介

乔普林笔记专业版提供 CLI 工具集,支持笔记创建、编辑、同步全流程自动化。

  • 适合高级用户或开发者集成到工作流中使用。
  • 包含模板系统和脚本包装器,提升批量处理效率。
  • 使用前需熟悉命令行操作和 Joplin 插件生态。
  • 建议先在测试环境验证脚本兼容性。joplin-notes-pro 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
joplin-notes-pro
description
Comprehensive Joplin notes management via CLI with wrapper scripts, templates, and automation. Use when creating, reading, editing, syncing, or organizing notes in Joplin. Includes daily journals, meeting notes, quick notes, and integration with other skills. Triggers on keywords like "joplin", "note", "notiz", "journal", "meeting notes", "daily journal", "notes verwalten".
emoji
📝

Joplin CLI Skill

Comprehensive Joplin notes management with wrapper scripts, templates, and automation workflows.

Features

  • Full Joplin CLI Integration – Direct access to all Joplin commands
  • Wrapper Scripts – Pre-built scripts for common workflows
  • Templates – Daily journals, meeting notes, project updates
  • Error Handling – Robust installation and configuration checks
  • Multi-language – German and English support
  • Integration Ready – Works with Gmail, Calendar, Web Fetch skills

Prerequisites

  1. Joplin CLI installed globally:
   npm install -g joplin
  1. Joplin configured (optional but recommended for sync):
   joplin config sync.target 10  # Joplin Cloud
   joplin config sync.10.username your-email@example.com
   joplin config sync.10.password your-password

Quick Start

1. Check Joplin Installation

./scripts/joplin-check.sh health

2. Create a Quick Note

./scripts/joplin-quick-note.sh "My First Note" "This is my first note."

3. Create Daily Journal

./scripts/joplin-daily-journal.sh

Available Scripts

ScriptDescriptionUsage
joplin-check.shHealth check and installation verification./joplin-check.sh health
joplin-quick-note.shCreate notes with tags and notebooks./joplin-quick-note.sh "Title" "Content" -t tag1,tag2
joplin-daily-journal.shDaily journal with templates./joplin-daily-journal.sh --template daily
joplin-search-notes.shAdvanced note search with filters./joplin-search-notes.sh "query" -t tag -f json
joplin-meeting-notes.shMeeting notes with templates./joplin-meeting-notes.sh "Meeting" -a "Alice,Bob"
joplin-integration-starter.shSetup integrations with other skills./joplin-integration-starter.sh --list
joplin-export-backup.shBackup all notes*In development*
joplin-meeting-notes.shMeeting notes template*Coming soon*

Joplin CLI Quick Reference

Basic Commands

CommandDescription
joplinStart interactive REPL
lsList notes and notebooks
ls <notebook>List notes in a notebook
cat <note>Show note content
mknote <title>Create new note
mkbook <name>Create new notebook
edit <note>Open note in $EDITOR
rmnote <note>Delete a note
rmbook <notebook>Delete a notebook
mv <note> <notebook>Move note to notebook
cp <note> <notebook>Copy note to notebook
ren <item> <new-name>Rename note or notebook

Tag Management

CommandDescription
tagList all tags
tag <tag> <note>Add tag to note
tag --remove <tag> <note>Remove tag

Sync & Status

CommandDescription
syncSync with Joplin Cloud/server
todoList all to-dos
mktodo <title>Create a to-do item
done <todo>Mark to-do as done
undone <todo>Mark to-do as not done
statusShow sync status
configShow/change configuration

Import/Export

CommandDescription
export <path>Export all notes
import <path>Import notes
versionShow Joplin version

Workflow Examples

Daily Journal Routine

# Create today's journal
./scripts/joplin-daily-journal.sh

# Review yesterday's journal
joplin cat "Journal $(date -d 'yesterday' +'%Y-%m-%d')"

# Sync to cloud
joplin sync

Advanced Search

# Search notes with filters
./scripts/joplin-search-notes.sh "project meeting" -t work -n Projects

# Export search results to JSON
./scripts/joplin-search-notes.sh "important OR urgent" -f json -o results.json

# Search with date filters
./scripts/joplin-search-notes.sh "updated:2026-03" -s created -r

Automated Backups

# Daily backup with encryption
./scripts/joplin-export-backup.sh --sync-first --encrypt --password "secret"

# Test backup without actually exporting
./scripts/joplin-export-backup.sh --test

# Backup to specific directory
./scripts/joplin-export-backup.sh /mnt/backup/joplin --keep-days 7

Meeting Notes

# Create meeting notes with template
./scripts/joplin-daily-journal.sh --template meeting --title "Team Meeting"

# Add action items
joplin edit "Team Meeting"

Quick Capture

# Quick note with tags
./scripts/joplin-quick-note.sh "Project Idea" "Build a new dashboard" -t "ideas,projects"

# From stdin
echo "Remember to call client" | ./scripts/joplin-quick-note.sh "Reminder"

Integration with Other Skills

Gmail → Joplin

# Save important emails as notes
# (Combine with gog skill)

Calendar → Joplin

# Create notes from calendar events
# (Combine with gog calendar skill)

Web Fetch → Joplin

# Save web articles as notes
web_fetch --url https://example.com --extract-mode markdown | \
  ./scripts/joplin-quick-note.sh "Web Article" "$(cat -)" "web,research"

Configuration

Environment Variables

export JOPLIN_DEFAULT_NOTEBOOK="Inbox"
export JOPLIN_DEFAULT_TAGS="todo,important"
export JOPLIN_JOURNAL_NOTEBOOK="Journal"
export JOPLIN_JOURNAL_TAGS="journal,daily"
export JOPLIN_DATE_FORMAT="%Y-%m-%d"
export EDITOR="code --wait"

Joplin Configuration for Scripts

# Optimize for CLI usage
joplin config cli.disablePrompts true
joplin config cli.suppressTui true
joplin config editor "$EDITOR"

Troubleshooting

Joplin Not Found

Error: Joplin CLI not found

Solution:

npm install -g joplin

Sync Errors

Error: Sync failed

Solution:

joplin config --list | grep sync
joplin sync --test

Permission Issues

Error: Cannot write to Joplin data directory

Solution:

chmod 755 ~/.config/joplin/

Tips & Best Practices

  1. Always Sync – Run joplin sync after making changes
  2. Use Tags – Tag notes for better organization
  3. Regular Backups – Export notes periodically
  4. Notebook Structure – Organize by project, area, or context
  5. Template Consistency – Use consistent templates for similar notes

References

  • references/joplin-config-example.md – Configuration examples
  • references/common-workflows.md – Common workflows
  • Joplin Documentation – Official docs
  • ClawHub Skills – More skills

Development

Project Structure

joplin-cli/
├── SKILL.md                    # This file
├── README.md                   # ClawHub README
├── package.json                # ClawHub metadata
├── scripts/                    # Wrapper scripts
│   ├── joplin-check.sh        # Health check
│   ├── joplin-quick-note.sh   # Quick notes
│   └── joplin-daily-journal.sh # Daily journals
└── references/                 # Examples & configuration

Adding New Scripts

  1. Create script in scripts/ directory
  2. Include error handling with joplin-check.sh
  3. Document in README.md and SKILL.md
  4. Test with real Joplin installation

License

MIT License – See LICENSE file.


Happy Note-Taking! 📝

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.92%
按下载量换算1,226

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills