Sandbox
@Rylaispirit/rylai-codex-hermes-skills

Portable Agent Skills for Codex and Claude

This repo packages 35 reusable skills that agents can load as plain `SKILL.md` folders. The same skill content works across Codex, Hermes, and Claude; only the install location changes. It also includes Vietnamese documentation, provenance files, checksum manifests, and scripts to build and verify the bundle.

55 stars41 forksPythonUpdated 1mo ago
Who it's for

Builders who want to add reusable skill packs to Codex, Claude, or Hermes sessions.

What it delivers

You can install the same skill set across agent runtimes instead of rebuilding prompts and workflows for each one.

What it does

35 portable skills

Skills cover writing, research, data, documents, presentations, design, media, finance, deployment, and skill creation.

Per-skill folders

Each skill lives in its own `SKILL.md` folder, with extra files only when needed.

Prebuilt Claude archives

`packages/` contains one ZIP per skill for Claude skill-management flows.

Installers for each runtime

PowerShell and shell installers place skills into the right directory for Codex, Hermes, or Claude.

Verification and checksums

`verify_bundle.py` and the checksum files check structure, provenance, and archive sync.

Vietnamese guide

`GIAI_THICH_SKILLS_VI.md` explains every skill in Vietnamese with purpose, inputs, outputs, and examples.

How to get it

  1. 1Run
    .\install-codex.ps1
  2. 2Run
    bash install-hermes.sh
  3. 3Run
    bash install-claude.sh
  4. 4Run
    .\install-claude.ps1
  5. 5Rebuild them after editing any skill
    python build_claude_packages.py --clean
  6. 6Copy one directory from skills/ into the skill directory used by your agent
    Codex:  ~/.agents/skills/<skill-name>
    Hermes: ~/.hermes/skills/<skill-name>
    Claude: ~/.claude/skills/<skill-name>          personal, every session
            <project>/.claude/skills/<skill-name>  one project only

README

Rylai Codex-Hermes-Claude Skills

A personal collection of portable Agent Skills curated, adapted, and maintained by Rylai for Codex, Hermes, and Claude.

The bundle contains 35 independent skills for writing, research, data, documents, presentations, design, media, finance, deployment, and skill creation. The skills can be installed together or copied individually.

Every skill is a plain SKILL.md folder with no runtime lock-in, so the same files load in Codex, Hermes, and Claude. Only the install location differs.

Ownership And Sources

  • Rylai authors the bundle structure, installers, validators, Vietnamese guide, clean-room replacements, compatibility notes, and original helper scripts.
  • Skills adapted from public GitHub projects retain their upstream repository, revision, author, and license information.
  • An upstream credit means the corresponding author owns their original work. Rylai is the maintainer and adapter of this Codex-Hermes-Claude edition.
  • No private workstation paths, credentials, proprietary vendor schemas, remote placeholder images, or marketplace control skills are included.

See THIRD_PARTY_NOTICES.md and PROVENANCE.yml for the release provenance.

Vietnamese Guide

See GIAI_THICH_SKILLS_VI.md for a Vietnamese description of every skill, including its purpose, expected inputs and outputs, runtime requirements, and example requests.

Installation

Codex

.\install-codex.ps1

Use -Force to replace existing skills. Existing folders are backed up first.

Hermes

bash install-hermes.sh

Use --force to replace existing skills. Existing folders are backed up first.

Claude

bash install-claude.sh
.\install-claude.ps1

Use --force (-Force in PowerShell) to replace existing skills. Existing folders are backed up first.

The default target is the personal skill directory, so the skills load in every Claude session. Pass --project (-Project) to install into .claude/skills next to the current project instead, or --target <dir> (-Target <dir>) to choose the directory yourself. Skills are discovered when a session starts, so start a new Claude session after installing.

Claude reads the same SKILL.md frontmatter as the other runtimes. The extra agents/openai.yaml file in each skill is ignored there and is kept only so one checkout serves all three agents.

Prebuilt Claude ZIP Files

packages/ holds one .zip archive per skill, built from skills/ by build_claude_packages.py. Each ZIP has the skill folder at its root, including that folder's SKILL.md and bundled resources.

Use these with Claude.ai or Cowork through the skill-management interface. Claude Code should use the unpacked folders through install-claude.sh, install-claude.ps1, or a manual copy into a Claude skill directory.

Rebuild them after editing any skill:

python build_claude_packages.py --clean

Archives are reproducible, so an unchanged skill keeps its checksum. Per-archive hashes are written to packages/checksums.sha256.

Install One Skill

Copy one directory from skills/ into the skill directory used by your agent:

Codex:  ~/.agents/skills/<skill-name>
Hermes: ~/.hermes/skills/<skill-name>
Claude: ~/.claude/skills/<skill-name>          personal, every session
        <project>/.claude/skills/<skill-name>  one project only

Status Meanings

  • ready: instruction workflow is usable without a special proprietary runtime.
  • conditional: requires an optional package, binary, login, API, or renderer.
  • adapted-core: the portable core is available; advanced integrations may be intentionally omitted.

Runtime requirements are described in each SKILL.md and in manifest.json.

Verification

python -m pip install -r requirements-verify.txt
python verify_bundle.py

The verifier checks skill structure, UI metadata, Rylai maintainer metadata, provenance, manifest consistency, Markdown fences and inline code spans, private paths, banned vendor residue, third-party notices, and whether all 35 Claude ZIP packages are still in sync with skills/.

checksums.sha256 covers the source files in this repository. The generated archives are covered separately by packages/checksums.sha256. Both are plain sha256 manifests:

sha256sum -c checksums.sha256
cd packages && sha256sum -c checksums.sha256

The archive manifest lists bare file names, so check it from inside packages/.

Get-FileHash -Algorithm SHA256 <file>

Regenerate the release checksum file after changing any source file:

python build_claude_packages.py --release-checksums

Repository Layout

skills/
  <skill-name>/
    SKILL.md
    agents/openai.yaml
    scripts/ references/ assets/ ... when required
manifest.json
PROVENANCE.yml
THIRD_PARTY_NOTICES.md
packages/
  <skill-name>.zip
  checksums.sha256
GIAI_THICH_SKILLS_VI.md
install-codex.ps1
install-hermes.sh
install-claude.ps1
install-claude.sh
build_claude_packages.py
verify_bundle.py

License

Rylai-authored material is released under the MIT License. Third-party material keeps its original license; see the notices and provenance files.

This is a community project and is not endorsed by the agent platforms or the upstream repositories listed in the notices.

Files in the repo

Repository payload21 top-level entries
  • packages
  • skills
  • .gitattributes
  • .gitignore
  • build_claude_packages.py
  • checksums.sha256
  • CONTRIBUTING.md
  • GIAI_THICH_SKILLS_VI.md
  • install-claude.ps1
  • install-claude.sh
  • install-codex.ps1
  • install-hermes.sh
  • LICENSE
  • manifest.json
  • NOTICE
  • PROVENANCE.yml
  • README.md
  • requirements-verify.txt
  • SECURITY.md
  • THIRD_PARTY_NOTICES.md
  • verify_bundle.py

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More skills

Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.

117k
1 add

Open-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)

71k
ayghri/
i-have-adhd

A skill to stop your coding agent from burying the answer. ADHD-friendly output.

38k
mvanhorn/
last30days-skill

AI agent skill that researches any topic across Reddit, X, YouTube, HN, Polymarket, and the web - then synthesizes a grounded summary

62k
Nanako0129/
sepia

De-AI writing skill for any Agent Skills-compatible agent (77+ via the Skills CLI), with native plugins for Claude Code, Codex, Grok Build, and Antigravity. Narrative-architecture repair for fiction, venue-matched rules for professional prose. Based on StoryScope (arXiv:2604.03136).

2.5k
Imbad0202/
academic-research-skills

Academic Research Skills for Claude Code: research → write → review → revise → finalize

48k