diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index f36df5f..cd13fde 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -20,7 +20,7 @@ Save your change type ## Documentation Updates - + - [ ] I have added/removed/modified tools or resources - [ ] If yes, I have updated all documentation files using: - [ ] The LLM prompt at `tools/UPDATE_DOCS_PROMPT.md` (recommended) diff --git a/tools/UPDATE_DOCS_PROMPT.md b/tools/UPDATE_DOCS_PROMPT.md index efdbe62..0ccdc60 100644 --- a/tools/UPDATE_DOCS_PROMPT.md +++ b/tools/UPDATE_DOCS_PROMPT.md @@ -5,7 +5,7 @@ Copy and paste this prompt into your LLM when you need to update documentation a ## Example Usage After adding a new tool called "manage_new_feature" and a new resource called "feature_resource", you would: -1. Copy the prompt above +1. Copy the prompt in the section below 2. Paste it into your LLM 3. The LLM will analyze the codebase and update all documentation files 4. Review the changes and run the check script to verify diff --git a/tools/update_versions.py b/tools/update_versions.py index 18675e4..5cc1102 100755 --- a/tools/update_versions.py +++ b/tools/update_versions.py @@ -236,11 +236,6 @@ def main() -> int: "--version", help="Version to set (auto-detected from package.json if not provided)", ) - parser.add_argument( - "--update-package", - action="store_true", - help="Also update MCPForUnity/package.json with the specified version", - ) args = parser.parse_args()