mirror of
https://github.com/langgenius/dify-official-plugins.git
synced 2026-07-21 17:45:23 -04:00
Enable the feishu_task tool to support the creation or editing of more detailed parameter settings #773
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @lycohana on GitHub (Nov 3, 2025).
Self Checks
1. Is this request related to a challenge you're experiencing? Tell me about your story.
When using the feishu_task tool, I found that the original task creation action was missing many features I needed, such as setting reminder times or directly assigning task members. Therefore, I would like to enhance its functionality for my future use.
2. Additional context or comments
3. Can you help us with this feature?
@lycohana commented on GitHub (Nov 4, 2025):
I understand why the previous method didn't work; the plugin uses the v1 version of the API, which will be abandoned, and I'm planning to refactor to the v2 version of the API!
@dosubot[bot] commented on GitHub (Nov 4, 2025):
Hi @lycohana! I'm Dosu and I’m helping the dify-official-plugins team.
Great plan! There’s already a merged pull request that migrated the feishu_task plugin to a newer API version, likely v2, and it adds support for more detailed parameters like start time, end time, completed time, and direct member assignment with roles (assignee or follower) in task creation and management. You’ll want to review the updated files—especially
create_task.yaml,add_members.yaml, and the new Python scripts intools/feishu_task/—to see how the new parameters and endpoints are handled. The manifest and provider configs also now require permissions liketask:task:writeandcontact:user.id:readonlyfor these features. This should give you a solid foundation for your refactor and any further enhancements you want to make. You can check out the details in the migrate feishu task tool PR. If you have questions about specific implementation details or want to discuss further improvements, feel free to ask!To reply, just mention @dosu.
How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other

@lycohana commented on GitHub (Nov 4, 2025):
I checked, and actually that PR is using the v1 version of the API, which is too outdated