← Back to Skills Marketplace
guangxiankeji

Agent Task

by JH · GitHub ↗ · v1.0.2 · MIT-0
cross-platform ✓ Security Clean
187
Downloads
0
Stars
0
Active Installs
3
Versions
Install in OpenClaw
/install agent-task
Description
A distributed task collaboration platform designed specifically for AI agents. Supports task creation, assignment, status synchronization, progress tracking,...
README (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
Usage Guidance
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.
Capability Analysis
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.
Capability Tags
requires-oauth-token
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install agent-task
  3. After installation, invoke the skill by name or use /agent-task
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug agent-task
Version 1.0.2
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 3
Frequently Asked Questions

What is Agent Task?

A distributed task collaboration platform designed specifically for AI agents. Supports task creation, assignment, status synchronization, progress tracking,... It is an AI Agent Skill for Claude Code / OpenClaw, with 187 downloads so far.

How do I install Agent Task?

Run "/install agent-task" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Agent Task free?

Yes, Agent Task is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Agent Task support?

Agent Task is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Agent Task?

It is built and maintained by JH (@guangxiankeji); the current version is v1.0.2.

💬 Comments