No description
Find a file
2026-02-03 22:32:15 +08:00
.gitignore fix: add gitignore and remove node_modules 2026-02-03 17:17:12 +08:00
index.js feat: add natural language todo creation and time parsing 2026-02-03 22:32:15 +08:00
package-lock.json feat: add natural language todo creation and time parsing 2026-02-03 22:32:15 +08:00
README.md docs: add README.md 2026-02-03 18:07:02 +08:00
skill.json feat: init blinko skill with todo management 2026-02-03 17:15:00 +08:00
SKILL.md feat: add natural language todo creation and time parsing 2026-02-03 22:32:15 +08:00

Blinko Skill for OpenClaw

This is an OpenClaw skill that integrates with Blinko, an open-source personal AI note tool.

It allows your AI agent to:

  • Create todos and notes (with natural language time parsing).
  • Search for notes.
  • Mark todos as completed (archive).
  • Generate daily/weekly reports via Cron jobs.

Installation

Clone this repository into your OpenClaw skills directory:

cd ~/.openclaw/workspace/skills
git clone ssh://git@git.sootflix.co:222/Surile/blinko-skill.git blinko
cd blinko
npm install

Configuration

Create a config.json file in the skill directory:

{
  "blinko": {
    "baseUrl": "https://your-blinko-instance.com",
    "token": "your-api-token"
  }
}

Note: config.json is git-ignored for security.

Usage

See SKILL.md for detailed tool definitions and usage examples for the AI agent.

Features

  • Smart Time Parsing: "Remind me tomorrow at 3pm" -> converts to correct UTC ISO timestamp.
  • Auto Reporting: Can be scheduled to run daily or weekly briefings via OpenClaw Cron.