Last active
February 9, 2026 22:01
-
-
Save amiller/a40c4fd04928135c3e2f33ab561ef63c 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 test-hello-world | |
| // @description Simple test - prints hello and checks secret | |
| // @secrets OPENAI_API_KEY | |
| // @timeout 5 | |
| console.log("Hello from OAuth3!"); | |
| const key = Deno.env.get("OPENAI_API_KEY"); | |
| console.log("API key length:", key ? key.length : "not found"); | |
| console.log("Test complete!"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment