AI Agent Hub
Back to skills
Evernote Official Assistant icon

Evernote Official Assistant

Knowledge Management Updated 2026.08.30

Paste the following prompt into your AI chat to install this skill:

Please install @yinxiang/yinxiangskill according to https://skillhub.cn/install/skillhub.md.

About this skill

The problem

In engineering workflows, Evernote is often used to capture documents, clips, tags, and notebooks. When an AI agent operates it, three failure modes are common: local files or mock data replace real API results; guessed tokens make authorization unreliable; and destructive operations such as updates, moves, or tag changes are batched without confirmation. Search, list, and detail output can also leak raw fields or body text.

How it works

This skill treats Evernote as a remote API surface. It detects bash/zsh versus PowerShell, loads the saved token, and stops for authorization if the token is missing. Each supported action maps to an API operation: create note, update note, move note, change tags, web clip, create notebook, create tag, search notes, list notes/notebooks/tags, and fetch note detail. Batch tasks are split into atomic operations and executed in dependency order. When targets must be inferred from search or list output, the skill asks for confirmation before modifying them.

Field rules are strict. Tag updates send the final full tagNames list; clearing tags requires clearTags:true; replacing note content requires explicit confirmation. Search uses creation-time filters with startTime and endTime as UTC milliseconds. User-facing replies summarize results in natural language instead of exposing raw JSON, code, status, or message fields.

Boundaries

It is suitable for real Evernote knowledge management and automated note workflows. It is not suitable for unsupported actions such as querying by update time, bulk deletion, or export. For any unconfirmed search, list, move, or tag change, confirmation should happen before execution.

Use Cases

  • Turn scattered conclusions, links, and to-dos into one searchable Markdown note while writing a brief
  • Clip a technical article URL into a specified notebook for later notebook-level review
  • Search notes created in the last three days by keyword and review IDs and titles only
  • Tidy old notes by searching candidates first, then moving them or applying a full tag list

Best For

  • Engineers maintaining a personal knowledge base and organizing clips into notebooks
  • Tech leads capturing project docs and locating historical notes by keyword or time
  • Product managers storing research URLs and conclusions in one project notebook
  • Mobile developers using AI to batch-organize notes with confirmation before tag changes