Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

kosukosu 效率

Agent Skill

kosu 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,473

周安装

321

GitHub Stars

公开资料未说明

下载量

2,619
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:kosu(kosu 效率)
来源仓库:https://github.com/matthewspear/kosu
安装命令:
openclaw skills install kosu
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install kosu

简介

kosu 通过 API 管理内容队列,支持添加、排序与跟踪 Kosu 平台上的待办事项或知识库条目。

  • 适合团队协作场景下统一信息流转与优先级调度。
  • 可与 Notion、Slack 等工具集成实现自动化工作流。
  • 操作日志完整可追溯,但需妥善保管 API 密钥以防未授权访问。
  • kosu 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
Kosu
version
1.1.0
description
Add, reorder, and manage content in a Kosu queue via API. Use when adding URLs, checking what's queued, suggesting content, reordering items, or tracking what's been read.
homepage
https://usekosu.com
metadata
{"openclaw": {"emoji": "💧", "api_base": "https://usekosu.com/api/v1", "homepage": "https://usekosu.com", "primaryEnv": "KOSU_API_KEY"}}

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 as the environment variable KOSU_API_KEY

- Create a dedicated key with minimal scope for this agent - The key is only sent to usekosu.com — never send it to any other domain - Rotate or revoke from Settings if anything unexpected happens

  1. 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"

Updates: If something doesn't work as expected, check the OpenAPI spec for the latest API surface.

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

If KOSU_API_KEY is not set: Don't fail silently. Tell your human they need an API key and direct them to usekosu.com/settings to create one. The skill is still useful for explaining Kosu and guiding setup — just can't make API calls without a key.

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: configurable queue decay (7, 14, or 28 days) before items are auto-archived. Can be turned off entirely. Set by the user in settings.
  • 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

Troubleshooting

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

  1. Check the OpenAPI spec for the current API surface: curl -s https://usekosu.com/openapi.json
  2. Compare with the endpoints documented above
  3. If the spec has changed, update your local copy of this skill to match
  4. Retry the original request

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

80.73%
按下载量换算2,114

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills