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 ready 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

CA added. HXyjgP4T2o7pp8NHkhkHUD1ZRNZR2zhbFgGybjbapump

Open Pump

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
/api/draft-skillSKILL.md draft generator
/api/creator-passNo-signature Solana creator readiness preview

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"
}

POST /api/creator-pass
Content-Type: application/json

{
  "creator": "city in the sky",
  "wallet": "PUBLIC_SOLANA_ADDRESS",
  "skillIdea": "Audit a public landing page and return buyer-facing fixes"
}

The live responses return public utility artifacts: scan signals, skill draft data, or a creator readiness card. They do not expose secrets, connect wallets, sign messages, check balances, or transfer tokens.

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.
  • Creator Pass preview API for public Solana addresses.
  • X avatar and banner assets.
  • Open Graph and manifest metadata.
  • Whitepaper, code notes, and risk page.