From bc54323d5a75ab2fa36851ec54eccc9d7e825499 Mon Sep 17 00:00:00 2001 From: qianlifeng Date: Thu, 29 May 2025 23:23:29 +0800 Subject: [PATCH] docs(plugin): update plugin development guides to indicate AI generation * Added "(Generated by AI)" to the titles of the Full-featured and Script Plugin Development Guides for clarity. * This change helps users understand the origin of the documentation. --- docs/full_featured_plugin_guide.md | 2 +- docs/script_plugin_guide.md | 9 ++------- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/docs/full_featured_plugin_guide.md b/docs/full_featured_plugin_guide.md index a86a7a8e..cae37c36 100644 --- a/docs/full_featured_plugin_guide.md +++ b/docs/full_featured_plugin_guide.md @@ -1,4 +1,4 @@ -# Full-featured Plugin Development Guide +# Full-featured Plugin Development Guide (Generated by AI) Full-featured plugins are comprehensive plugins that run in dedicated host processes and communicate with Wox via WebSocket. They provide the full power of the Wox plugin system with rich APIs, persistent state, and advanced features. diff --git a/docs/script_plugin_guide.md b/docs/script_plugin_guide.md index 4b9d2965..c5cc24d5 100644 --- a/docs/script_plugin_guide.md +++ b/docs/script_plugin_guide.md @@ -1,4 +1,4 @@ -# Script Plugin Development Guide +# Script Plugin Development Guide (Generated by AI) Script plugins are lightweight, single-file plugins that provide a simple way to extend Wox functionality. They are perfect for quick automation tasks, personal utilities, and learning plugin development. @@ -13,7 +13,7 @@ Script plugins communicate with Wox using JSON-RPC over stdin/stdout. Each scrip Use the `wpm` plugin to create a new script plugin: ``` -wpm create script