opengeni: Skill for Codex

.agents/skills/opengeni-documents/SKILL.md

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

A skill for creating and editing durable OpenGeni documents and delivering Word-compatible DOCX files. It covers documents such as reports, proposals, forms, and tables, including sections, headers, comments, and tracked changes.

In plain words
What is it for?
Use it to create, inspect, edit, review, import, and export documents, while preserving comments, tracked changes, tables, headers, and footers.
Why use it?
It keeps one visible working document as the source of truth instead of creating competing file copies or an untracked DOCX version.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents).

This is Cloudgeni-ai/opengeni's own configuration. It tells Codex how to work on opengeni itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything opengeni configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Cloudgeni-ai/opengeni. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Cloudgeni-ai/opengeni/main/.agents/skills/opengeni-documents/SKILL.md
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-documents

README.md
[![agentmods](https://agentmods.dev/badge/skills/cloudgeni-ai/opengeni/opengeni-documents/github.svg)](https://agentmods.dev/skills/cloudgeni-ai/opengeni/opengeni-documents)
Your own site
<a href="https://agentmods.dev/skills/cloudgeni-ai/opengeni/opengeni-documents"><img src="https://agentmods.dev/badge/skills/cloudgeni-ai/opengeni/opengeni-documents/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-documents

Your own site · 80×15
<a href="https://agentmods.dev/skills/cloudgeni-ai/opengeni/opengeni-documents"><img src="https://agentmods.dev/badge/skills/cloudgeni-ai/opengeni/opengeni-documents.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 793 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00793
Opus 5 $0.00030 $0.00396
Sonnet 5 $0.00012 $0.00159
Haiku 4.5 $0.00006 $0.00079

Measured 9d ago against content hash 4e8481afa6ff, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

opengeni-documents scanned grade A with 0 findings 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 9d ago.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/opengeni-documents/SKILL.md · 68 lines

How it starts

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

OpenGeni documents

The durable OpenGeni artifact is the default working document. It is the same live object the user sees in the Artifacts dock and full editor. Never create a mutable DOCX shadow, publish a sandbox file, or alternate between file and artifact state.

Read references/api.md before editing.

Choose the canonical object

  • If the user means “this document” or a visible document, call opengeni__editable_artifact_list, then opengeni__editable_artifact_get when needed. Do not guess an id from chat.
  • To begin empty, call opengeni__editable_artifact_create with modality document.
  • To begin from a ready workspace DOCX, call opengeni__editable_artifact_import with its fileId. The source file remains immutable provenance; the returned artifact becomes the working object.
  • Use a standalone local DOCX only when the user explicitly asks to manipulate sandbox-local bytes and the pinned local runtime is actually available. Normal import/export uses workspace fileId boundaries without local bytes.

Edit and verify

  1. Inspect the current head. Start with summary; inspect the relevant body, section, header/footer story, or review page before changing it.
  2. Make the smallest coherent edit. One opengeni__editable_artifact_apply call is one atomic command batch. Use stable ids from inspection for existing objects and openGeni.artifacts.ids.document(...) for new objects in CodeMode. A direct call must pass the inspected headSequence and stateHash; CodeMode carries its last read head automatically.
  3. For one simple edit, call the artifact tools directly. For loops, several inspections, generated ids, or a multi-part batch, write auditable Bun code using openGeni.artifacts from @opengeni/codemode. Both paths execute the exact same frozen tools and authorization.
  4. Inspect again after mutation. If concurrent work invalidates an assumption, re-inspect and recompute; never force a stale rewrite.
  5. Use real paragraphs, styles, tables, sections, page breaks, comments, and tracked changes—not spaces, Unicode bullets, or flattened screenshots.
  6. Export only when the user needs DOCX/PDF/image delivery or visual QA. opengeni__editable_artifact_export_status returns a durable workspace fileId; it does not write into the sandbox. Download that file only if local bytes are needed.

Read the full file on GitHub · 68 lines

Files

What ships with it

2 files 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. 9d ago First seen · 68 lines · 60 tokens per session scan A 4e8481afa6ff

Subscribe to this mod's changes

opengeni-documents is a skill published in the GitHub repository Cloudgeni-ai/opengeni (125 stars, last pushed today), licensed Apache-2.0. It adds 60 tokens to every session and 793 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.