What's New
cc-thingz now works across three AI coding CLI tools: Claude Code, OpenAI Codex CLI, and Google Gemini CLI. All 30 skills are served with platform-optimized instructions tuned for each model family.
Cross-Platform Skill Delivery
Skills are classified into three tiers and processed by a build system (generate-overlays.py) that produces platform-optimized variants:
| Tier | Count | What Happens |
|---|---|---|
| GREEN | 15 | Shared body — CC frontmatter stripped, platform preamble injected |
| YELLOW | 8 | CC-ONLY body sections stripped, frontmatter cleaned, preamble injected |
| RED | 6 | Full hand-authored overlays optimized for o3/codex-1 instruction following |
The 6 RED skills with hand-crafted Codex overlays: reviewing-code, fixing-code, improving-tests, brainstorming-ideas, deploying-infra, testing-e2e.
OpenAI Codex CLI Support
.codex-plugin/plugin.jsonmanifests for all 9 plugins.agents/plugins/marketplace.json— Codex plugin marketplace- Platform-optimized skills in
skills-codex/directories - Skills include agentic anchors: persistence, tool-call encouragement, planning
Google Gemini CLI Support
gemini-extension.jsonat repo root + 9 per-plugin manifests- Installable as a Gemini CLI extension:
gemini extensions install https://github.com/alexei-led/cc-thingz GEMINI.mdcontext file with skill imports- Skills include Gemini-specific anchors: self-critique, risk assessment, output completeness
Build System
scripts/generate-overlays.py— buildsskills-codex/from CC sources<!-- CC-ONLY: begin/end -->sentinels for body section strippingscripts/preambles/platform.md— shared agentic anchors for non-Claude modelsmake overlays/make validate-overlaystargets- CI builds overlays before validation
Other Improvements
- GitHub Actions upgraded to Node.js 24 (
actions/checkout@v5,FORCE_JAVASCRIPT_ACTIONS_TO_NODE24) smart-lint.sh: skip symlinks in markdown formatting- All plugin versions synced across CC, Codex, and Gemini manifests
Installation
Claude Code
/plugin marketplace add alexei-led/cc-thingz
/plugin install dev-workflow@cc-thingzCodex CLI
git clone https://github.com/alexei-led/cc-thingz.git
# Codex discovers plugins via .agents/plugins/marketplace.json
codex plugin list
codex plugin install go-devGemini CLI
gemini extensions install https://github.com/alexei-led/cc-thingzPlugins
| Plugin | Skills | Description |
|---|---|---|
| dev-workflow | 7 | Code review, fixes, commits, and 24 language-specific review agents |
| go-dev | 1 | Idiomatic Go development with stdlib-first patterns |
| python-dev | 1 | Python 3.12+ with uv/ruff/pyright toolchain |
| typescript-dev | 1 | TypeScript with strict typing and React patterns |
| web-dev | 1 | Web frontend with HTML, CSS, JS, and HTMX |
| infra-ops | 3 | Kubernetes, Terraform, Helm, GitHub Actions, AWS, GCP |
| dev-tools | 14 | CLI tools, worktrees, docs, research, brainstorming |
| spec-system | 0 | Spec-driven development with structured planning |
| testing-e2e | 2 | E2E testing with Playwright |