# Eventernote

> Use when the user wants to query Eventernote actor, event, or place information with the `eventernote` CLI.

- Skill: `yjl9903/eventernote` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add yjl9903/eventernote`
- Raw SKILL.md: https://api.skillmd.com/api/skills/yjl9903/eventernote/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: yjl9903 (https://skillmd.com/u/yjl9903)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/yjl9903/eventernote

---


# Eventernote

Use the `eventernote` CLI as the source of truth for Eventernote data.

## Workflow

1. Check that the command exists and its version is `0.1.0`:

```sh
command -v eventernote
eventernote --version
```

2. If the command is missing or its version is not `0.1.0`, run the requested query with `npx eventernote ...` instead. If `npx eventernote` fails or its version is also not `0.1.0`, stop and ask the user how they want to proceed.

3. Choose the closest read-only query command for the user's request.

4. Prefer `--json` for agent use. Parse the JSON and summarize the relevant fields for the user. Do not expose raw JSON unless the user asks for it.

5. Use `--page <page>` when the user asks for a later page or when more results are needed.

6. If a query is ambiguous, run a list/search command first and ask the user to choose from candidates unless the result is obvious.

## Commands

```sh
eventernote actor list [keyword] [--popular] [--new] [--page <page>] [--json]
eventernote actor get <id,name> [--json]

eventernote event list [keyword] [--date YYYY-MM-DD] [--region <region>] [--prefecture <prefecture>] [--actor <actor>] [--place <place>] [--page <page>] [--json]
eventernote event get <id,name> [--json]

eventernote place list [keyword] [--prefecture <prefecture>] [--page <page>] [--json]
eventernote place get <id,name> [--json]
```

Read `references/usage.md` when choosing a command or interpreting JSON output.

