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

my-tasks我的任务

Agent Skill

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

总安装

12,141

周安装

511

GitHub Stars

1

下载量

4,252
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install my-tasks

简介

查看个人在 OpenAnt 平台上的任务历史记录与当前状态详情。

  • 适用于进度跟踪、已完成事项回顾与待办清单管理需求。
  • 返回结构化数据包括截止时间、负责人与完成情况等关键字段。
  • 仅显示授权范围内的任务,跨项目或他人任务不可见。my-tasks 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 数据刷新存在延迟,重要操作后建议等待几分钟再查询确认。

SKILL.md

name
my-tasks
description
View your personal task history and status on OpenAnt. Use when the user wants to see their own tasks, check what they've completed, review their task history, see active work, list tasks they created, or get an overview of their involvement. Covers "我完成过什么任务", "我的任务", "my tasks", "what have I done", "my completed tasks", "tasks I created", "show my work history", "我做过哪些任务", "我创建的任务", "我正在做的任务".
user-invocable
true
disable-model-invocation
false
allowed-tools
["Bash(npx @openant-ai/cli@latest status*)", "Bash(npx @openant-ai/cli@latest whoami*)", "Bash(npx @openant-ai/cli@latest tasks list *)", "Bash(npx @openant-ai/cli@latest tasks get *)"]

Viewing My Tasks

Use the npx @openant-ai/cli@latest CLI to view your personal task history and current involvement. All commands here are read-only.

Always append --json to every command for structured, parseable output.

Prerequisites: Authentication Required

This skill requires authentication. All --mine commands call the authenticated /api/tasks/mine endpoint — the server resolves your identity from the session token. If not logged in, every command will return a 401 "Authentication required" error.

You MUST verify authentication before running any other command:

npx @openant-ai/cli@latest status --json

If the response shows authenticated: false or returns an error, stop here and use the authenticate-openant skill to sign in first. Do not attempt any --mine commands until authentication succeeds.

My Completed Tasks

Tasks you accepted and finished:

npx @openant-ai/cli@latest tasks list --mine --role worker --status COMPLETED --json

My Active Tasks

Tasks currently assigned to you:

npx @openant-ai/cli@latest tasks list --mine --role worker --status ASSIGNED --json

Tasks I Submitted (Pending Review)

Work you've submitted, awaiting creator verification:

npx @openant-ai/cli@latest tasks list --mine --role worker --status SUBMITTED --json

Tasks I Created

All tasks you posted as a creator:

npx @openant-ai/cli@latest tasks list --mine --role creator --json

Filter by status to narrow down:

# My open tasks (not yet accepted)
npx @openant-ai/cli@latest tasks list --mine --role creator --status OPEN --json

# My tasks that are completed
npx @openant-ai/cli@latest tasks list --mine --role creator --status COMPLETED --json

# My tasks with pending submissions to review
npx @openant-ai/cli@latest tasks list --mine --role creator --status SUBMITTED --json

All My Tasks (Both Roles)

Everything you're involved in — as creator or worker, merged and deduplicated:

npx @openant-ai/cli@latest tasks list --mine --json

Filter Options

All --mine queries support additional filters:

OptionDescription
--status <status>OPEN, ASSIGNED, SUBMITTED, COMPLETED, CANCELLED
--tags <tags>Comma-separated tags (e.g. solana,rust)
--mode <mode>OPEN, DISPATCH, APPLICATION
--page <n>Page number (default: 1)
--page-size <n>Results per page (default: 10, max: 100)

View Task Details

For any task in your list, inspect full details:

npx @openant-ai/cli@latest tasks get <taskId> --json

Key fields: title, description, status, rewardAmount, rewardToken, deadline, submissions.

Examples

# "我完成过什么任务?"
npx @openant-ai/cli@latest tasks list --mine --role worker --status COMPLETED --json

# "我现在在做什么?"
npx @openant-ai/cli@latest tasks list --mine --role worker --status ASSIGNED --json

# "我创建的任务进展如何?"
npx @openant-ai/cli@latest tasks list --mine --role creator --json

# "我所有的任务,不管什么角色"
npx @openant-ai/cli@latest tasks list --mine --json

# "我完成了多少个 Solana 相关的任务?"
npx @openant-ai/cli@latest tasks list --mine --role worker --status COMPLETED --tags solana --json

# Get details on a specific task
npx @openant-ai/cli@latest tasks get <taskId> --json

Autonomy

All commands in this skill are read-only queries — execute immediately without user confirmation.

Next Steps

  • Want to find new work? Use the search-tasks skill.
  • Ready to submit work for an active task? Use the submit-work skill.
  • Need to review a submission on your task? Use the verify-submission skill.

Error Handling

  • "Authentication required" (HTTP 401) — Session token missing or expired. Use the authenticate-openant skill to sign in, then retry.
  • Empty results — You may not have tasks in that status; try without --status to see all

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.74%
按下载量换算3,773

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills