npx skills add https://github.com/everyinc/monologue-toolkit --skill monologue-notesInstale esta skill com a CLI e comece a usar o fluxo de trabalho SKILL.md em seu espaço de trabalho.
monologue-toolkit gives Monologue users two ways to work with their notes outside the app:
monologue, a CLI for the Monologue Notes public APImonologue-notes, an installable agent skill for tools like Codex, Claude Code, and other terminal-capable agentsToday, both are read-only and focused on the public Notes API:
monologue onboarding.monologue notes ....monologue-notes skill too.Before the CLI or skill can access your notes, you need a Monologue Notes API key.
In Monologue, go to the API settings screen and create a new key.
Keep the generated token somewhere safe. You will paste it into the CLI during onboarding.
Once the repo has a tagged GitHub release, the easiest install path is:
curl -fsSL https://raw.githubusercontent.com/EveryInc/monologue-toolkit/main/install.sh | sh
Install to a custom location:
curl -fsSL https://raw.githubusercontent.com/EveryInc/monologue-toolkit/main/install.sh | sh -s -- --install-dir /usr/local/bin
Install a specific version:
curl -fsSL https://raw.githubusercontent.com/EveryInc/monologue-toolkit/main/install.sh | sh -s -- --version v0.1.0
Once the repo has a tagged GitHub release:
irm https://raw.githubusercontent.com/EveryInc/monologue-toolkit/main/install.ps1 | iex
If you already have Go installed, you can still use:
go install github.com/EveryInc/monologue-toolkit/cli/cmd/monologue@latest
If you use go install, make sure your Go bin directory is on PATH:
export PATH="$PATH:$(go env GOPATH)/bin"
The no-Go install scripts rely on GitHub Releases. Until the first release is published, use go install or build from source.
Once monologue is installed, run:
monologue onboarding
The CLI will:
You can also pass the token directly:
monologue onboarding --token "mono_pat_..."
After onboarding, test it with:
monologue notes list --limit 5
monologue version
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_ID
monologue notes get NOTE_ID --field transcript
Use monologue --help and monologue notes --help for the full command list.
If you installed with the shell or PowerShell installer, rerun the same install command to get the latest release.
If you installed with Go, rerun:
go install github.com/EveryInc/monologue-toolkit/cli/cmd/monologue@latest
Check the installed version with:
monologue version
The easiest skills.sh install path is:
npx skills add https://github.com/EveryInc/monologue-toolkit --skill monologue-notes -g -y
That installs the skill globally for supported agents.
After installing the skill:
monologue CLI is already installed.monologue onboarding once.Prompt your agent naturally:
Use the Skills CLI:
npx skills check
npx skills update
monologue-toolkit/
├── cli/ # Go source for the monologue CLI
└── skills/monologue-notes/ # installable skill package
This repo now includes:
.github/workflows/ci.yml for tests.github/workflows/release.yml for tagged releases.goreleaser.yaml for cross-platform CLI binariesinstall.sh and install.ps1 for no-Go installsTo publish a release:
v0.1.0.After that, the no-Go install commands above will work for end users.