A wizard interface to create GitHub Agentic Workflows. Create ready-to-use GitHub Agentic Workflows in minutes — just answer a few questions and get a workflow file you can drop into your repo.
The dashboard is rendered at runtime from src/wizard.json. The file defines the
landing-page text, footer labels and URLs, archetype ordering, trigger/output/extra/engine cards,
summary text, recommendation mappings, and the URLs of the pattern library and engine catalog.
To host a customized wizard in another repository:
- Run
npm run buildand publish the contents ofdist/. - Edit the published
wizard.jsonwithout rebuilding the JavaScript bundle. - Point
patterns_urlat a compatible pattern manifest. Relative URLs are resolved from the location ofwizard.json, so the configuration and its pattern library can be hosted together. Therecommendations.safe_outputsmap retains singular and plural aliases where upstream pattern libraries use both forms (for example,add-labelandadd-labels).
The default page reads the configuration URL from:
<meta name="gh-aw-wizard-config" content="wizard.json">An embedding application can instead call initWizard({ configUrl }). Cross-origin configuration,
pattern, and engine endpoints must allow the embedding origin with CORS headers. Option IDs should
match definitions in the configured pattern library's workflow-generation.json.
npm install
npm run dev
npm test
npm run buildMIT