From b75fd96e4ac0706743cf97e861e450dbde77f09e Mon Sep 17 00:00:00 2001 From: fujie Date: Mon, 9 Mar 2026 21:59:41 +0800 Subject: [PATCH] docs: add batch plugin installation guide to release-prep agent - Add 'Post-Release: Batch Plugin Installation' section to release-prep.agent.md - Include quick start commands for users to install all plugins after release - Direct users to deployment guide for detailed instructions --- .github/agents/release-prep.agent.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/agents/release-prep.agent.md b/.github/agents/release-prep.agent.md index 561fe6e..7602119 100644 --- a/.github/agents/release-prep.agent.md +++ b/.github/agents/release-prep.agent.md @@ -78,5 +78,23 @@ Plugin: {type}/{name} → v{new_version} ### Verification Status {filled-in 9-file checklist for each changed plugin} +## Post-Release: Batch Plugin Installation + +After release is published, users can quickly install all plugins: + +```bash +# Clone the repository +git clone https://github.com/Fu-Jie/openwebui-extensions.git +cd openwebui-extensions + +# Setup API key +echo "api_key=sk-your-api-key-here" > scripts/.env + +# Install all plugins at once +python scripts/install_all_plugins.py +``` + +See: [Deployment Guide](./scripts/DEPLOYMENT_GUIDE.md) + --- ⚠️ **Waiting for user confirmation — no git operations will run until explicitly approved.**