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
| { | |
| "name": "Claude Test Agent", | |
| "description": "Ephemeral test agent registered via Relex agent-connection flow.", | |
| "url": "https://example.invalid/claude-test-agent", | |
| "version": "0.1.0", | |
| "protocols": ["a2a/1.0"], | |
| "capabilities": { | |
| "streaming": false, | |
| "pushNotifications": false, | |
| "stateTransitionHistory": false |
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
| import adsk.core, adsk.fusion, adsk.cam, traceback, math | |
| def run(context): | |
| ui = None | |
| try: | |
| app = adsk.core.Application.get() | |
| ui = app.userInterface | |
| design = app.activeProduct | |
| # Get the active sketch |
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
| #!/bin/sh | |
| set -e | |
| # Configuration | |
| zpool="bbox" | |
| snapshot_prefix="${zpool}-" # Identify your ZPOOL daily snapshots | |
| retention_count=36 # Number of snapshots per container | |
| # Generate snapshot name with date |