opengeni-sites

opengeni-sites is a skill for Codex from Cloudgeni-ai/opengeni. It costs 60 tokens per session (3,712 once invoked), scanned A, original, Apache-2.0.

A way to build interactive web pages as ordinary Bun and React projects, then publish each one as a self-contained HTML file with its editable source retained.

In plain words
What is it for?
It helps create dashboards, visualizations, workflows, and focused apps that can use workspace tools through a typed connection.
Why use it?
It gives developers a defined process for building, checking, editing, and publishing small web applications without requiring a special framework or hosting service.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit It helps create dashboards, visualizations, workflows, and focused apps that can use workspace tools through a typed connection.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cloudgeni-ai/opengeni/opengeni-sites
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Cloudgeni-ai/opengeni --skill opengeni-sites
Clone the repo
git clone --depth 1 https://github.com/Cloudgeni-ai/opengeni

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for opengeni-sites

README.md
[![agentmods](https://agentmods.dev/badge/skills/cloudgeni-ai/opengeni/opengeni-sites/github.svg)](https://agentmods.dev/skills/cloudgeni-ai/opengeni/opengeni-sites)
Your own site
<a href="https://agentmods.dev/skills/cloudgeni-ai/opengeni/opengeni-sites"><img src="https://agentmods.dev/badge/skills/cloudgeni-ai/opengeni/opengeni-sites/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for opengeni-sites

Your own site · 80×15
<a href="https://agentmods.dev/skills/cloudgeni-ai/opengeni/opengeni-sites"><img src="https://agentmods.dev/badge/skills/cloudgeni-ai/opengeni/opengeni-sites.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,712 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00060 $0.03712
Opus 5 $0.00030 $0.01856
Sonnet 5 $0.00012 $0.00742
Haiku 4.5 $0.00006 $0.00371

Measured yesterday against content hash 92b33ca797a9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

opengeni-sites scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

download URL in `downloads.source.url` using curl or Bun, then restore the
packages/runtime/src/bundled_site_skills/opengeni-sites/SKILL.md · 326 lines

How it starts

The opening of the file, as written. The whole thing — 326 lines — stays where its author put it; the contents beside it link to each section on GitHub.

OpenGeni Sites

An OpenGeni Site is an ordinary Bun web application with retained editable source (when supplied) and one published runtime file. React is the default, not a requirement: a plain HTML-only Site is valid. Build and test in the sandbox, then upload the self-contained HTML and optional source.

Do not invent a Site framework, deployment service, App Host, wildcard domain, provider-specific API wrapper, or OpenGeni-only build CLI.

Start from the durable Site

  • For a new Site, create a normal project directory with package.json, index.html, TypeScript/React source, styles, tests, and any ordinary build configuration the app needs.
  • For an edit, call opengeni__artifacts_get_source first and restore the download URL in downloads.source.url using curl or Bun, then restore the source bundle ({entrypoint, files: [{path, content}]}). If source is null, download downloads.html.url and edit that HTML instead. URLs expire; call the tool again to refresh them. The returned current version id is the optimistic-concurrency fence for the next publish.
  • Treat retained source as the editable truth and the compiled HTML as the runtime projection. Never edit only the generated HTML when source exists.
  • Keep secrets, OpenGeni access keys, OAuth tokens, workspace ids, API base URLs, and signed URLs out of the source and generated HTML.

Use normal Bun + React

Use the repository's pinned Bun version and ordinary package scripts. A minimal workflow is:

bun install
bun ./index.html
bun test
bun build --compile --target=browser ./index.html --outdir=dist

Install OpenGeni packages from the npm registry using the exact versions in this Skill's package-versions.json. With skill_read, request {"skill":"opengeni-sites","paths":["package-versions.json"]} and use the returned package/version pairs in bun add --exact package@version .... Reading a Skill does not create local files: do not assume a /workspace/.agents path exists. If this Skill is already checked out, read the file at its actual location instead. Do not use latest, canary, or version ranges. First check for the local-development exception below. Keep these exact dependencies in saved source. Missing expected exports indicate a package mismatch, not a reason to replace the standard conversation component with custom wiring. The pins include @opengeni/ogtool. Run bun run ogtool ... from this project for discovery and calls; a sandbox-global CLI can predate the deployment.

Read the full file on GitHub · 326 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday Changed · +30 lines 92b33ca797a9
  2. 2d ago Changed · +121 lines 2169fba312f7
  3. 5d ago First seen · 175 lines · 60 tokens per session scan A a5f9ff2b4629

Subscribe to this mod's changes

opengeni-sites is a skill published in the GitHub repository Cloudgeni-ai/opengeni (127 stars, last pushed today), licensed Apache-2.0. It adds 60 tokens to every session and 3,712 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.