skills$openclaw/blinko
vellis597.2k

by vellis59

blinko – OpenClaw Skill

blinko is an OpenClaw Skills integration for coding workflows. 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.

7.2k stars9.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameblinko
descriptionManage 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. OpenClaw Skills integration.
ownervellis59
repositoryvellis59/openclaw-skill-blinko
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @vellis59/openclaw-skill-blinko
last updatedFeb 7, 2026

Maintainer

vellis59

vellis59

Maintains blinko in the OpenClaw Skills directory.

View GitHub profile
File Explorer
7 files
.
references
blinko_api.md
456 B
scripts
blinko.py
5.4 KB
_meta.json
287 B
LICENSE.md
1.0 KB
SKILL.md
1.7 KB
SKILL.md

name: blinko description: 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.

Blinko

Use Blinko as the single source of truth for notes.

Setup (one-time)

Env vars (Gateway env is OK):

  • BLINKO_API_KEY (required)
  • BLINKO_BASE_URL (optional; default https://blinko.exemple.com)

Core workflow

1) Create a note

When user says something like:

  • “blinko: …”
  • “note: …”

Create a note with:

  • Markdown body
  • Add tags as hashtags at the end (respect the user’s taxonomy constraints)

2) List/search notes

If the user asks “liste mes notes” or “cherche …”, call the list endpoint and show:

  • id
  • first line/title
  • top tags (if present)

3) Tagging rules (user constraints)

  • Max 7 top-level tags.
  • For each note: choose 1 top-level tag + 0–2 sub-tags max.
  • Sub-tag syntax: #Tech/dev.

4) Destructive actions (delete/purge)

Always confirm explicitly ("OK vas-y") before:

  • deleting notes
  • deleting tags

Use the helper script for batch operations.

Helper script

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

Reference

See references/blinko_api.md for endpoint cheat sheet.

Github

https://github.com/Vellis59/openclaw-skill-blinko

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install blinko?

Run openclaw add @vellis59/openclaw-skill-blinko in your terminal. This installs blinko into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/vellis59/openclaw-skill-blinko. Review commits and README documentation before installing.