Manage Blinko notes via its REST API (create/list/delete notes, manage tags/taxonomy). Use when the user says “blinko …”, wants to capture a note to Blinko, list/search recent notes, retag notes, or do cleanup/organization. Requires BLINKO_API_KEY. Use when this capability is needed.
Use Blinko as the single source of truth for notes.
Env vars (Gateway env is OK):
BLINKO_API_KEY (required)BLINKO_BASE_URL (optional; default https://blinko.exemple.com)When user says something like:
Create a note with:
If the user asks “liste mes notes” or “cherche …”, call the list endpoint and show:
#Tech/dev.Always confirm explicitly ("OK vas-y") before:
Use the helper script for batch operations.
scripts/blinko.py wraps the API.
Examples:
# list
BLINKO_API_KEY=... ./scripts/blinko.py list --page 1 --size 20
# create
BLINKO_API_KEY=... ./scripts/blinko.py create --title "Test" --content "Hello" --tags "#Inbox #Todo/à-faire"
# delete (destructive)
BLINKO_API_KEY=... ./scripts/blinko.py delete --yes 123 124
See references/blinko_api.md for endpoint cheat sheet.