cloudaxe-opencode/packages/console/app
Ryan Vogel bc3fe8f4f5 add LLM-based enterprise lead scoring and auto-replies
Extract delivery logic from the enterprise route into a dedicated
module that grades inquiries via the Zen responses API, falls back
to simple regex scoring on failure, and sends templated auto-replies
for generic and procurement-blocked leads.

Made-with: Cursor
2026-03-19 17:38:16 -04:00
..
.opencode/agent
public fix(web): favicon rename again 2026-01-21 14:52:21 -06:00
script feat(console): add /go landing page 2026-03-03 18:29:42 +00:00
src add LLM-based enterprise lead scoring and auto-replies 2026-03-19 17:38:16 -04:00
test add LLM-based enterprise lead scoring and auto-replies 2026-03-19 17:38:16 -04:00
.gitignore
package.json add LLM-based enterprise lead scoring and auto-replies 2026-03-19 17:38:16 -04:00
README.md
sst-env.d.ts zen: update sst version 2026-02-18 13:54:23 -05:00
tsconfig.json
vite.config.ts feat(www): locale specific urls (#12508) 2026-02-06 11:30:40 -06:00

SolidStart

Everything you need to build a Solid project, powered by solid-start;

Creating a project

# create a new project in the current directory
npm init solid@latest

# create a new project in my-app
npm init solid@latest my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

Solid apps are built with presets, which optimise your project for deployment to different environments.

By default, npm run build will generate a Node app that you can run with npm start. To use a different preset, add it to the devDependencies in package.json and specify in your app.config.js.

This project was created with the Solid CLI