Releases: superchaospc/share-skill-with-codex
Release list
v1.1.0
Added
install.sh— one-shot setup: bootstraps this skill and links every existing Claude Code skill into Codex's dirs in a single command.- Automation docs — a bilingual Automation (hands-off) section showing a Claude Code SessionStart hook that runs
link-skill --allon every launch, so skills sync to Codex deterministically with zero manual steps.
Install
```bash
git clone https://github.com/superchaospc/share-skill-with-codex ~/.claude/skills/share-skill-with-codex
~/.claude/skills/share-skill-with-codex/install.sh
```
v1.0.0
First public release.
share-skill-with-codex makes your other skills cross-tool: install it once and any skill you write becomes auto-discoverable (and auto-triggerable) in both Claude Code and Codex.
Claude Code and Codex use the identical skill format (SKILL.md + name:/description: frontmatter); they only scan different dirs. This skill bundles link-skill, which validates a skill's frontmatter and symlinks it into every installed agent's skill dir (~/.codex/skills, ~/.agents/skills) — one source of truth, no AGENTS.md rewrite.
Install
```bash
git clone https://github.com/superchaospc/share-skill-with-codex ~/.claude/skills/share-skill-with-codex
~/.claude/skills/share-skill-with-codex/scripts/link-skill --bootstrap # one-time
~/.claude/skills/share-skill-with-codex/scripts/link-skill --all # optional: retrofit existing skills
```
Restart Codex to rescan.
Features
- Portable — agents that aren't installed are skipped (safe no-op, no littering)
- Idempotent, refuses to overwrite real (non-symlink) dirs
- Self-bootstrapping (
--bootstrap), bulk link (--all), dry-run (-n), unlink (-u)