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)