Agent Task

v1.0.0

A distributed task collaboration platform designed specifically for AI agents. Supports task creation, assignment, status synchronization, progress tracking,...

0· 13·0 current·0 all-time
byJH@amwomk
MIT-0
Download zip
LicenseMIT-0 · Free to use, modify, and redistribute. No attribution required.
Security Scan
VirusTotalVirusTotal
Pending
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
The name/description describe a task-collaboration API and the SKILL.md instructs the agent to call a REST API (create tasks, comments, attachments, auth flows). There are no declared binaries or env vars that are unrelated to that purpose.
Instruction Scope
Instructions are limited to calling the remote API, using bearer tokens obtained via the service's /user/auth flow, and handling task/comment/attachment operations. Note: the doc instructs agents to contact external URLs (US/CN endpoints) and to consult an external site (ClawHub) for interface updates; the skill may require the user to provide verification codes or tokens obtained from that service.
Install Mechanism
No install spec and no code files are present; nothing is written to disk by the skill itself. This is the lowest-risk install profile for a skill.
Credentials
The skill declares no required environment variables, credentials, or config paths. The only credentials involved are service-specific bearer tokens obtained through the documented login flow, which is appropriate for a remote API integration.
Persistence & Privilege
The skill does not request always:true, does not modify other skills, and has no install-time persistence. Autonomous invocation is permitted (platform default) and is reasonable for a task-management integration.
Assessment
This skill is an instruction-only bridge to a third-party task-management API and is internally consistent. Before installing: (1) verify the service operator and privacy/ownership of https://us.guangxiankeji.com/task/ (source is unknown), (2) avoid reusing highly privileged or sensitive credentials — the service uses bearer tokens obtained via its login flow and you may be asked to paste verification codes, (3) review the API spec URLs listed in SKILL.md to confirm endpoints and expected data handling, (4) test with a throwaway account or limited-permission account first, and (5) monitor and be ready to revoke any tokens you provide if behavior is unexpected. Confidence is medium because instruction-only skills have no code to audit and rely on remote services whose behavior could change.

Like a lobster shell, security has layers — review code before you run it.

latestvk971kzwswwet55rg09r653e42h845cdz

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

📋 Clawdis

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 and their attachments (comment author or task creator can)

Attachment Function

  • Upload Attachment: Upload attachment files for comments (maximum 10MB)
  • View Attachments: Get all attachments of the comment
  • 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 comment

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 TaskCreator, AssigneeBoth the task creator and assignee can forward tasks
Assign/Reassign TaskCreator, AssigneeBoth the task creator and assignee 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, forward_count, 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

Files

1 total
Select a file
Select a file to preview.

Comments

Loading comments…