sugiro.ai
EN BR
Open navigation
EN BR
home
ai consultancy
ai projects AI coding guide bitcoin calculator capital gains calculator card tracker dots animation tool glossary builder hash cost calculator prompt builder QR code generator rock drive backup short URL tech stacks
generative design about me contact
Tech Stacks BTC Calculator
Tech Stack Review

AI Coding Guide

A bilingual, beginner-focused guide to agentic CLI coding tools (Claude Code and Codex) built as a single static page. It covers install steps, a first-project workflow, publishing to GitHub and Vercel, and a showcase of projects built with these tools, with no framework or build step.

Live at: https://aicoding.sugiro.ai/

AI Coding Guide project screenshot

Overview

Type Static single-page guide
Language HTML + CSS + JavaScript
i18n Custom data-i18n translation dictionary
Content Install, build, publish, learn, and projects sections
Build step None
Runtime Browser only

Main Stack

The guide is intentionally minimal and browser-native, just like the projects it documents.

Markup

Single HTML entry point

index.html holds the page shell, all four sections, the bilingual copy targets, and the inline publish-flow diagram in one file.

Styling

Inline styles

All layout, typography, and the sticky top navigation with language switcher live in a single inline stylesheet, keeping the guide fully self-contained.

i18n

Custom translation dictionary

A JavaScript object maps every data-i18n key to English and Portuguese strings. Switching language rewrites the matching elements' innerHTML and persists the choice in localStorage.

Interaction model

Read, install, build, publish

The reader scrolls through four sections in order: installing Claude Code and Codex, starting a first project, publishing it to GitHub and Vercel, and where to learn more.

Runtime model

No framework or build tool

The project has no package manifest, bundler, or API layer. Everything runs as a static file served directly, with plain DOM scripting for translation and language persistence.

Publish diagram

Hand-built SVG flow

The Publish section includes an inline SVG diagram (Local Folder → GitHub → Vercel) built with plain markup and CSS, not an external diagramming library.

How It Runs

The guide is one static page that greets the reader in Portuguese by default and lets them switch language on the fly.

1

The browser loads the static shell

index.html renders the sticky topbar with the sugiro.ai brand and language switcher, then the four content sections inside main.

2

The translations object initializes on load

A script reads the saved language from localStorage (defaulting to Portuguese) and applies the matching dictionary to every data-i18n element.

3

The reader installs the tools

The Install section walks through npm install commands for Claude Code and Codex on Mac, Node.js prerequisites, and Windows-specific notes.

4

The reader builds and publishes something

The Build Something section suggests a first project and links to the Prompt Builder tool, then the Publish section walks through Git, GitHub, and Vercel deployment with the inline flow diagram.

5

The reader explores further

The Learn More and My Projects sections link out to people to follow, external resources, and the sugiro.ai AI Projects showcase.

Architecture Map

This is one of the simplest architectures in the workspace: one HTML file with everything inlined.

Key files
index.htmlPage structure, all four sections, inline styles, the publish-flow SVG diagram, and the translations script.
favicon-cg.pngThe site favicon and Open Graph image.
Architecture Analysis
index.html
favicon-cg.png

There is no separation between markup, styling, and behavior; the entire guide is intentionally kept in one file for maximum portability.

Content and Runtime

The page runs entirely in the browser and persists only the reader's language preference; no backend or remote storage is involved.

Content-driven

Four static sections

Install: setup commands and docs links for Claude Code and Codex.

Build Something: a minimal first-project workflow and a link to the Prompt Builder tool.

Publish: a Git, GitHub, and Vercel walkthrough with an inline flow diagram.

Learn More and My Projects: people to follow, external resources, and a link to the sugiro.ai AI Projects showcase.

Persistence model

Only the language choice is stored

The chosen language (English or Portuguese) is saved in localStorage and restored on the next visit.

No reader input, form data, or usage analytics are collected.

There is no account system, database, or API calls of any kind.

The guide remains a read-only reference page.

Run Commands

There is no package install or framework workflow here.

Local usage
open index.html

# or
python -m http.server

You can open the file directly or serve it from a tiny local static server if you prefer local URLs instead of file://.

Environment setup

What the project expects

No npm install step.

No environment variables.

No API keys.

No backend services or external runtime dependencies.

Bottom Line

AI Coding Guide is a lightweight bilingual reference page built with plain HTML, CSS, and browser JavaScript, using a custom translation dictionary and an inline flow diagram to document the author's own learning loop with Claude Code and Codex.

2026 Lula Rocha. Almost all rights reserved.