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

weekoweeko 命令行

Agent Skill

weeko 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,563

周安装

194

GitHub Stars

公开资料未说明

下载量

1,599
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install weeko

简介

用于书签管理的 Weeko CLI 命令。搜索、添加、更新、删除书签。创建和组织小组。批量操作。

SKILL.md

name
weeko
description
Weeko CLI commands for bookmark management. Search, add, update, delete bookmarks. Create and organize groups. Batch operations.
metadata
author
occupy5
homepage
https://weeko.blog
version
1.4.0

Weeko CLI Assistant

Expert guidance for interacting with the Weeko CLI - a Bun-powered, AI-native CLI for managing your Weeko bookmarks and groups.

Overview

The Weeko CLI provides command-line access to your Weeko bookmark manager with AI-friendly output formats. All commands support:

  • Output formats: json (default) or toon (AI-optimized via --format toon) or pretty (formatted tables)
  • Dry-run mode: Test commands safely with --dry-run
  • Schema validation: All API responses validated with Zod schemas

Requirements & Installation

Prerequisites

Installation

Install from npm (recommended)

bun install -g weeko-cli

Verify installation:

weeko --version

Quick Start

# Authentication
weeko login [api-key]         # Login with API key
weeko whoami                  # Show current user
weeko logout                  # Remove credentials

# Get context about the account
weeko status                  # Account overview (alias: context)
weeko tree                    # Show all groups (alias: structure)

# Search and manage bookmarks
weeko search "query"          # Search bookmarks
weeko add <url>               # Add new bookmark
weeko get <id>                # Get bookmark details
weeko update <id>             # Update bookmark
weeko delete <id>             # Delete bookmark
weeko list                    # List all bookmarks

# Manage groups
weeko group list              # List groups
weeko group create "Name"     # Create group
weeko group update <id>       # Update group
weeko group delete <id>       # Delete group

# Batch operations
weeko batch move --ids "1,2,3" --group <id>    # Move bookmarks
weeko batch delete --ids "1,2,3"               # Delete bookmarks

Authentication & Setup

Login

weeko login                   # Interactive prompt
weeko login "wk_xxx"          # Provide key directly

Getting an API key:

  1. Visit https://weeko.blog/zh/dashboard
  2. Generate a new API key
  3. Copy the key (starts with wk_)

Check Current User

weeko whoami                  # Returns user ID, name, email

Account Overview

weeko status                  # High-level overview:
                              # - User details
                              # - Bookmark stats (total, links, colors, text, public)
                              # - Group count
                              # - Recent groups

weeko tree                    # All groups with IDs, names, and bookmark counts

Working with Bookmarks

List Bookmarks

weeko list                    # List all bookmarks
weeko list -g <groupId>       # Filter by group ID
weeko list --pretty           # Formatted table output

Search Bookmarks

weeko search "query"          # Search by title, URL, or description
weeko search "javascript" --pretty    # Formatted results

Search is performed client-side across bookmark title, URL, and description fields.

Get Bookmark Details

weeko get <id>                # Full bookmark details:
                              # - id, title, url, description
                              # - image, favicon, siteName
                              # - type (link/color/text)
                              # - color, isPublic, groupId
                              # - group info (id, name, color)
                              # - createdAt, updatedAt

Add Bookmarks

weeko add "https://example.com"
weeko add "https://example.com" -t "My Title"
weeko add "https://example.com" -g <groupId>
weeko add "https://example.com" -t "Title" -g <groupId> -d "Description"

If no group is specified with -g, you'll be prompted to select one interactively.

Options:

  • -t, --title <title>: Bookmark title (prompts if not provided)
  • -g, --group <id>: Target group ID
  • -d, --description <desc>: Description

Update Bookmarks

weeko update <id> -t "New Title"
weeko update <id> -u "https://new-url.com"
weeko update <id> -g <newGroupId>
weeko update <id> -d "New description"
weeko update <id> -t "Title" -g <groupId> -d "Desc"

Options:

  • -t, --title <title>: New title
  • -u, --url <url>: New URL
  • -g, --group <id>: Move to different group
  • -d, --description <desc>: New description

All options are optional. Only provided fields will be updated.

Delete Bookmarks

weeko delete <id>             # Deletes after confirmation

Working with Groups

List Groups

weeko group list              # All groups with IDs and counts
weeko group list --pretty     # Formatted table

Get Group Details

weeko group get <id>          # Full group details:
                              # - id, name, color
                              # - isPublic, bookmarkCount
                              # - createdAt, updatedAt

Create Groups

weeko group create "My Group"
weeko group create "Work" -c "#ef4444"

Options:

  • -c, --color <hex>: Group color in hex format (default: #3b82f6)

Update Groups

weeko group update <id> -n "New Name"
weeko group update <id> -c "#ec4899"
weeko group update <id> -n "Name" -c "#10b981"

Options:

  • -n, --name <name>: New group name
  • -c, --color <hex>: New hex color

Delete Groups

weeko group delete <id>       # Deletes group AND all its bookmarks

Warning: Deleting a group permanently deletes all bookmarks within it.

Batch Operations

Batch Move

weeko batch move --ids "id1,id2,id3" --group <targetGroupId>

Move multiple bookmarks to a different group.

Batch Delete

weeko batch delete --ids "id1,id2,id3"

Delete multiple bookmarks at once.

Output Formats

JSON (Default)

Standard JSON output:

{
  "id": "clx...",
  "title": "Example",
  "url": "https://example.com"
}

TOON (AI-Optimized)

Token-optimized format for AI agents via --format toon:

id\	clx...
title\	Example
url\	https://example.com

Pretty (Formatted Tables)

Human-readable formatted tables via --pretty:

┌────────────┬──────────────────────┬─────────────────────────────┐
│ ID         │ Title                │ URL                         │
├────────────┼──────────────────────┼─────────────────────────────┤
│ clx...     │ Example              │ https://example.com         │
└────────────┴──────────────────────┴─────────────────────────────┘
(1 bookmarks)

Global Options

All commands support:

--dry-run                        # Log actions without making API calls
--format toon                    # Output as TOON instead of JSON
-v, --version                    # Show version

Best Practices

  1. Start with context: Run weeko status or weeko tree to understand the account structure
  2. Search before adding: Use weeko search to avoid duplicates
  3. Use dry-run: Test destructive operations with --dry-run first
  4. Use TOON format: Use --format toon for AI-optimized token-efficient output
  5. Batch when possible: Use batch move and batch delete for bulk operations

Error Handling

The CLI provides helpful error messages with hints:

  • 401 Unauthorized: Run weeko login to authenticate
  • 404 Not Found: Verify the ID is correct
  • 429 Rate Limited: Wait a few minutes before retrying
  • 500 Server Error: The Weeko server is experiencing issues

All errors include:

  • Error message
  • HTTP status code
  • Hint for resolution (when available)

Examples

Daily Workflow

# Check account status
weeko status

# See group structure
weeko tree

# Add a new bookmark
weeko add "https://example.com/article" -g <groupId> -t "Great Article"

# Search for existing bookmarks
weeko search "javascript" --pretty

# Move bookmarks between groups
weeko batch move --ids "id1,id2" --group <newGroupId>

Clean Up Workflow

# Review all bookmarks
weeko list --pretty

# Search for specific items
weeko search "example.com"

# Delete unwanted bookmarks
weeko delete <id>

# Check group sizes before cleanup
weeko group list --pretty

Content Curation

# Create a new group
weeko group create "AI Resources" -c "#8b5cf6"

# Add bookmarks to the new group
weeko add "https://arxiv.org" -g <newGroupId> -t "arXiv"
weeko add "https://paperswithcode.com" -g <newGroupId> -t "Papers With Code"

# List group contents
weeko list -g <newGroupId> --pretty

Resources

See references/commands.md for detailed command reference, architecture info, and output format specifications.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

85.25%
按下载量换算1,363

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills