6.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
| name | evernote |
| description | Manage notes, notebooks, and tags via Evernote API. Create, search, and organize notes programmatically. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/evernote |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/evernote |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
269 BSKILL.md
908 BSKILL.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"
Create Note
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>"}'
Links
- Docs: https://dev.evernote.com
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.
