mirror of
https://github.com/langgenius/dify-plugin-daemon.git
synced 2026-07-22 09:45:27 -04:00
3d98785fcf
* feat(cli): align plugin templates with marketplace review requirements
- bump dify_plugin requirement to >=0.9.0,<0.10.0
- fix README template rendering empty description ({{ .Description }} -> {{ .PluginDescription }})
- turn PRIVACY.md into a structured privacy policy skeleton
- add setup/usage sections and English-only notice to README templates (en, zh_Hans, ja_JP, pt_BR)
- add marketplace submission checklist to GUIDE.md
- warn when author name contains 'langgenius' or 'dify'
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
* feat(cli): scaffold plugins with uv pyproject.toml instead of requirements.txt
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
* fix(cli): restore privacy policy placeholder line in PRIVACY.md template
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
* fix(cli): scaffold both requirements.txt and pyproject.toml, revert author warning
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
---------
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
8 lines
144 B
TOML
8 lines
144 B
TOML
[project]
|
|
name = "{{ .PluginName }}"
|
|
version = "{{ .Version }}"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"dify-plugin>=0.9.0,<0.10.0",
|
|
]
|