chore:add group task board plugin source#2853
Merged
Merged
Conversation
Owner
|
Thanks for the contribution. One small thing: the repo has committed pycache/. These are generated files that shouldn't be version-controlled — adding a .gitignore would keep the repo clean |
Contributor
Author
|
Thanks for the review and for merging the PR! I have updated the plugin repository by adding a Plugin repository: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds a third-party plugin source entry for
group_task_boardinplugins/source.json.The plugin source code is maintained in a separate repository:
https://github.com/Wyh-max-star/cowagent-plugin-group-task-board
This PR only registers the plugin source URL and description. It does not add the plugin implementation code into the CowAgent main repository.
Plugin Description
group_task_boardis a lightweight group chat task management plugin for CowAgent.In group chat scenarios, task assignments are often mixed with normal conversations and can easily be missed. This plugin helps users create, view, update, and complete simple tasks directly in group conversations.
It is suitable for scenarios such as:
Main Features
Usage
After installing the plugin, users can manage tasks with commands such as:
#task add 张三 明天之前整理会议纪要
#task list
#task done 1
#task status
#task help
Example 1: create a task
User:
#task add 李四 周五前完成接口测试
CowAgent:
已创建任务 #1
负责人:李四
任务内容:完成接口测试
截止时间:周五前
状态:待完成
Example 2: view task list
User:
#task list
CowAgent:
当前任务列表:
#1 李四|完成接口测试|周五前|待完成
#2 张三|整理会议纪要|明天前|进行中
Example 3: mark a task as completed
User:
#task done 1
CowAgent:
任务 #1 已标记为完成。
Changes in This PR
group_task_boardtoplugins/source.jsonNotes
CowAgent's
plugins/source.jsonuses external plugin repository URLs and descriptions to register plugins. This PR follows that format and only adds the plugin source entry.The plugin implementation is maintained here:
https://github.com/Wyh-max-star/cowagent-plugin-group-task-board