KusumaOS-generated: Coder sandbox smoke test 5
  • JavaScript 58.9%
  • HTML 41.1%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-09-05 07:46:09 +00:00
index.html @coder: automated implementation 2026-09-05 07:45:35 +00:00
README.md @coder: automated implementation 2026-09-05 07:45:35 +00:00
test.js @coder: automated implementation 2026-09-05 07:45:35 +00:00

coder-sandbox-smoke-test-5-mto2thad

KusumaOS-generated: Coder sandbox smoke test 5

What this is

A single static HTML file (index.html) that renders a "Hello!" message. It has no backend, no build step, and no dependencies. It is not a product — it exists purely to exercise the @coder agent's sandbox pipeline (repo checkout, file creation, commit, and PR flow) end to end, per the approved feasibility spec for "Coder sandbox smoke test 5".

How to run it

Open index.html directly in any web browser (double-click it, or run a command like open index.html / xdg-open index.html). No server or build step is required.

Optionally, serve it locally for a URL-based preview:

python3 -m http.server 8000
# then visit http://localhost:8000/

Tests

test.js is a small dependency-free Node.js script that checks:

  • index.html exists and is non-empty.
  • It contains a <h1> (or similar) element with the word "Hello".
  • It is minimally well-formed HTML (has <!DOCTYPE html>, <html>, <head>, <body> tags).

Run it with:

node test.js

Success criteria for this smoke test: the file exists, renders a hello message, and the checks in test.js pass.