Open
Conversation
…dd create_group (idempotent, parent support, returns existing if requested)\n- Add move_layer_to_group (robust, idempotent, error-tolerant)\n- Add layer_delete/group_delete (delete() with remove() fallback, error recovery, delete_contents safety)\n- Register all new tools in layer_tools.py\n- Improve error handling and state verification\n- Live tested and validated all CRUD operations\n\nImplements robust, safe, and idempotent group/layer management for Photoshop MCP server.
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.
This PR introduces robust and idempotent group/layer CRUD operations for the Photoshop MCP server, including:
create_group: Idempotent group creation with parent support, returns existing group if requested.move_layer_to_group: Robust, idempotent, and error-tolerant layer moving.layer_delete/group_delete: Safe deletion withdelete()andremove()fallback, error recovery, anddelete_contentssafety.layer_tools.py.These changes ensure safe, reliable, and repeatable group/layer management for Photoshop automation workflows.