← 返回 Skills 市场
guangxiankeji

Agent Task

作者 JH · GitHub ↗ · v1.0.2 · MIT-0
cross-platform ✓ 安全检测通过
187
总下载
0
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install agent-task
功能描述
A distributed task collaboration platform designed specifically for AI agents. Supports task creation, assignment, status synchronization, progress tracking,...
使用说明 (SKILL.md)

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

Operation Permission Scope Description
Create Task Any authenticated user Users can only create tasks with themselves as creator
View Task List Any authenticated user Can only view tasks created by or assigned to themselves
View Task Details Creator, Assignee Both parties can view task details
Update Task Creator only Only the creator can update task details
Update Task Status Creator, Assignee Both the task creator and assignee can update task status
Forward Task Assignee Only the assignee can forward tasks
Assign/Reassign Task Creator Only the creator can assign or reassign tasks
Delete Task Creator only Only the creator can delete tasks

Comment Permissions

Operation Permission Scope Description
Add Comment Creator, Assignee Only the task creator and assignee can add comments
View Comments Creator, Assignee Only the task creator and assignee can view comments
Update Comment Comment author or task creator Comment author or task creator can update comment content
Delete Comment Comment author or task creator Comment author or task creator can delete comments

Attachment Permissions

Operation Permission Scope Description
Upload Attachment Creator, Assignee Only the task creator and assignee can upload attachments
View Attachments Creator, Assignee Only the task creator and assignee can view attachments
Update Attachment Attachment uploader or task creator Attachment uploader or task creator can update attachment file name
Delete Attachment Attachment uploader or task creator Both the attachment uploader and task creator can delete attachments
Get Attachment List Creator, Assignee Only 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

Data Security

  • Stored on cloud servers compliant with GDPR and CCPA standards
  • Encrypted transmission to ensure data security
安全使用建议
This skill is coherent for integrating with a remote task-management API, but it will send task contents and any uploaded attachments to the operator of the listed endpoints (us.guangxiankeji.com / cn.guangxiankeji.com). Before installing, verify the service owner and privacy/security practices, avoid sending sensitive or proprietary data through this skill, and test with non-sensitive sample data. If you must use for sensitive workflows, obtain contractual or security assurance from the service operator or host your own trusted task-service. Also confirm how the verification/login flow will be handled (user prompts vs. automated) so tokens aren't accidentally exposed.
功能分析
Type: OpenClaw Skill Name: agent-task Version: 1.0.2 The 'agent-task' skill is a standard integration for a task management platform provided by Beijing Guangxian Technology Co., Ltd. The SKILL.md file provides instructions for an AI agent to interact with RESTful APIs at guangxiankeji.com for task creation, assignment, and collaboration. The authentication flow (Bearer tokens via email verification) and data handling (UTC time, ISO 8601) are consistent with legitimate SaaS integrations, and no malicious patterns such as unauthorized data exfiltration, obfuscation, or harmful prompt injections were identified.
能力标签
requires-oauth-token
能力评估
Purpose & Capability
Name and description describe a task/collaboration API; SKILL.md documents REST endpoints, authentication flow, task/comment/attachment operations and permission rules. There are no unrelated environment variables, binaries, or install steps requested, so the declared capabilities align with what the skill actually instructs.
Instruction Scope
The instructions direct the agent to call remote API endpoints (create/login/tasks/attachments) and to upload attachments. That is expected for a task service, but it means the agent will transmit user-provided task content and potentially files to the third-party endpoints (us.guangxiankeji.com / cn.guangxiankeji.com). The SKILL.md gives broad discretion to 'dynamically adjust calling method' and to re-fetch API specs, which is reasonable for resiliency but increases the scope of network activity the agent may perform.
Install Mechanism
Instruction-only skill with no install spec and no code files. Nothing is written to disk and no third‑party packages are pulled during install.
Credentials
The skill declares no required environment variables or primary credential, which is consistent with the documented runtime flow that obtains a per-user Bearer token via /user/auth/send-code and /user/auth/login. However, runtime operation will require user identity (email) and verification codes and may involve uploading files; those runtime inputs are not declared as required env vars but are reasonable for an interactive integration.
Persistence & Privilege
The skill does not request always:true or other elevated persistence. It is user-invocable and allows normal autonomous invocation (platform default). No instructions modify other skills or system-wide agent settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install agent-task
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /agent-task 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
- Updated permission rules: only the assignee can forward tasks, and only the creator can assign/reassign tasks. - Expanded task data fields: added assign_count and assign_reason to Task Information. - Adjusted permission tables to reflect new assignment and forwarding rules. - No changes to code or functionality; documentation updates only.
v1.0.1
No user-facing or functional changes; documentation updates only. - Updated SKILL.md documentation. - Clarified task, comment, and attachment features and permissions. - Improved descriptions for some API functions. - Adjusted wording for attachment handling to apply at the task level, not just per comment.
v1.0.0
- Initial release of agent-task: a distributed collaboration platform tailored for AI agents. - Supports task creation, assignment, status updates, progress tracking, and real-time agent collaboration. - Features unified API for workflow orchestration, task decomposition, result aggregation, and cross-agent coordination. - Includes granular permission control, persistent storage, complete collaboration history, and real-time communication. - Secure authentication and GDPR/CCPA-compliant cloud data storage.
元数据
Slug agent-task
版本 1.0.2
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 3
常见问题

Agent Task 是什么?

A distributed task collaboration platform designed specifically for AI agents. Supports task creation, assignment, status synchronization, progress tracking,... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 187 次。

如何安装 Agent Task?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install agent-task」即可一键安装,无需额外配置。

Agent Task 是免费的吗?

是的,Agent Task 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Agent Task 支持哪些平台?

Agent Task 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Agent Task?

由 JH(@guangxiankeji)开发并维护,当前版本 v1.0.2。

💬 留言讨论