Public marketing and help site for Ask VIKI — the Slack app that captures channel history and answers natural-language questions via /ask-viki or DM.
Live: https://askviki.ai (production) · previews on every branch push via Vercel.
| Path | File | Purpose |
|---|---|---|
/ |
index.html |
Landing / value proposition |
/install |
install.html |
How to install into a Slack workspace |
/ask |
ask.html |
How to ask a question |
/commands |
commands.html |
Full command reference |
/privacy |
privacy.html |
What gets captured and stored |
assets/colors_and_type.css— design-system tokens (Fern accent, Verdana, 22px card radius) from the Ask VIKI Design System handoff. Treat as a vendored library — do not modify without updating the design system source.assets/site.css— shell and page-specific styles.assets/*.svg— logos, marks, favicons, Slack glyph.
Static files, no build step. Serve the repo root with any static server:
python3 -m http.server 8000
# or
npx serve .Then open http://localhost:8000. Note that cleanUrls is a Vercel feature; locally you'll hit /install.html not /install.
Connected to the ask-viki-web Vercel project:
- Production branch:
main— pushes trigger production deploys ataskviki.ai. - Every other branch: preview deploy at a Vercel-generated URL.
The vercel.json enables cleanUrls (so /install serves install.html), disables trailing slashes, and sets two security headers (X-Content-Type-Options: nosniff, Referrer-Policy: strict-origin-when-cross-origin).
- Slack app (backend): https://github.com/virtualian/ask-viki
- Design system source: Claude Design export (not checked in; the CSS/assets here are the compiled output)