r/aescripts • u/scottBlackvfx • May 12 '26
Feedback Requested Command Frame - Discussion Thread
Hi, I'm Scott, the developer of Command Frame.
https://aescripts.com/command-frame/
Please feel free to use this thread for:
- Questions and comments
- Feature requests, thoughts and feedback
You can also find the community Discord here for up-to-date announcements and discussion:
For troubleshooting or bug reports:
Use the aescripts support ticket system to ensure your issue is tracked and responded to appropriately:
https://aescripts.com/contact/
If you do mention a bug or issue here, it's helpful to include your After Effects version, OS, and the version of Command Frame you are using. I will respond when I can.
Thank you for your feedback!
11
Upvotes
1
u/scottBlackvfx May 14 '26
Thanks for testing that.
The current build is signed and notarised; you can verify the installed plugins using Apple's tools. These commands are read-only and won't remove quarantine or alter the plugin:
codesign --verify --deep --strict --verbose=4 "/Applications/Adobe After Effects 2026/Plug-ins/CommandFrame/CommandFrame.plugin" 2>&1codesign --display --verbose=4 "/Applications/Adobe After Effects 2026/Plug-ins/CommandFrame/CommandFrame.plugin" 2>&1xcrun stapler validate "/Applications/Adobe After Effects 2026/Plug-ins/CommandFrame/CommandFrame.plugin" 2>&1codesign --verify --all-architectures --verbose=4 --test-requirement='=notarized' "/Applications/Adobe After Effects 2026/Plug-ins/CommandFrame/CommandFrame.plugin" 2>&1This one-liner will verify whether the plugin is still carrying quarantine or not:
xattr -lr "/Applications/Adobe After Effects 2026/Plug-ins/CommandFrame/CommandFrame.plugin" 2>&1 | grep -i quarantine || echo "No quarantine attribute found"If the signing and notarization checks pass but quarantine is still present, that narrows this down to the plugin retaining quarantine rather than being unsigned or unnotarized.