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.
This commit is contained in:
qianlifeng 2025-05-29 23:23:29 +08:00
parent 4b97ebedf0
commit bc54323d5a
No known key found for this signature in database
2 changed files with 3 additions and 8 deletions

View File

@ -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.

View File

@ -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 <template> <name>
wpm create <name>
```
Available templates:
@ -21,11 +21,6 @@ Available templates:
- `javascript` - JavaScript/Node.js script template
- `bash` - Bash script template
Example:
```
wpm create script python my-calculator
```
### Script Plugin Structure
A script plugin consists of a single executable file with metadata defined in comments: