-
Notifications
You must be signed in to change notification settings - Fork 830
docs: Add FAQ section for common questions #86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -505,3 +505,56 @@ If the curve bends up, that's the signal we look for. ★ this repo to push it. | |
| Apache-2.0 © 2026 HTML Anything contributors. See [`LICENSE`](LICENSE). | ||
|
|
||
| Bundled work retains its original license and authorship attribution — see the per-skill `LICENSE` / `README.md` inside each `next/src/lib/templates/skills/<skill>/` folder for what it inherits from upstream. | ||
|
|
||
|
|
||
| ## FAQ | ||
|
|
||
| ### What is HTML Anything? | ||
|
|
||
| HTML Anything is the agentic HTML editor — your local AI agent writes HTML for you. It combines the power of AI agents with HTML editing to create websites, components, and layouts automatically. | ||
|
|
||
| | Feature | Description | | ||
| |---------|-------------| | ||
| | **AI Agent Editor** | AI writes HTML based on your descriptions | | ||
| | **Local Execution** | Runs on your machine, no cloud needed | | ||
| | **Real-time Preview** | See changes instantly | | ||
| | **Component Library** | Pre-built HTML templates | | ||
| | **Custom Styling** | Tailwind CSS, custom CSS support | | ||
| | **Export Options** | Download HTML, deploy to hosting | | ||
|
|
||
| ### Getting Started | ||
|
|
||
| ```sh | ||
| # Clone and run | ||
| git clone https://github.com/nexu-io/html-anything | ||
| cd html-anything | ||
| npm install | ||
| npm start | ||
| ``` | ||
|
|
||
| ### Key Concepts | ||
|
|
||
| | Concept | Description | | ||
| |---------|-------------| | ||
| | **Agent Loop** | AI iteratively improves HTML based on feedback | | ||
| | **Component System** | Modular HTML blocks for reuse | | ||
| | **Preview Engine** | Live rendering of generated HTML | | ||
| | **Export Pipeline** | One-click download or deployment | | ||
|
|
||
| ### Supported Use Cases | ||
|
|
||
| - **Quick Prototyping** — Generate HTML layouts in seconds | ||
| - **Component Creation** — AI builds reusable HTML components | ||
| - **Website Drafting** — Start from description, refine with AI | ||
| - **Learning HTML** — See how AI structures HTML code | ||
| - **Template Generation** — Create starter templates for projects | ||
|
|
||
| ### License | ||
|
|
||
| MIT License. | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This FAQ entry changes the documented license from Apache-2.0 to MIT, which conflicts with the existing license badge, the root |
||
|
|
||
| ### Help & Resources | ||
|
|
||
| - [Documentation](https://github.com/nexu-io/html-anything#readme) | ||
| - [Issues](https://github.com/nexu-io/html-anything/issues) | ||
| - [Examples](https://github.com/nexu-io/html-anything/tree/main/examples) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The new |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new
🔁 Powered by Looper · runner=reviewer · agent=opencode · An autonomous AI dev team for your GitHub repos.Getting Startedsnippet is not runnable for this repo as written. At the workspace root there is nonpm startscript (package.jsononly declares the workspace metadata), and the repo guidance above already usespnpm -F @html-anything/next devfor local startup. As a result, someone following this FAQ will hit a dead end immediately. Please replace this block with the real root-level bootstrap commands for this workspace, e.g.pnpm install --frozen-lockfilefollowed bypnpm -F @html-anything/next dev.