A collection of skills by hardkoded packaged as plugins for Claude, Cursor, GitHub Copilot, and Codex.
This is a growing collection — more skills will land here over time. Currently:
cronito— an interactive CLI for managing scheduled tasks on your machine, backed by a single system cron entry. This skill vendors a prebuilt, dependency-free bundle, so there's nothing to install to use it. Source lives at hardkoded/cronito. Run/cronito initonce to set it up.pr-memory— PR-keyed, on-disk session memory.savesnapshots the current session as a handoff-style document (worktree, per-repo branches, every related PR), andload <pr>re-hydrates it later by any of those PR numbers. Works standalone in a single repo, or across a multi-repo workspace if you use one. Memories are pruned automatically once every PR they reference has merged.
/plugin marketplace add hardkoded/hardkoded-skills
/plugin install hardkoded@hardkodedImport this repository as a team marketplace, then install hardkoded from the Cursor plugin UI.
Use Chat: Install Plugin From Source and provide:
https://github.com/hardkoded/hardkoded-skills
codex plugin marketplace add hardkoded/hardkoded-skills
codex plugin add hardkoded@hardkodedhardkoded-skills/
├── .claude-plugin/marketplace.json
├── .cursor-plugin/marketplace.json
├── plugin.json
└── plugins/
└── hardkoded/
├── .claude-plugin/plugin.json
├── .cursor-plugin/plugin.json
├── .codex-plugin/plugin.json
└── skills/
├── cronito/
│ ├── SKILL.md
│ ├── cronito.sh
│ └── dist/cronito.cjs
└── pr-memory/
├── SKILL.md
└── scripts/
Every install path above (Claude, Cursor, Copilot, Codex) resolves skills
through a plugin manifest's "skills" field, which points at
plugins/hardkoded/skills/ — that's the single copy of each skill in this
repo. Each skill only ships its built artifact here — source lives in its
own repo (e.g. hardkoded/cronito).
MIT