An experimental editor that offers a novel way to write software with AI.
195
stars
56
commits
Svelte
primary language
Aug 23, 2026
updated
An experimental interface for building software by editing persistent pseudocode and synchronizing it with an AI-generated implementation.
You need Node.js 22.19 or newer and access to a model provider supported by Pi.
git clone https://github.com/danielvaughn/hz.gitcd hznpm installnpm run devOpen the url (should run on http://localhost:5173)
Huzzah uses Pi's provider, credential, and model configuration. It does not require a particular model vendor.
Set an environment variable supported by your provider before starting Huzzah. For example:
export ANTHROPIC_API_KEY=sk-ant-...
Pi also recognizes credentials for OpenAI, Google, Azure OpenAI, Amazon Bedrock, and other supported providers.
Run Pi through the web app's local installation:
npx --workspace=poc pi
Enter /login, choose a provider, and complete its authentication flow. Exit Pi when authentication is complete, then start the web app with npm run dev.
Set Pi's default provider and model in ~/.pi/agent/settings.json:
{
"defaultProvider": "anthropic",
"defaultModel": "claude-sonnet-4-5"
}
Use model IDs available to your configured provider. If no default is set, Pi falls back to the first authenticated model it finds. Huzzah currently uses Pi's low thinking level for reconciliation and semantic highlighting regardless of defaultThinkingLevel.
Pi also supports custom providers and local models such as Ollama, LM Studio, and vLLM through ~/.pi/agent/models.json.
Do not paste secrets or private source into Huzzah. Specs and current generated source are sent to your selected model provider, and accepted AI-generated JavaScript runs locally in a Web Worker. This is experimental containment, not a hostile-code sandbox.
56 commits
Svelte
42.6%
TypeScript
37.3%
CSS
19.9%
An experimental editor that offers a novel way to write software with AI.
195
stars
56
commits
Svelte
primary language
Aug 23, 2026
updated
An experimental interface for building software by editing persistent pseudocode and synchronizing it with an AI-generated implementation.
You need Node.js 22.19 or newer and access to a model provider supported by Pi.
git clone https://github.com/danielvaughn/hz.gitcd hznpm installnpm run devOpen the url (should run on http://localhost:5173)
Huzzah uses Pi's provider, credential, and model configuration. It does not require a particular model vendor.
Set an environment variable supported by your provider before starting Huzzah. For example:
export ANTHROPIC_API_KEY=sk-ant-...
Pi also recognizes credentials for OpenAI, Google, Azure OpenAI, Amazon Bedrock, and other supported providers.
Run Pi through the web app's local installation:
npx --workspace=poc pi
Enter /login, choose a provider, and complete its authentication flow. Exit Pi when authentication is complete, then start the web app with npm run dev.
Set Pi's default provider and model in ~/.pi/agent/settings.json:
{
"defaultProvider": "anthropic",
"defaultModel": "claude-sonnet-4-5"
}
Use model IDs available to your configured provider. If no default is set, Pi falls back to the first authenticated model it finds. Huzzah currently uses Pi's low thinking level for reconciliation and semantic highlighting regardless of defaultThinkingLevel.
Pi also supports custom providers and local models such as Ollama, LM Studio, and vLLM through ~/.pi/agent/models.json.
Do not paste secrets or private source into Huzzah. Specs and current generated source are sent to your selected model provider, and accepted AI-generated JavaScript runs locally in a Web Worker. This is experimental containment, not a hostile-code sandbox.
56 commits
Svelte
42.6%
TypeScript
37.3%
CSS
19.9%