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.
curl -O https://raw.githubusercontent.com/Cloudgeni-ai/opengeni/main/.agents/skills/opengeni-documents/SKILL.mdgit clone --depth 1 https://github.com/Cloudgeni-ai/opengeniWrote 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.
[](https://agentmods.dev/skills/cloudgeni-ai/opengeni/opengeni-documents)<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.
<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>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once 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 |
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.
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, thenopengeni__editable_artifact_getwhen needed. Do not guess an id from chat. - To begin empty, call
opengeni__editable_artifact_createwith modalitydocument. - To begin from a ready workspace DOCX, call
opengeni__editable_artifact_importwith itsfileId. 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
fileIdboundaries without local bytes.
Edit and verify
- Inspect the current head. Start with
summary; inspect the relevant body, section, header/footer story, or review page before changing it. - Make the smallest coherent edit. One
opengeni__editable_artifact_applycall is one atomic command batch. Use stable ids from inspection for existing objects andopenGeni.artifacts.ids.document(...)for new objects in CodeMode. A direct call must pass the inspectedheadSequenceandstateHash; CodeMode carries its last read head automatically. - 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.artifactsfrom@opengeni/codemode. Both paths execute the exact same frozen tools and authorization. - Inspect again after mutation. If concurrent work invalidates an assumption, re-inspect and recompute; never force a stale rewrite.
- Use real paragraphs, styles, tables, sections, page breaks, comments, and tracked changes—not spaces, Unicode bullets, or flattened screenshots.
- Export only when the user needs DOCX/PDF/image delivery or visual QA.
opengeni__editable_artifact_export_statusreturns a durable workspacefileId; it does not write into the sandbox. Download that file only if local bytes are needed.
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.
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.
- 9d ago First seen · 68 lines · 60 tokens per session scan A 4e8481afa6ff
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.
Other skills, from other repositories
csv-workbench
Analyze CSV files in /mnt/data and return concise numeric summaries.
oracle
Oracle second-model review: bundle prompts/files, debug, refactor, design.
coding-standards
Universal coding standards, best practices, and patterns for TypeScript, JavaScript, React, and Node.js development.
review-export
Export CocoReview reports as markdown, html, or pdf-ready status artifacts. Usage: $review export markdown|html|pdf [report-path].
output-eval-error-analysis
Systematically review workflow traces to identify failure modes before building evaluators. Use when starting an eval project, after significant pipeline changes, or when production quality drops.
output-build-workflow
Implement an Output SDK workflow from a plan document. Use when the user asks to build, implement, or code a workflow from an existing plan, or after output-plan-workflow has produced a plan and the user is ready to build.