Skip to content

Instantly share code, notes, and snippets.

@amiller
Created February 9, 2026 22:00
Show Gist options
  • Select an option

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

Select an option

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