mirror of
https://github.com/langgenius/dify-official-plugins.git
synced 2026-07-21 17:45:23 -04:00
[PR #1955] [MERGED] feat: add dicom_reader #2171
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?
📋 Pull Request Information
Original PR: https://github.com/langgenius/dify-official-plugins/pull/1955
Author: @crazywoola
Created: 10/29/2025
Status: ✅ Merged
Merged: 10/29/2025
Merged by: @crazywoola
Base:
main← Head:feat/1954-add-dicom_reader📝 Commits (3)
345a5e5feat: add dicom_reader6d4a6c4feat: add dicom_readera7634f4feat: add dicom_reader📊 Changes
15 files changed (+1359 additions, -0 deletions)
View changed files
➕
tools/dicom_reader/.difyignore(+184 -0)➕
tools/dicom_reader/.env.example(+3 -0)➕
tools/dicom_reader/.gitignore(+176 -0)➕
tools/dicom_reader/GUIDE.md(+137 -0)➕
tools/dicom_reader/PRIVACY.md(+9 -0)➕
tools/dicom_reader/README.md(+29 -0)➕
tools/dicom_reader/_assets/icon-dark.svg(+13 -0)➕
tools/dicom_reader/_assets/icon.svg(+13 -0)➕
tools/dicom_reader/main.py(+6 -0)➕
tools/dicom_reader/manifest.yaml(+37 -0)➕
tools/dicom_reader/provider/dicom_reader.py(+49 -0)➕
tools/dicom_reader/provider/dicom_reader.yaml(+62 -0)➕
tools/dicom_reader/requirements.txt(+4 -0)➕
tools/dicom_reader/tools/dicom_reader.py(+524 -0)➕
tools/dicom_reader/tools/dicom_reader.yaml(+113 -0)📄 Description
Related Issues or Context
This pull request introduces the initial implementation and setup for the DICOM Reader plugin in the
tools/dicom_readerdirectory. It covers plugin metadata, documentation, privacy policy, environment configuration, ignore files, and a GitHub Actions workflow for automated publishing. The changes establish the foundation for plugin development, usage, and distribution.Plugin Definition and Metadata
manifest.yamldescribing plugin version, author, supported architectures, resources, permissions, and entrypoint for the DICOM Reader tool.provider/dicom_reader.yamlwith multi-language labels, descriptions, and tool registration; includes OAuth scaffolding for future extensibility.Documentation and Policy
README.mddetailing plugin features, usage parameters, output structure, and handling of large files.GUIDE.mdwith a comprehensive development guide, including manifest structure, setup, testing, publishing, and links to example plugins.PRIVACY.mdoutlining privacy guarantees for users, emphasizing local-only data handling and no external transmission.Development and Environment Setup
main.pyto run the plugin using the Dify SDK..env.examplefor remote debugging and installation configuration..gitignore,.difyignore) to prevent unwanted files from being committed or packaged. [1] [2]Publishing Automation
.github/workflows/plugin-publish.ymlfor automated packaging and PR creation on release, streamlining the publishing process to the plugin repository.Plugin Provider Implementation
provider/dicom_reader.pywith a basicToolProviderclass and scaffolding for OAuth support.This PR contains Changes to Non-Plugin
This PR contains Changes to Non-LLM Models Plugin
This PR contains Changes to LLM Models Plugin
Version Control (Any Changes to the Plugin Will Require Bumping the Version)
VersionField, Not in Meta Section)Dify Plugin SDK Version
dify_plugin>=0.3.0,<0.6.0is in requirements.txt (SDK docs)Environment Verification (If Any Code Changes)
Local Deployment Environment
SaaS Environment
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.