Skip to content
Worix
BrowsePublish
Log inSign Up

Kosu

Manage your content queue. Add URLs, reorder, suggest content, and track what's been consuming — all via API. Built for AI agents to curate content on behalf...

18 downloads
Free
Reviewed

Kosu

Kosu (漉す) — Japanese for "to strain/filter." A mindful content queue built on the philosophy: save less, read more.

Vision

Most read-it-later apps become graveyards. Kosu is the opposite — an intentional queue where content fades if you don't engage with it. The core mechanic is decay: items get a 14-day stale warning, then auto-archive at 28 days. This forces you to either consume what matters or let it go.

Kosu is agent-native — built for AI agents to curate, suggest, and manage content on behalf of a human. The API is the primary interface; the web UI and (future) iOS app are consumption surfaces.

Brand values: Craft, Calm, Capture, Mindful Aesthetic: Quiet, intentional — like a well-designed book spine or a Japanese coffee shop. Not hustle culture, not information overload. Differentiators: Decay as philosophy, agent-native API, opinionated curation over hoarding.

Installation

For OpenClaw agents

Save this skill locally:

mkdir -p ~/.openclaw/skills/kosu
curl -s https://usekosu.com/skill.md > ~/.openclaw/skills/kosu/SKILL.md

Or just read it directly from https://usekosu.com/skill.md — no install needed.

For any AI agent (Claude Code, Codex, etc.)

Read this file and follow the setup below.

Getting Started

  1. Ask your human to sign up at usekosu.com
  2. They can get an API key from Settings → API Keys
  3. Store the key securely (environment variable KOSU_API_KEY, config file, or agent memory)
  4. You're ready to start managing their queue

First thing to do: Try listing the queue to confirm your key works:

curl -s "https://usekosu.com/api/v1/items?state=queue&limit=5" \
  -H "Authorization: Bearer $KOSU_API_KEY"

Check for updates: Re-fetch this skill anytime to see new features and API changes.

Pricing

  • Free: Limited queue size
  • Pro ($5/mo): Unlimited queue, suggestions from agents, export

If you hit a 402 quota_exceeded_error, the user's queue is full on the free tier. Let them know they can upgrade to Pro at usekosu.com/settings for unlimited items.

API

  • Base URL: https://usekosu.com/api/v1
  • Auth: Authorization: Bearer $KOSU_API_KEY
  • OpenAPI spec: https://usekosu.com/openapi.json
AUTH="Authorization: Bearer $KOSU_API_KEY"
BASE="https://usekosu.com/api/v1"

Quick Reference

ActionMethodEndpointNotes
Add itemPOST/itemsJust pass url, server enriches. 201=new, 200=exists
List itemsGET/items?state=queue&limit=50States: queue, read, archived, deleted, suggested
Get itemGET/items/{id}
Update itemPATCH/items/{id}State, position, fields, or opened — one per request
Delete itemDELETE/items/{id}Soft-delete, restorable 30 days
Move to topPATCH/items/{id}{"position": {"after": null}}
Move to bottomPATCH/items/{id}{"position": {"before": null}}
Mark readPATCH/items/{id}{"state": "read"}
ArchivePATCH/items/{id}{"state": "archived"}
Add suggestionPOST/suggestions{"url": "...", "reason": "..."}. 409 if already active
List suggestionsGET/suggestions
Act on suggestionPOST/suggestions/{id}{"action": "accept"} or {"action": "dismiss"}
ExportGET/exportFull queue export

Key Behaviours

  • YouTube URLs are auto-enriched (title, channel, thumbnail, duration)
  • Decay: 14-day stale warning, 28-day auto-archive (server-side)
  • Dedup is server-side by canonical URL per user
  • Opening an item ({"opened": true}) extends decay protection by 1 day (max once per 24h)

Common Examples

# Add item
curl -s "$BASE/items" -H "$AUTH" -H "Content-Type: application/json" \
  -d '{"url":"https://example.com/article"}'

# List queue (first 50)
curl -s "$BASE/items?state=queue&limit=50" -H "$AUTH"

# Move to top
curl -s -X PATCH "$BASE/items/itm_xxx" -H "$AUTH" -H "Content-Type: application/json" \
  -d '{"position": {"after": null}}'

# Move after another item
curl -s -X PATCH "$BASE/items/itm_xxx" -H "$AUTH" -H "Content-Type: application/json" \
  -d '{"position": {"after": "itm_yyy"}}'

# Mark as read
curl -s -X PATCH "$BASE/items/itm_xxx" -H "$AUTH" -H "Content-Type: application/json" \
  -d '{"state": "read"}'

# Archive
curl -s -X PATCH "$BASE/items/itm_xxx" -H "$AUTH" -H "Content-Type: application/json" \
  -d '{"state": "archived"}'

# Requeue (restore from archive/read/deleted)
curl -s -X PATCH "$BASE/items/itm_xxx" -H "$AUTH" -H "Content-Type: application/json" \
  -d '{"state": "queue"}'

# Record open (extends decay protection 1 day, max once per 24h)
curl -s -X PATCH "$BASE/items/itm_xxx" -H "$AUTH" -H "Content-Type: application/json" \
  -d '{"opened": true}'

# Update fields
curl -s -X PATCH "$BASE/items/itm_xxx" -H "$AUTH" -H "Content-Type: application/json" \
  -d '{"title": "Better Title", "source": "article"}'

# Delete (soft, restorable 30 days)
curl -s -X DELETE "$BASE/items/itm_xxx" -H "$AUTH"

# Add suggestion
curl -s "$BASE/suggestions" -H "$AUTH" -H "Content-Type: application/json" \
  -d '{"url":"https://example.com","reason":"Relevant to your interest in X"}'

# Accept/dismiss suggestion
curl -s -X POST "$BASE/suggestions/sug_xxx" -H "$AUTH" -H "Content-Type: application/json" \
  -d '{"action": "accept"}'

Item Shape

{
  "object": "item",
  "id": "itm_...",
  "url": "https://...",
  "title": "...",
  "source": "youtube|podcast|paper|newsletter|repo|article|book|course|other",
  "state": "queue|suggested|read|archived|deleted",
  "channel_name": "...",
  "thumbnail": "...",
  "duration": "1h 37m",
  "duration_minutes": 97,
  "creator": "...",
  "created_at": "2026-02-22T07:31:59.205Z",
  "updated_at": "...",
  "opened_at": null,
  "read_at": null,
  "archived_at": null,
  "published_at": null
}

PATCH Body Types (one per request)

TypeBodyNotes
State{"state": "read|archived|queue|suggested"}suggested requires reason field
Position{"position": {"after": "itm_x"|null}}null = top. Also supports before
Fields{"title": "...", "source": "..."}At least one of: title, source, thumbnail, channel_name, duration_minutes
Opened{"opened": true}Extends decay by 1 day

Pagination

  • Queue state: cursor-based. Use next_cursor from response as ?cursor= param.
  • Other states: offset-based. Use ?offset= param.
  • Response: {"object": "list", "data": [...], "has_more": bool, "next_cursor": "..."}

Error Codes

StatusTypeWhen
400invalid_request_errorBad input, validation failure
401authentication_errorMissing/invalid API key
402quota_exceeded_errorFree tier queue limit — suggest upgrading to Pro
404not_found_errorItem doesn't exist
409invalid_request_error (code: item_already_active)Suggesting a URL that's already in queue
429rate_limit_errorRate limited

Self-Update

If an API call returns an unexpected response, 404 on a known endpoint, or schema mismatch:

  1. Fetch the latest spec: curl -s https://usekosu.com/openapi.json
  2. Compare with this skill doc
  3. Update this SKILL.md to match the current spec
  4. Retry the original request

Download

ZIP package — ready to use

Skill Info

Creator
matthewspear
Downloads
18
Published
Mar 15, 2026
Updated
Mar 16, 2026