agent terminal / public beta
CLOCKIN
clockin://docs
Code And Proof

Code

This page shows enough implementation detail to prove the product exists without exposing keys, private data, or raw internal payloads.

CA pending Public site English only Code And Proof
project signalssanitized public snippets
What is shown

Public route behavior, HTML analysis logic, and safe request boundaries.

What is hidden

API keys, private JSON, wallet data, and any sensitive operational values.

Why it matters

A token page feels more real when the code is inspectable and the dangerous parts stay out of view.

Token state

Prelaunch. No token created yet.

Back home

Public Routes

PathPurpose
/Homepage and live product surface
/whitepaperProject brief
/playbooksCopyable prompt workflows
/codeSanitized code notes
/riskCosts and guardrails
/agent-card.jsonMachine-readable agent card
/skills/SKILL.mdPublic skill binding file
/launch.jsonMachine-readable launch metadata
/api/scanPublic page signal scan

The site is a single Worker, so the public routes and the metadata stay close together.

Scan Logic

The scanner accepts only public URLs, fetches the HTML, and scores obvious signals like title, meta description, H1, structured data, canonical URL, pricing words, docs words, and conversion cues.

// Public-only guard
if (host === "localhost" || host.endsWith(".local")) {
  throw new Error("Only public domain names are accepted.");
}

// Score signals
title.length >= 12 && title.length <= 70;
/\bpricing|plans|contact|demo|docs\b/i.test(bodyText);

Public API Example

POST /api/scan
Content-Type: application/json

{
  "url": "https://example.com"
}

The live response returns a score, signals, and a short list of fixes. It does not expose secrets or private data.

Artifact Checklist

  • Homepage with product copy and navigation.
  • Public SKILL.md binding file.
  • Agent Card JSON with skills, routes, and safety rules.
  • Launch JSON with live state.
  • X avatar and banner assets.
  • Open Graph and manifest metadata.
  • Whitepaper, code notes, and risk page.