Created
February 9, 2026 22:00
-
-
Save amiller/37859bfff2bef74416c128692311a2e7 to your computer and use it in GitHub Desktop.
OAuth3 test skill - Hello World
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
| /** | |
| * @skill-metadata | |
| * { | |
| * "description": "Simple test execution - prints hello and checks secret access", | |
| * "secrets": ["OPENAI_API_KEY"], | |
| * "network": [], | |
| * "timeout": 5 | |
| * } | |
| */ | |
| console.log("Hello from OAuth3!"); | |
| console.log("API key length:", Deno.env.get("OPENAI_API_KEY")?.length || "not found"); | |
| console.log("Execution complete!"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment