skills$openclaw/evernote
mrgoodb6.8k

by mrgoodb

evernote – OpenClaw Skill

evernote is an OpenClaw Skills integration for coding workflows. Manage notes, notebooks, and tags via Evernote API. Create, search, and organize notes programmatically.

6.8k stars9.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameevernote
descriptionManage notes, notebooks, and tags via Evernote API. Create, search, and organize notes programmatically. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/evernote
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/evernote
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains evernote in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
269 B
SKILL.md
908 B
SKILL.md

name: evernote description: Manage notes, notebooks, and tags via Evernote API. Create, search, and organize notes programmatically. metadata: {"clawdbot":{"emoji":"🐘","requires":{"env":["EVERNOTE_ACCESS_TOKEN"]}}}

Evernote

Note-taking and organization.

Environment

export EVERNOTE_ACCESS_TOKEN="xxxxxxxxxx"
export EVERNOTE_BASE="https://www.evernote.com/shard/s1/notestore"

List Notebooks

curl "$EVERNOTE_BASE/listNotebooks" -H "Authorization: Bearer $EVERNOTE_ACCESS_TOKEN"
curl -X POST "$EVERNOTE_BASE/createNote" \
  -H "Authorization: Bearer $EVERNOTE_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"title": "New Note", "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?><!DOCTYPE en-note SYSTEM \"http://xml.evernote.com/pub/enml2.dtd\"><en-note>Hello World</en-note>"}'
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install evernote?

Run openclaw add @mrgoodb/evernote in your terminal. This installs evernote into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/evernote. Review commits and README documentation before installing.