mirror of
https://github.com/langgenius/dify-plugin-daemon.git
synced 2026-07-25 21:46:13 -04:00
3918b377f2
- Removed redundant flag retrieval in the plugin initialization process, simplifying the code. - Updated permission handling to use a single `permissionRequirement` structure for better clarity and maintainability. - Enhanced YAML templates by adding quotes around dynamic values to ensure proper formatting and prevent potential parsing issues.
14 lines
302 B
YAML
14 lines
302 B
YAML
identity:
|
|
author: {{ .Author }}
|
|
name: {{ .PluginName }}
|
|
label:
|
|
en_US: "{{ .PluginName | SnakeToCamel }}"
|
|
description:
|
|
en_US: "{{ .PluginName | SnakeToCamel }}"
|
|
icon: icon.svg
|
|
strategies:
|
|
- strategies/{{ .PluginName }}.yaml
|
|
extra:
|
|
python:
|
|
source: provider/{{ .PluginName }}.py
|