AI-powered demo platform — describe what you want, watch it build in seconds. Built entirely with skillforge-ai — zero human code.
| Page | URL | What it does |
|---|---|---|
| Homepage | kirti.github.io/zero-code-apps | Platform entry point |
| AI App Builder | kirti.github.io/zero-code-apps/builder | 10 templates · Claude/GPT-4o/Gemini streaming · skills inspector · cost transparency |
| Cozy Generator | kirti.github.io/zero-code-apps/cozy | Describe a vibe → AI image via DALL·E 3 or Stable Diffusion |
| skillforge-ai | kirti.github.io/zero-code-apps/skillforge | npm package showcase · skill explorer · CLI demo · services |
| NexVault demo | kirti.github.io/zero-code-apps/demos/nexvault | Dark fintech trading dashboard — CoinGecko live data |
| Pulse Analytics | kirti.github.io/zero-code-apps/demos/pulse-analytics | SaaS analytics dashboard |
| Crypto Trading | kirti.github.io/zero-code-apps/demos/crypto-trading | BTC/ETH/SOL live prices · candlestick · portfolio |
| Wealth Management | kirti.github.io/zero-code-apps/demos/wealth-management | Asset allocation · holdings · performance |
| Banking | kirti.github.io/zero-code-apps/demos/banking | Accounts · transactions · spending · savings |
You type a description
↓
skillforge-ai skills guide the AI (design rules, component patterns, API integrations)
↓
Claude / GPT-4o / Gemini streams back a complete app
↓
Live preview renders in the browser
↓
Download as standalone HTML — deploy anywhere for free
git clone https://github.com/kirti/zero-code-apps
cd zero-code-apps
npm install # installs skillforge-ai + serve
npm run build:skills # reads real skills from skillforge-ai → builder/skills.js
npm run dev # → http://localhost:3000Note:
npm run build:skillsmust be run afternpm installto inject real skill content into the builder. Without it the builder loads but skills panel shows empty.
npm install -g skillforge-ai
export ANTHROPIC_API_KEY=sk-ant-...
skillforge-ai run frontend-design chart-js fintech-ui api-integration \
--task "Build a dark crypto trading dashboard with BTC/ETH/SOL prices,
candlestick chart, portfolio tracker, watchlist with sparklines" \
--output demos/my-app/index.html
open demos/my-app/index.htmlPush to GitHub → auto-deploys to GitHub Pages.
Fintech / Trading:
"Dark crypto trading dashboard with BTC ETH SOL live prices, candlestick chart, portfolio P&L""Wealth management dashboard with asset allocation donut, holdings table, performance chart""Stock screener with PE ratio, market cap, sector filters and results table with sparklines""Order flow visualiser with live buy/sell stream, market depth chart, trade execution feed""Banking dashboard with account overview, transaction history, spending by category"
Analytics / SaaS:
"SaaS analytics dashboard with MRR, churn, DAU metrics and revenue trend charts""Marketing analytics with campaign performance, conversion funnel, channel breakdown"
Cozy generator vibes:
"rainy evening with candles, open book, warm tea by the window""cherry blossom path in spring morning, soft pink petals, watercolor style""hygge living room winter evening, fireplace, fairy lights, blankets"
| Skill | What it teaches the AI |
|---|---|
frontend-design |
Dark premium UI · Syne+DM Mono fonts · CSS animations |
chart-js |
Chart.js dark theme · gradient fills · period switcher |
fintech-ui |
Ticker bar · SVG sparklines · virtual card · watchlist |
api-integration |
CoinGecko free API · fallback mock data · status indicator |
zca-schema |
ZCA JSON app schema for structured app generation |
zero-code-apps/
├── index.html ← platform homepage
├── builder/
│ ├── index.html ← AI app builder v2 (10 templates, streaming, transparency)
│ └── skills.js ← auto-generated from skillforge-ai (run npm run build:skills)
├── cozy/
│ └── index.html ← cozy image generator
├── skillforge/
│ └── index.html ← skillforge-ai npm package showcase
├── npm/index.html ← redirects to /skillforge
├── package/index.html ← redirects to /skillforge
├── demos/
│ ├── nexvault/ ← AI-generated fintech demo
│ ├── pulse-analytics/ ← AI-generated analytics demo
│ ├── crypto-trading/ ← AI-generated crypto dashboard
│ ├── wealth-management/ ← AI-generated wealth mgmt dashboard
│ ├── banking/ ← AI-generated banking dashboard
│ ├── saas-analytics/ ← AI-generated SaaS analytics
│ └── order-flow/ ← AI-generated order flow visualiser
├── scripts/
│ └── build-skills.js ← reads skills from skillforge-ai → writes builder/skills.js
└── .github/workflows/
└── deploy.yml ← auto-deploy to GitHub Pages on push
- Fork this repo
- Go to Settings → Pages → Source → GitHub Actions
- Push any change → auto-deploys in ~2 minutes
Built by Kirti Kaushal — Senior AI/ML + Full Stack Engineer npm · LinkedIn · Medium