monologue-notes
Original:🇺🇸 English
Translated
Use when you need to read Monologue notes through the public API, search and list a user's notes, fetch a specific note, paginate through all notes, or pull transcripts and summaries with a Monologue Notes API token.
5installs
Added on
NPX Install
npx skill4agent add everyinc/monologue-toolkit monologue-notesTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Monologue Notes
Use this skill when an agent needs read-only access to Monologue Notes through the public API.
The current public surface is:
GET /v1/public-api/notesGET /v1/public-api/notes/{note_id}
This skill is intentionally shell-first so it works across agents that can run terminal commands, including Codex and Claude Code.
Setup
If the CLI is missing, install it:
monologuebash
curl -fsSL https://raw.githubusercontent.com/EveryInc/monologue-toolkit/main/install.sh | shIf credentials are not configured yet, run onboarding:
bash
monologue onboardingDuring onboarding, ask the user to create a Monologue Notes API token in the Monologue app and paste it into the terminal. The CLI saves it for future use.
For a non-interactive agent flow, the agent can ask the user for the token in chat and then run:
bash
monologue onboarding --token "mono_pat_..."Commands
Use the CLI directly:
bash
monologue notes list --limit 10
monologue notes list --q "customer interview"
monologue notes all --updated-after 2026-01-01T00:00:00Z
monologue notes get note_123
monologue notes get note_123 --field transcriptWorkflow
- If the CLI is missing, install it.
- If the user is not onboarded yet, run .
monologue onboarding - Use to find relevant notes.
list - Use when the request spans more than one page.
all - Use for the full note payload.
get NOTE_ID - Use or
--field transcriptwhen only one field is needed.--field summary
Response style
- Prefer a short digest over raw JSON when the user asks for recent notes or summaries.
- Keep internal unless the user explicitly asks for IDs or a follow-up action needs one.
note_id - Surface titles, dates, summaries, and transcript highlights first.
References
- Read for the exact published schema.
references/api.md - Read when the CLI is missing or the environment needs setup help.
references/install.md
Guardrails
- This skill is read-only. Do not invent create, update, or delete endpoints.
- Use ISO 8601 timestamps for ,
created-after, andcreated-before.updated-after - Prefer the CLI over ad hoc so auth, errors, and pagination stay consistent.
curl - Skill installation itself should not be treated as a post-install execution hook. Install the CLI and run onboarding on first use instead.