skill-gen-4-enterprise-doc

skill-gen-4-enterprise-doc is a skill for Claude Code, Codex from XiaoLuoLYG/GOD. It costs 86 tokens per session (1,198 once invoked), scanned A, original, Apache-2.0.

A skill package that turns standard operating procedures, web pages, or stated workflows into installed skills for an AI coding agent.

In plain words
What is it for?
Use it to extract a procedure from a file, URL, or pasted text, generate a skill draft, and install the resulting package.
Why use it?
It structures informal instructions into a reusable package, reducing the work needed to make a workflow repeatable.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to extract a procedure from a file, URL, or pasted text, generate a skill draft, and install the resulting package.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/xiaoluolyg/god/skill-gen-4-enterprise-doc
About the project

GOD is a control room for observing and directing societies of language-model agents running in simulated worlds. It lets researchers inspect replays, question individual agents, alter future events, reset simulations, and export experiments for reuse. The catalogue entries are skills and agents for operating and investigating these simulations.

XiaoLuoLYG/GOD · 1,107 stars · on GitHub · xiaoluolyg.github.io

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 XiaoLuoLYG/GOD --skill skill-gen-4-enterprise-doc
Clone the repo
git clone --depth 1 https://github.com/XiaoLuoLYG/GOD

Made for: Claude Code, 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 skill-gen-4-enterprise-doc

README.md
[![agentmods](https://agentmods.dev/badge/skills/xiaoluolyg/god/skill-gen-4-enterprise-doc/github.svg)](https://agentmods.dev/skills/xiaoluolyg/god/skill-gen-4-enterprise-doc)
Your own site
<a href="https://agentmods.dev/skills/xiaoluolyg/god/skill-gen-4-enterprise-doc"><img src="https://agentmods.dev/badge/skills/xiaoluolyg/god/skill-gen-4-enterprise-doc/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 skill-gen-4-enterprise-doc

Your own site · 80×15
<a href="https://agentmods.dev/skills/xiaoluolyg/god/skill-gen-4-enterprise-doc"><img src="https://agentmods.dev/badge/skills/xiaoluolyg/god/skill-gen-4-enterprise-doc.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,198 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.00086 $0.01198
Opus 5 $0.00043 $0.00599
Sonnet 5 $0.00017 $0.00240
Haiku 4.5 $0.00009 $0.00120

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

Security

Grade A, and why

skill-gen-4-enterprise-doc 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.

The scan reads SKILL.md. This mod also ships 12 executable files (scripts/skill_gen/__init__.py, scripts/skill_gen/models.py, scripts/skill_gen/sop_chunk_merge.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

jiuwenclaw/jiuwenclaw/resources/agent/jiuwenclaw_workspace/skills/skill-gen-4-enterprise-doc/SKILL.md · 51 lines

How it starts

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

Skill Generator (enterprise doc → installed skill)

Instructions here, reference/, and scripts/ (package scripts/skill_gen/). You obtain SOP plain text, run full structured extraction exactly as in reference/sop-structure-pipeline.md, author the package under get_agent_workspace_dir() / "skills-draft" (per reference/generator-worker-spec.md), then immediately promote it so the skill is installed and loadable (see reference/operator-playbook.md canonical flow).

What you do (high level)

  1. Plain text
    • Local filepython3 <ABS>/scripts/skill_generator_cli.py sop-text --sop-file <abs-path> [--out-text <path>] or read the file in-tool; optional --print-raw-chars for length.
    • HTTP(S) / WeChaturl-fetch --url '…' [--out-json <path>] then use page text as the SOP body for extraction.
    • Pasted only — use the same string as input to parse_sop_raw_text (no skipping structured extraction).
  2. Structured SOP (required)skill_gen.sop_parser.parse_sop_file or parse_sop_raw_text with invoke_llm_json (single path; sop-structure-pipeline.md).
  3. Draft package → under get_agent_workspace_dir() / "skills-draft" / <skill_name> (when the host exposes that helper) or the equivalent agent-workspace path from the system prompt: SKILL.md (YAML frontmatter first) plus optional reference/, per generator-worker-spec.md. Create skills-draft next to the runtime skills/ folder if it does not exist.
  4. Install in the same workflow → Call skills.import_local with path = absolute path to that draft directory (folder containing SKILL.md). Use force: true if get_agent_skills_dir() / <skill_name> already exists and should be replaced. Do not stop after step 3 and ask the user to import manually; promotion is part of this skill’s default completion.

Read the full file on GitHub · 51 lines

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 · 51 lines · 86 tokens per session scan A 391621e32b0b

Subscribe to this mod's changes

skill-gen-4-enterprise-doc is a skill published in the GitHub repository XiaoLuoLYG/GOD (1,107 stars, last pushed 16d ago), licensed Apache-2.0. It adds 86 tokens to every session and 1,198 once invoked, about $0.0004 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-09-03.