Quickstart
Get Hissuno running and see your first AI-powered support response in under 5 minutes.
Set up a local Hissuno instance, add product knowledge, and get an AI-powered answer to a customer question - all in about five minutes.
1. Install
npm i -g hissuno && hissuno setup
The setup wizard handles everything: cloning the repository, installing dependencies, provisioning PostgreSQL with pgvector, generating your .env file, pushing the database schema, and optionally seeding demo data. Follow the prompts and you will have a running instance at http://localhost:3000.
2. Create Your Project
- Open localhost:3000 in your browser.
- Sign up with an email and password.
- Click New Project and enter your product name (e.g., "Acme Web App").
- Click Create Project to land on your new project dashboard.
3. Connect the CLI
While the knowledge source analyzes, connect the CLI to your instance:
hissuno config
Enter your API key (from Settings > Access) and your instance URL. Verify the connection:
hissuno status
Connected to Hissuno
URL: http://localhost:3000
Project: Acme Web App
Role: owner
4. Add Knowledge
The fastest way to give Hissuno context about your product is a website URL.
- In the sidebar, go to Agents and open the knowledge sources dialog.
- Click Add Source and select URL.
- Paste a link to your docs site, marketing page, or any public page that describes your product.
- Click Save. Hissuno will crawl the page and analyze its content automatically.
Check progress from the CLI:
hissuno list sources
5. Try the Support Agent
Once the knowledge analysis completes, test it out.
- Look for the chat widget in the bottom-right corner of the dashboard.
- Open it and ask a question about your product - something a customer would ask.
- The Support Agent answers using the knowledge you just added.
If the answer references your product correctly, you are up and running. You can also search your knowledge from the terminal:
hissuno search "how does pricing work" --type knowledge
What's Next
- Add Your Data - Connect more data sources like GitHub repos, documents, and customer conversations.
- Connect Your Tools - Set up MCP, CLI, or API access for external agents and workflows.
- Configure Agents - Customize agent behavior, tone, and knowledge priorities.
- Production Deployment - Deploy to Vercel + Neon for a production-ready setup.