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

taskify-clitaskify CLI 搜索

Agent Skill

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

总安装

4,986

周安装

212

GitHub Stars

公开资料未说明

下载量

1,747
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install taskify-cli

简介

通过 CLI 管理 Nostr 中继上的任务和看板,以通过 JSON 支持列出、创建、更新、分配、完成、搜索和导出任务。

SKILL.md

name
taskify-cli
description
Manage tasks, boards, and calendar events via the Taskify CLI (taskify command). Use when: (1) listing, searching, creating, updating, or deleting tasks, (2) marking tasks done or reopening them, (3) managing boards and columns, (4) assigning tasks to users, (5) checking upcoming or overdue tasks, (6) exporting or importing tasks, (7) triage or AI-powered task creation. Taskify stores tasks on Nostr relays — the CLI is the primary interface for agents working with Taskify data.

Taskify CLI

taskify manages tasks and boards stored on Nostr relays. Tasks are identified by 8-char prefix or full UUID.

Installation

Requires Node.js 22+.

Package: taskify-nostr Source: github.com/Solife-me/Taskify_Release Maintainer: Ink-North (@Ink-North)

npm install -g taskify-nostr

Verify the install:

taskify --version

If the global install fails due to permissions, use a local prefix:

npm install --prefix ~/.local -g taskify-nostr
# add ~/.local/bin to PATH if not already there
Before installing, verify the package on npmjs.com/package/taskify-nostr and review the source at the GitHub link above. Prefer user-local install (--prefix ~/.local) over global on shared systems.

First-time setup

Run the onboarding wizard — it generates or imports a Nostr keypair and stores it securely in the local CLI config:

taskify setup

Join a board by its UUID:

taskify board join <board-uuid> --name "My Board"
Private key handling: The CLI manages your Nostr private key internally via taskify setup. This skill does not instruct agents to read, expose, or handle private keys. Do not supply private keys via environment variables on shared or multi-user systems.

Prerequisites (summary)

  • taskify binary on PATH — installed via npm install -g taskify-nostr (see above). This skill provides instructions only; it does not install or bundle the binary.
  • Configured Nostr identity — set up via taskify setup. The npub and hex values used in commands are public keys and are safe to pass as arguments.
  • At least one board joined — via taskify board join <uuid> --name <name>.

Data & credentials

  • Task data is public-key-addressed on Nostr relays — content may be encrypted per board settings. The skill instructs read/write of task events only.
  • taskify agent commands forward task text to an external AI backend — only use if you have configured and trust that backend (taskify agent config). Do not use on boards containing sensitive data unless the backend is self-hosted or trusted.
  • Profile/identity operations (taskify profile, taskify contact) work with public Nostr keys (npub/hex) only — not private keys. The CLI stores private keys locally; this skill never instructs exposing them.
  • Relay managementtaskify relay add/remove modifies which Nostr relays tasks sync to. Only add relays you control or trust.

Quick reference

taskify list [--board <name|id>] [--status open|done|any] [--column <name>] [--json]
taskify add <title> [--board <name>] [--due YYYY-MM-DD] [--priority 1|2|3] [--note <text>] [--column <name>]
taskify show <taskId> [--board <name>] [--json]
taskify update <taskId> --board <name> [--title <t>] [--due <d>] [--priority <p>] [--note <n>] [--column <name>]
taskify done <taskId> [--board <name>]
taskify reopen <taskId> [--board <name>]
taskify delete <taskId> --board <name>
taskify search <query> [--board <name>]
taskify upcoming [--days <n>] [--board <name>]
taskify board list
taskify board columns [<board>]
taskify agent add <natural-language description>   # forwards text to configured AI backend

Key behaviours

  • taskId: accepts 8-char prefix or full UUID.
  • --board flag: required for add, delete, update when multiple boards exist. Optional for list, done, show (scans all if omitted).
  • Incremental sync: list always fetches relay events since the last cursor before returning. Pass --refresh to force a full 30-day re-fetch.
  • --json flag: available on list, show, add, update — output machine-readable JSON.
  • Priority: 1 = low, 2 = medium, 3 = high.

Common agent workflows

Reading tasks

taskify list                          # all open tasks across boards
taskify list --board "Personal"       # one board
taskify list --status done            # completed tasks
taskify upcoming --days 7             # due within 7 days
taskify search "keyword"              # full-text search
taskify show abc12345 --json          # full task details

Creating tasks

taskify add "Write release notes" --board "Work" --due 2026-03-20 --priority 2
taskify agent add "high priority bug fix due Friday"   # AI-parsed (sends text to AI backend)

Updating tasks

taskify update abc12345 --board "Work" --due 2026-03-25 --priority 3
taskify update abc12345 --board "Work" --column "In Progress"
taskify done abc12345
taskify reopen abc12345

Board management

taskify board list                            # show configured boards and IDs
taskify board columns                         # show all columns
taskify board column-add "Work" "Review"
taskify board column-rename "Work" "Review" "QA"

Assigning tasks

taskify assign abc12345 npub1...              # assign to npub (public key — not a secret)
taskify unassign abc12345 npub1...

Output parsing

Use --json whenever the output will be parsed programmatically:

taskify list --json | jq '.[] | {id, title, due: .dueISO, priority}'
taskify show abc12345 --json | jq '{title, note, column}'

Diagnostics

taskify board list         # boards with IDs
taskify relay status       # check relay connectivity
taskify cache clear        # wipe local cache (forces cold re-fetch on next list)

Reference

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

75.2%
按下载量换算1,314

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills