A Codex-native edition of 13 GPT-5.6 skills, compressed instructions, and a lightweight routing core. 16 stars, no listed license, active in July 2026.
Collecting history — the radar snapshots this repo daily. The trend line appears after 3 days of data (1 so far).
What it is
A Codex-native edition of 13 Superpowers skills tailored for the GPT-5.6 family. It aims to keep outcomes and validation explicit while reducing token overhead relative to upstream.
How it works
The repository contains 13 skills under skills/superpowers. Each skill is a SKILL.md file; the installation process involves cloning the repo, creating a separate skill link for each SKILL.md, and using Codex commands to install all 13 skills. The router used is named using-superpowers and the bundle enforces a lightweight core loop with on-demand loading of extra processes.
Getting started
Install manually:
set -eu
repo="$HOME/.agents/superpowers-gpt-5.6"
skills_dir="$HOME/.agents/skills"
git clone --depth 1 https://github.com/eagleagentic/superpowers-gpt-5.6.git "$repo"
mkdir -p "$skills_dir"
for skill in "$repo"/skills/superpowers/*; do
[ -f "$skill/SKILL.md" ] || continue
target="$skills_dir/$(basename "$skill")"
if [ -e "$target" ] || [ -L "$target" ]; then
echo "Refusing to overwrite existing skill: $target" >&2
exit 1
fi
done
for skill in "$repo"/skills/superpowers/*; do
[ -f "$skill/SKILL.md" ] || continue
ln -s "$skill" "$skills_dir/$(basename "$skill")"
done
Verify and update:
git -C "$HOME/.agents/superpowers-gpt-5.6" pull --ff-only
Open /skills and confirm the 13 skills appear, then invoke $using-superpowers in a new turn.
For Codex exact prompt usage, see the README where installation can be triggered via Codex helpers.
Recent releases
- none
Traction
- 16 stars; forks: 1; open_issues: 0
Caveats
- license: none listed
- created: 2026-07-11; last_push: 2026-07-12
- language: JavaScript
