Install
Add the marketplace once.
Choose the edition for your app. Both cover the same catalog; each carries instructions for its own tools and task lifecycle.
Runs natively onClaude CodeCodex
Claude Code
Claude Code installs plugins one at a time, so the catalog is split into 8 — take the pack on its own, individual skills, or the full set.
$ /plugin marketplace add timharris707/skills$ /plugin install advisory-board@skills # 1 skill$ /plugin install team-workflow@skills # 16 skills$ /plugin install ingest@skills # 1 skill$ /plugin install huh@skills # 1 skill$ /plugin install writing-for-agents@skills # 1 skill$ /plugin install writing-for-humans@skills # 1 skill$ /plugin install plainspoken@skills # 1 skill$ /plugin install blast-radius@skills # 1 skillThird-party marketplaces don't auto-update by default. Turn it on once — /plugin → Marketplaces → skills → Enable auto-update — or new releases wait until you run claude plugin update yourself.
Codex desktop, adapted for Astra workflows
All 23 skills arrive in clickai-codex v1.1.1, adapted for Codex desktop. Use Astra at medium for everyday work and extra high when you want more reasoning. The plugin respects your selection; these are workflow recommendations, not benchmark results.
$ codex plugin marketplace add timharris707/skills$ codex plugin add clickai-codex@clickai # 23 skillsUse a current Codex CLI with plugin support. In the desktop app, open Plugins, select the Click AI marketplace, and install Click AI for Codex. Start a new task to load it, then ask for clickai-codex:setup in your project.
Already using clickai-skills in Codex? Disable that legacy plugin in the same profile when installing this edition to avoid duplicate skill names. Its original package remains available. Claude Code installations keep their existing commands and versions.
This edition keeps checkpoints in the current task through compaction. It installs no automatic hooks and changes no global instructions, model settings, accounts, or Claude configuration. Python 3 and Git run its bundled checkpoint helper. The individual skills explain any additional tools they need.
Teams use the same public plugin. Keep organization rules in each project's AGENTS.md. Workspace admins can import the GitHub marketplace. If you use several Codex homes, install the same version in each. To update, refresh the marketplace and update the plugin in Codex's Plugins panel, then start a new task.
Read Codex orchestration → · Versioned downloads →
Any other runtime
On Claude Code or Codex, use the plugin commands above — agents installing on someone's behalf run the claude plugin or codex plugin CLI from their shell, or relay the commands to their user; never copy skills into place one file at a time. For harnesses without plugin support, clone the repository and point your agent at the skill directories. Symlinks track updates on git pull; copies pin what you have.
git clone https://github.com/timharris707/skills.git agent-skills
for d in agent-skills/skills/*/*/; do
[ -f "$d/SKILL.md" ] || continue
ln -s "$(pwd)/$d" ~/.claude/skills/"$(basename "$d")"
doneReading it as an agent
Every page on this site has a Markdown twin: append .md to any skill URL, or start from /llms.txt for the whole catalog in one file.