
Monologue Notes
- 116 installs
- 58 repo stars
- Updated August 3, 2026
- everyinc/monologue-toolkit
Helps with productivity & planning tasks.
About
monologue-notes is a Claude Code skill for productivity & planning. It helps solo builders move faster with AI-assisted development.
- monologue-notes
- Productivity & Planning
- AI-coding skill
Monologue Notes by the numbers
- 116 all-time installs (skills.sh)
- Ranked #1,307 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/everyinc/monologue-toolkit --skill monologue-notesAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 116 |
|---|---|
| repo stars | ★ 58 |
| Last updated | August 3, 2026 |
| Repository | everyinc/monologue-toolkit ↗ |
What it does
Helps with productivity & planning tasks.
Files
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 monologue CLI is missing, install it:
curl -fsSL https://raw.githubusercontent.com/EveryInc/monologue-toolkit/main/install.sh | shIf credentials are not configured yet, run onboarding:
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:
monologue onboarding --token "mono_pat_..."Commands
Use the CLI directly:
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
1. If the CLI is missing, install it. 2. If the user is not onboarded yet, run monologue onboarding. 3. Use list to find relevant notes. 4. Use all when the request spans more than one page. 5. Use get NOTE_ID for the full note payload. 6. Use --field transcript or --field summary when only one field is needed.
Response style
- Prefer a short digest over raw JSON when the user asks for recent notes or summaries.
- Keep
note_idinternal unless the user explicitly asks for IDs or a follow-up action needs one. - Surface titles, dates, summaries, and transcript highlights first.
References
- Read
references/api.mdfor the exact published schema. - Read
references/install.mdwhen the CLI is missing or the environment needs setup help.
Guardrails
- This skill is read-only. Do not invent create, update, or delete endpoints.
- Use ISO 8601 timestamps for
created-after,created-before, andupdated-after. - Prefer the CLI over ad hoc
curlso auth, errors, and pagination stay consistent. - Skill installation itself should not be treated as a post-install execution hook. Install the CLI and run onboarding on first use instead.
interface:
display_name: "Monologue Notes"
short_description: "Read Monologue notes and transcripts with a Monologue Notes API token"
default_prompt: "Use the Monologue Notes skill to list notes, fetch transcripts, and summarize note content."
Monologue Public Notes API
Source: https://api.monologue.to/public-openapi.json Fetched: 2026-04-06
Authentication
- Security scheme: HTTP bearer token
- Recommended base URL:
https://api.monologue.to
Header:
Authorization: Bearer YOUR_PERSONAL_API_TOKENEndpoints
GET /v1/public-api/notes
Query parameters:
limitinteger, default20, min1, max100cursorstring, opaque pagination cursorcreated_afterISO 8601 date-timecreated_beforeISO 8601 date-timeupdated_afterISO 8601 date-timeqstring, searches note titles, summaries, and transcripts
Success shape:
{
"items": [
{
"note_id": "string",
"title": "string or null",
"summary": "string or null",
"created_at": "2026-04-06T00:00:00Z",
"updated_at": "2026-04-06T00:00:00Z"
}
],
"next_cursor": "string or null"
}GET /v1/public-api/notes/{note_id}
Returns the full note payload. The public response adds:
transcripttranscript_segments
Notes
- The public Notes API is currently read-only.
- Pagination is cursor based.
transcript_segmentsshould be treated as loosely typed JSON.
Installing and onboarding the Monologue CLI
Preferred
Install from GitHub Releases:
curl -fsSL https://raw.githubusercontent.com/EveryInc/monologue-toolkit/main/install.sh | shAlternative
Install with Go:
go install github.com/EveryInc/monologue-toolkit/cli/cmd/monologue@latestOnboarding
monologue onboardingFor agent-driven or non-interactive setup:
monologue onboarding --token "mono_pat_..."The CLI stores credentials in your user config directory under monologue/config.json.
Environment overrides still work when needed:
export MONOLOGUE_API_TOKEN="mono_pat_..."
export MONOLOGUE_API_BASE_URL="https://api.monologue.to"