This is a guide to get up your own website

A concise walkthrough to set up your AI coding environment and publish a simple site.

Step 1 (setting up your AI coding enviroment (P.S. you can do this or just make the website on claude.ai) )

Step 1.1 (setting up ollama)

  1. go to ollama.com
  2. download ollama app for windows or mac
  3. open the ollama app
  4. go to settings:

ollama settings

Then go to Sign in:

sign in

After signing in, you should see something like this:

signed in

After that, go terminal and type ollama signin, sometime it says its already signed in like:

already signed in

if not, just sign in again, then your set!

then, to test it, go to Powershell in windows or Terminal and type ollama run glm-4.7:cloud:

ollama run glm-4.7:cloud
Copied ✓

ollama run

When you run that, you should see this:

run output

A simple Hi! checks if you are actually signed in

hi check


Step 1.2 (Installing Claude Code)

  1. go to terminal (in mac) and type curl -fsSL https://claude.ai/install.sh | bash, and for Powershell (Windows), type irm https://claude.ai/install.ps1 | iex

Step 1.3 (making the website)

  1. Go make a directory, so downloads/my-web-page for example to work on.
  2. Then go to your directory, so cd {your path}, example: cd downloads/backup/hallo
  3. Then, go to terminal and type ollama launch claude --model glm-4.7:cloud and you should see:

claude launch

Now you can work on your website!


Step 1.4 (Installing claude skills)

  1. first, get the Taste skill which teaches the model what looks like AI generated slop and what is aesthetically pleasing. To download it run npx skills add Leonxlnx/taste-skill in your terminal. select skills by pressing space and move down.

select skills

Then make sure that claude Code is selected:

claude code selected

Then press enter and press global:

install global

Then press enter, and select Symlink as the Installation method, and press Proceed with install.

Next skill Is the Impeccable skill. Run npx skills add pbakaus/impeccable

Install UI/UX pro max by running uipro init --ai claude:

uipro init

Install Superpowers Skill in Claude Code by running /plugin install superpowers@claude-plugins-official and follow prompts:

plugin install


Step 1.5 (Initializing the skills)

Run these one at a time in Claude Code: /impeccable, /ui-ux-pro-max, /using-superpowers


step 2 (The vibe coding (Also P.S. you can just tell claude to make it anyway) )

  1. now, you can tell what you want to make to claude, and tell it to make a prompt for Claude Code, so the prompt for claude will be something like this: hi claude! I need your help making me a prompt for claude code, I have 3 skills, superpowers, impeccable and ui-ux-pro-max skill. The website must be a HTML page without any react or anything like that since this will go onto github pages. I want to make a website for {website idea}.
  2. Claude will give you a nice polished prompt like (my example): example prompt.
  3. Then you feed that prompt to Claude Code: feed prompt
  4. If it asks for any tool use, let it cook! just enable all the tool calls and command line uses it asks for, if there’s an error it will fix it itself, something like: tool use

Then, when you are done, it should give you a simple html file output, like Example Webpage.

With that, you are now done with the Vibe Coding step! now, open the html file (not chrome! in a text editor), and copy it. Then, head onto github.com, and create a new repository for this. After this, click Add file, and then Create new file:

create new file

And call it index.html (required!), then press Commit Changes:

commit changes

Now, head onto cloudflare pages, then sign up. After that, go onto Compute and then Workers & Pages:

cloudflare compute

After that, click on Create Application:

create application

After that, press "Looking to deploy Pages? Get started!" thing

get started pages

After that, press "Import an existing Git repository"

import existing repo

Now press "Connect Github"

connect github

After the Setup process, you should see your github account

github account

And then select your repository and press Begin Setup

begin setup

Then, change project name to get your "website_name.pages.dev"

set pages name

After that, scroll down and press "Save and Deploy"

save and deploy

Copied ✓