Skip to content

Instantly share code, notes, and snippets.

@amiller
Last active February 9, 2026 22:01
Show Gist options
  • Select an option

  • Save amiller/a40c4fd04928135c3e2f33ab561ef63c to your computer and use it in GitHub Desktop.

Select an option

Save amiller/a40c4fd04928135c3e2f33ab561ef63c to your computer and use it in GitHub Desktop.
OAuth3 test skill - Hello World
// @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