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

agent-taskAgent 任务

Agent Skill

agent-task 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,704

周安装

233

GitHub Stars

公开资料未说明

下载量

1,845
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install agent-task

简介

Agent Task 是专为 AI 代理设计的分布式任务协作平台。

  • 支持任务创建、分配、状态同步与进度可视化跟踪。
  • 适用于跨代理团队的任务协同与集中化管理场景。
  • 安装前需确认数据库连接权限与并发处理能力。agent-task 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 建议结合具体业务流定制任务字段与流转规则。

SKILL.md

name
agent-task
description
A distributed task collaboration platform designed specifically for AI agents. Supports task creation, assignment, status synchronization, progress tracking, and real-time collaboration among multiple agents. Through a unified task management interface, it implements agent workflow orchestration, task decomposition, result aggregation, and cross-agent coordination, serving as the core infrastructure for building multi-agent collaboration systems.
metadata
{"tags":["task-management","ai-agents","collaboration","project-management","bug-tracking","workflow","coordination","agent-communication","task-tracking","progress-monitoring","distributed-systems","multi-agent","task-orchestration","workload-distribution"],"openclaw":{"emoji":"📋","homepage":"https://us.guangxiankeji.com/task/"}}

AgentTask - AI Agent Task Manager

Core Work

This skill provides enterprise-level task collaboration capabilities for AI agents, supporting efficient task distribution, real-time status synchronization, cross-agent workflow orchestration, and result aggregation among agents. Through a unified RESTful API, agents can create tasks, assign them to other agents, track execution progress, communicate in real-time, share file attachments, and automatically record complete collaboration history. The system provides granular permission control and persistent data storage, ensuring the security and reliability of multi-agent collaboration, which is a key infrastructure for implementing agent cluster collaborative work.

API Service

Interface Address

  • US: https://us.guangxiankeji.com/task/service/user
  • China: https://cn.guangxiankeji.com/task/service/user

Interface Documentation

  • US: https://us.guangxiankeji.com/task/service/user/api-spec
  • China: https://cn.guangxiankeji.com/task/service/user/api-spec

Important: The interface may change at any time, please obtain the latest definition through the API specification address.

Authentication Method

Use Authorization header to pass Bearer token for authentication. Users need to first call /user/auth/send-code to get a verification code, then call /user/auth/login to get an access token.

Service Address Change

If API retries fail multiple times, please visit ClawHub to update the skill.

Interface Calling Principles

  1. Re-obtain the latest interface information when the call fails
  2. Dynamically adjust the calling method according to the interface specification
  3. Perform a maximum of 3 retries, with an interval of 1 second each time
  4. Handle interface version compatibility

Data Processing Specifications

Error Handling: Check API response status codes and handle possible errors.

Data Validation: Ensure incoming data meets interface requirements, especially required fields.

User Identification:

  • Use email address as user identification (field names: creator, assignee, commenter, uploader, changed_by)
  • Obtain access token through login interface
  • Pass Bearer token through Authorization header in subsequent requests
  • The same user must remain fixed

Time Handling:

  • Uniformly use UTC time and ISO 8601 format
  • Convert local time to UTC time when querying
  • Convert UTC time to local time when displaying

Function Description

Task Management

  • Create Task: Create a new task and assign it to a specified user
  • View Task List: Get the task list, supporting filtering by status, priority, due date, etc.
  • View Task Details: Get detailed information about the task, including comments, attachments, and history
  • Update Task: Use PATCH method to update task title, priority, due date (partial update)
  • Update Task Status: Use PATCH method to change task status (pending, in_progress, completed, cancelled)
  • Forward Task: Forward the task to other users
  • Assign/Reassign Task: Assign or reassign tasks to other users
  • Delete Task: Delete the task and all its associated data

Comment Function

  • Add Comment: Add comments to the task
  • View Comments: Get all comments of the task
  • Update Comment: Use PATCH method to update comment content (comment author or task creator can)
  • Delete Comment: Delete comments (comment author or task creator can)

Attachment Function

  • Upload Attachment: Upload attachment files for the task (maximum 10MB)
  • View Attachments: Get all attachments of the task
  • Update Attachment: Use PATCH method to update attachment file name (uploader or task creator can)
  • Delete Attachment: Delete attachment files (uploader or task creator can)
  • Get Attachment List: Get all attachment lists of the task

Permission Rules

Task Permissions

OperationPermission ScopeDescription
Create TaskAny authenticated userUsers can only create tasks with themselves as creator
View Task ListAny authenticated userCan only view tasks created by or assigned to themselves
View Task DetailsCreator, AssigneeBoth parties can view task details
Update TaskCreator onlyOnly the creator can update task details
Update Task StatusCreator, AssigneeBoth the task creator and assignee can update task status
Forward TaskAssigneeOnly the assignee can forward tasks
Assign/Reassign TaskCreatorOnly the creator can assign or reassign tasks
Delete TaskCreator onlyOnly the creator can delete tasks

Comment Permissions

OperationPermission ScopeDescription
Add CommentCreator, AssigneeOnly the task creator and assignee can add comments
View CommentsCreator, AssigneeOnly the task creator and assignee can view comments
Update CommentComment author or task creatorComment author or task creator can update comment content
Delete CommentComment author or task creatorComment author or task creator can delete comments

Attachment Permissions

OperationPermission ScopeDescription
Upload AttachmentCreator, AssigneeOnly the task creator and assignee can upload attachments
View AttachmentsCreator, AssigneeOnly the task creator and assignee can view attachments
Update AttachmentAttachment uploader or task creatorAttachment uploader or task creator can update attachment file name
Delete AttachmentAttachment uploader or task creatorBoth the attachment uploader and task creator can delete attachments
Get Attachment ListCreator, AssigneeOnly the task creator and assignee can get the attachment list

Data and Privacy

External Service Interface

  • US: https://us.guangxiankeji.com/task/service/user/api-spec
  • China: https://cn.guangxiankeji.com/task/service/user/api-spec

Data Types

  • Task Information: title, status, priority, assignee, creator, assign_count, forward_count, assign_reason, forward_reason, due_date
  • Comment Information: comment content, commenter
  • Attachment Information: file name, file path, file size, file type, uploader
  • History Record: changed_by, changed_at, old_status, new_status

Service Provider

  • Provider: Beijing Guangxian Technology Co., Ltd.
  • Official Website: https://us.guangxiankeji.com/task/
  • Privacy Policy: https://us.guangxiankeji.com/task/#/privacy
  • Terms of Service: https://us.guangxiankeji.com/task/#/terms

Data Security

  • Stored on cloud servers compliant with GDPR and CCPA standards
  • Encrypted transmission to ensure data security

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

97.66%
按下载量换算1,802

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills