feat: Enable working Blueprint tools and unify version to 1.1.0#63
Merged
feat: Enable working Blueprint tools and unify version to 1.1.0#63
Conversation
## Changes: - Register 5 working Blueprint operations in Python command registry - blueprint_create: Creates new Blueprint classes - blueprint_list: Lists all Blueprints in project - blueprint_info: Gets Blueprint details - blueprint_compile: Compiles Blueprints - blueprint_document: Generates Blueprint documentation - Update version to 1.1.0 across all components: - package.json: 1.0.0 → 1.1.0 - Python listener: Use placeholder X.Y.Z pattern in docs - Demo project: Add version tracking - Improve release process documentation: - Add detailed version update checklist - Document all files requiring version updates - Add verification steps ## Note: This commit does NOT add the non-working Blueprint node manipulation tools (add_node, connect_pins, level_blueprint_add_node) that were attempted earlier. Those have been removed as they cannot work due to UE Python API limitations. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull Request Overview
Enables 5 working Blueprint tools for asset management and unifies the version across all components to 1.1.0. This PR focuses on adding functional Blueprint operations while intentionally excluding non-working Blueprint node manipulation tools due to UE Python API limitations.
- Enables 5 Blueprint tools (create, list, info, compile, document) that work with UE Python API
- Updates version from various states to unified 1.1.0 across all components
- Improves release process documentation with detailed version update checklist
Reviewed Changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| plugin/Content/Python/uemcp_listener.py | Updates version strings to 1.1.0 in status responses |
| plugin/Content/Python/uemcp_command_registry.py | Registers 5 Blueprint operations as standalone functions |
| plugin/Content/Python/ops/system.py | Adds Blueprint category to help system and updates version |
| plugin/Content/Python/ops/blueprint.py | Removes outdated comments about unimplemented functions |
| package.json | Updates package version to 1.1.0 |
| docs/RELEASE_PROCESS.md | Expands version update checklist with specific file locations |
| Demo/Demo.uproject | Adds AutomationDriverTests plugin configuration |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
What's New
This PR enables the Blueprint tools that actually work with the UE Python API:
blueprint_create- Creates new Blueprint classesblueprint_list- Lists all Blueprints in projectblueprint_info- Gets Blueprint detailsblueprint_compile- Compiles Blueprintsblueprint_document- Generates Blueprint documentationWhat's NOT Included
We intentionally did NOT include the non-working Blueprint node manipulation tools that were attempted earlier:
blueprint_add_nodeblueprint_connect_pinslevel_blueprint_add_nodeThese cannot work due to UE Python API limitations (no access to K2Node system for visual scripting).
Version Updates
Updated to v1.1.0 in:
package.jsonDocumentation
Enhanced
docs/RELEASE_PROCESS.mdwith:Test Results
✅ All tests passing (43 tools total)
✅ Pre-commit hooks pass
✅ TypeScript builds successfully
🤖 Generated with Claude Code