[PR #1828] [CLOSED] Update ontology_search Plugin #1882

Closed
opened 2026-02-22 18:10:48 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langgenius/dify-plugins/pull/1828
Author: @18646659486
Created: 12/30/2025
Status: Closed

Base: mainHead: main


📝 Commits (10+)

  • 4c6279e Add files via upload
  • 86d3925 Delete asiainfo/ontology_search/ontology_search-0.0.2.difypkg
  • 146a985 Delete asiainfo/ontology_search/ontology_search-0.0.3.difypkg
  • b6adf93 Create 123
  • e1c45e2 Add files via upload
  • 06d3431 Delete asiainfo/ontology_search/123
  • 474fefd Add files via upload
  • 71cf628 Delete asiainfo/ontology_search/ontology_search.difypkg
  • 6a5d1ce Delete asiainfo/ontology_search/ontology_search-0.0.3.difypkg
  • bfcfe40 Create 123

📊 Changes

2 files changed (+0 additions, -0 deletions)

View changed files

asiainfo/ontology_search/ontology_search-0.0.2.difypkg (+0 -0)
asiainfo/ontology_search/ontology_search-0.0.3.difypkg (+0 -0)

📄 Description

Plugin Submission Form

1. Metadata

2. Submission Type

  • New plugin submission
  • Version update for existing plugin

3. Description

This version update introduces new ontology execution and graph reasoning capabilities, along with configuration improvements.

New features:

  • getMcp: Execute ontology-related logic via the MCP protocol, enabling controlled execution of ontology service code.
  • getOag: Perform ontology graph reasoning on the full knowledge graph, including path retrieval, pruning, and returning context-relevant subgraphs for downstream usage.

Improvements:

  • Optimized configuration handling for ontology_api_key to ensure clearer setup and better consistency across environments.
  • General refinements to improve stability, maintainability, and overall usability.

This update is backward compatible and does not break existing workflows.

4. Checklist

  • I have read and followed the Publish to Dify Marketplace guidelines
  • I have read and comply with the Plugin Developer Agreement
  • I confirm my plugin works properly on both Dify Community Edition and Cloud Version
  • I confirm my plugin has been thoroughly tested for completeness and functionality
  • My plugin brings new value to Dify

5. Documentation Checklist

Please confirm that your plugin README includes all necessary information:

  • Step-by-step setup instructions
  • Detailed usage instructions
  • All required APIs and credentials are clearly listed
  • Connection requirements and configuration details
  • Link to the repository for the plugin source code

6. Privacy Protection Information

Based on Dify Plugin Privacy Protection Guidelines:

Data Collection

This plugin does not collect, store, or process any user personal data.

All inputs provided by users are only used to perform ontology-related queries and execution requests to the configured ontology service and are not persisted.

Privacy Policy

  • I confirm that I have prepared and included a privacy policy in my plugin package based on the Plugin Privacy Protection Guidelines

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langgenius/dify-plugins/pull/1828 **Author:** [@18646659486](https://github.com/18646659486) **Created:** 12/30/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`4c6279e`](https://github.com/langgenius/dify-plugins/commit/4c6279e141b19008f70a41c4ec9fb2c203ad49e9) Add files via upload - [`86d3925`](https://github.com/langgenius/dify-plugins/commit/86d3925c250f9858f566a10294fd20b550066ece) Delete asiainfo/ontology_search/ontology_search-0.0.2.difypkg - [`146a985`](https://github.com/langgenius/dify-plugins/commit/146a9855d2066ca0bd4a5a21e731b14af8025949) Delete asiainfo/ontology_search/ontology_search-0.0.3.difypkg - [`b6adf93`](https://github.com/langgenius/dify-plugins/commit/b6adf9316ebaf67b14b31f378ac71e5d7f097ce7) Create 123 - [`e1c45e2`](https://github.com/langgenius/dify-plugins/commit/e1c45e2f66b54e09b6a693c116a20435472fa16d) Add files via upload - [`06d3431`](https://github.com/langgenius/dify-plugins/commit/06d3431ec9df57148d3353b4c1b0e53cbc10679f) Delete asiainfo/ontology_search/123 - [`474fefd`](https://github.com/langgenius/dify-plugins/commit/474fefd0cf77c33947293b89a3c9a0d661d3b8e8) Add files via upload - [`71cf628`](https://github.com/langgenius/dify-plugins/commit/71cf628c22baeac97027cce2f012b0b44269b436) Delete asiainfo/ontology_search/ontology_search.difypkg - [`6a5d1ce`](https://github.com/langgenius/dify-plugins/commit/6a5d1cec66d196de8e2e172144b2bccf4dabe0e2) Delete asiainfo/ontology_search/ontology_search-0.0.3.difypkg - [`bfcfe40`](https://github.com/langgenius/dify-plugins/commit/bfcfe408c6c269d824ec10fe18c62ae73bfe312c) Create 123 ### 📊 Changes **2 files changed** (+0 additions, -0 deletions) <details> <summary>View changed files</summary> ➖ `asiainfo/ontology_search/ontology_search-0.0.2.difypkg` (+0 -0) ➕ `asiainfo/ontology_search/ontology_search-0.0.3.difypkg` (+0 -0) </details> ### 📄 Description # Plugin Submission Form ## 1. Metadata <!-- Please provide the following metadata of your plugin to make it easier for the reviewer to check the changes. - Plugin Author : The author of the plugin which is defined in your manifest.yaml - Plugin Name : The name of the plugin which is defined in your manifest.yaml - Repository URL: The URL of the repository where the source code of your plugin is hosted --> - **Plugin Author**: asiainfo - **Plugin Name**: ontology_search - **Repository URL**: https://github.com/18646659486/dify-plugins ## 2. Submission Type - [ ] New plugin submission - [x] Version update for existing plugin ## 3. Description This version update introduces new ontology execution and graph reasoning capabilities, along with configuration improvements. New features: - **getMcp**: Execute ontology-related logic via the MCP protocol, enabling controlled execution of ontology service code. - **getOag**: Perform ontology graph reasoning on the full knowledge graph, including path retrieval, pruning, and returning context-relevant subgraphs for downstream usage. Improvements: - Optimized configuration handling for `ontology_api_key` to ensure clearer setup and better consistency across environments. - General refinements to improve stability, maintainability, and overall usability. This update is backward compatible and does not break existing workflows. ## 4. Checklist - [x] I have read and followed the Publish to Dify Marketplace guidelines - [x] I have read and comply with the Plugin Developer Agreement - [x] I confirm my plugin works properly on both Dify Community Edition and Cloud Version - [x] I confirm my plugin has been thoroughly tested for completeness and functionality - [x] My plugin brings new value to Dify ## 5. Documentation Checklist Please confirm that your plugin README includes all necessary information: - [x] Step-by-step setup instructions - [x] Detailed usage instructions - [x] All required APIs and credentials are clearly listed - [x] Connection requirements and configuration details - [x] Link to the repository for the plugin source code ## 6. Privacy Protection Information Based on Dify Plugin Privacy Protection [Guidelines](https://docs.dify.ai/plugins/publish-plugins/publish-to-dify-marketplace/plugin-privacy-protection-guidelines): ### Data Collection This plugin does not collect, store, or process any user personal data. All inputs provided by users are only used to perform ontology-related queries and execution requests to the configured ontology service and are not persisted. ### Privacy Policy - [x] I confirm that I have prepared and included a privacy policy in my plugin package based on the Plugin Privacy Protection Guidelines --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:10:48 -05:00
yindo closed this issue 2026-02-22 18:10:49 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify-plugins#1882