haojae/web-project-builder-skill · Archived

web-project-builder

Build full-stack web projects with Flask backend (Python + SQLite) and Bootstrap/ECharts frontend (all via CDN). Use when the user wants to create, scaffold, or build a web application, website, dashboard, or data visualization project. Covers four roles: Frontend (HTML/CSS/JS with Bootstrap and ECharts CDN), Backend (Python Flask + SQLite), UI Design (responsive Bootstrap layout), and Testing (pytest). Trigger on requests to build web apps, create dashboards, scaffold projects, or set up Flask…

First seen Aug 22, 2026

Installation

$ npx skills add haojae/web-project-builder-skill --skill web-project-builder

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 7
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,413 B
  • docs SUMMARY.md 568 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Web Project Builder

Build full-stack web projects organized by four roles: Frontend, Backend, UI, Testing.

Quick Start

Scaffold a new project using the bundled script:

python3 scripts/scaffold.py <project-name> --dir <parent-directory>

This generates a ready-to-run project with Flask backend, Bootstrap/ECharts frontend, and pytest tests.

Tech Stack

  • Frontend: Bootstrap 5.3.3 + ECharts 5.5.0 (all CDN)
  • Backend: Python Flask + SQLite
  • Testing: pytest
  • See [references/tech-reference.md](references/tech-reference.md) for CDN URLs, API patterns, and chart types

Workflow

1. Scaffold

Run scripts/scaffold.py to generate the project skeleton. Customize the project name and output directory.

2. Customize by Role

Frontend: Edit templates/ and static/js/main.js. Add pages by creating new templates extending base.html. Add ECharts visualizations in JS files.

Backend: Edit app.py. Add new routes, database tables, and API endpoints. Follow the RESTful pattern: GET /api/resource, POST /api/resource, DELETE /api/resource/<id>.

UI: Edit templates/ and static/css/style.css. Use Bootstrap grid (row/col-*), cards, tables, and form components. Keep responsive.

Testing: Edit tests/testapp.py. Use Flask testclient with a temporary SQLite database. Cover all API endpoints.

3. Run

cd <project-name>
pip install -r requirements.txt
python app.py

Visit http://localhost:5000.

4. Test

pytest tests/ -v

Key Conventions

  • All external libraries loaded via CDN in base.html (no npm/node)
  • Templates use Jinja2 inheritance: all pages extend base.html
  • API routes prefixed with /api/
  • SQLite database auto-created on first run
  • Chinese UI text by default (configurable)