{"id":51118614,"url":"https://github.com/codee-sh/codee-skills","last_synced_at":"2026-06-25T00:01:02.552Z","repository":{"id":365744543,"uuid":"1272628251","full_name":"codee-sh/codee-skills","owner":"codee-sh","description":null,"archived":false,"fork":false,"pushed_at":"2026-06-18T17:34:58.000Z","size":95,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-18T18:24:28.025Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codee-sh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-17T19:46:39.000Z","updated_at":"2026-06-18T17:35:02.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/codee-sh/codee-skills","commit_stats":null,"previous_names":["codee-sh/codee-skills"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/codee-sh/codee-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codee-sh%2Fcodee-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codee-sh%2Fcodee-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codee-sh%2Fcodee-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codee-sh%2Fcodee-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codee-sh","download_url":"https://codeload.github.com/codee-sh/codee-skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codee-sh%2Fcodee-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34753781,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-24T02:00:07.484Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-25T00:01:01.541Z","updated_at":"2026-06-25T00:01:02.543Z","avatar_url":"https://github.com/codee-sh.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# codee-skills\n\nCentral repository of skills for AI agents. The skills work with Claude Code (`.claude/skills/`) and Codex (`.agents/skills/`).\n\n## Repository Structure\n\n```\ncodee-skills/\n  general/                        # general skills\n    code-style/\n    project-organization/\n    spec-writing/\n    ui-copy/\n    writing-questions/\n  frameworks/\n    medusa/\n      admin-forms-with-medusa/\n      code-style-medusa/\n    payload/\n      payload/\n      payload-build-collections/\n      payload-build-modules/\n      payload-frontend-build-components/\n      payload-security/\n  bin/codee-skills.js             # CLI entry point\n  commands/                       # command implementations\n  package.json\n```\n\n\u003e **Important:** Every skill folder must be a real directory - symlinks are ignored by `npx skills`.\n\n---\n\n## First Run\n\n### 1. Clone the repo\n\n```bash\ngit clone git@github.com:codee-sh/codee-skills.git\ncd codee-skills\n```\n\n### 2. Add the CLI alias to `~/.zshrc`\n\n```bash\necho 'alias ags=\"node /path/to/codee-skills/bin/codee-skills.js\"' \u003e\u003e ~/.zshrc\nsource ~/.zshrc\n```\n\nReplace `/path/to/codee-skills` with the actual path to the cloned repo.\n\n### 3. Configure SSH for GitHub\n\n`push-skill` requires SSH access to this repo so that `git push` works without asking for a password:\n\n```bash\n# Check whether you have an SSH key\ncat ~/.ssh/id_ed25519.pub\n\n# If you do not have one, generate it\nssh-keygen -t ed25519 -C \"your@email.com\"\n\n# Add the public key to GitHub: Settings → SSH and GPG keys\n\n# Make sure the remote uses SSH, not HTTPS\ngit remote set-url origin git@github.com:codee-sh/codee-skills.git\n```\n\n---\n\n## CLI: ags\n\nLocal tool for managing skills in projects.\n\nThe `skills` command is a thin wrapper around external `npx skills`. It adds source-path detection, installs to both `.claude/skills/` and `.agents/skills/`, and keeps the local copies in sync.\n\nThe source of truth for skills is always this repo (`codee-skills`). The source path is detected automatically based on the location of `bin/codee-skills.js`.\n\n```bash\nags push-skill                          # list changed skills (interactive)\nags push-skill \u003cname\u003e                   # push a specific skill\nags push-skill \u003cname\u003e --dry-run         # preview without writing\n\nags skills add                          # interactive grouped TUI\nags skills add \u003cname\u003e                   # a specific skill, e.g. code-style\nags skills add frameworks/medusa        # an entire subfolder\nags skills update                       # update all skills from source\nags skills update \u003cname\u003e                # update a specific skill\nags skills list                         # list installed skills\nags skills remove \u003cname\u003e                # remove a skill\n```\n\n---\n\n## Commands\n\n### `skills add`\n\nInstalls skills from this repo into the current project. It always installs to both locations at the same time: `.claude/skills/` (Claude Code) and `.agents/skills/` (Codex).\n\n```bash\nags skills add                     # interactive grouped TUI\nags skills add code-style          # a specific skill\nags skills add frameworks/medusa   # an entire subfolder\n```\n\nAfter installation, `skills-lock.json` is created in the project. It stores the source of each skill.\n\n---\n\n### `skills update`\n\nCompares `.claude/skills/` and `.agents/skills/` against the local copy of the `codee-skills` repo on disk. Reinstalls if any location is out of date.\n\nBefore comparing, it automatically runs `git pull` in the source repo, so it always compares against the latest GitHub version.\n\n```bash\nags skills update              # checks all skills\nags skills update code-style   # checks one skill\n```\n\n---\n\n### `skills list` / `skills remove`\n\n```bash\nags skills list\nags skills remove code-style\n```\n\n---\n\n### `push-skill`\n\nPushes a locally edited skill back to this repo.\n\n```bash\nags push-skill                          # list changed skills\nags push-skill code-style               # a specific skill\nags push-skill code-style --dry-run     # preview without writing\n```\n\n**Flow:**\n1. Scans `.agents/skills/` — the local source of truth — for changes compared to the source repo. `.claude/skills/` is a derived copy and is not scanned (used only as a fallback when `.agents/` is missing)\n2. Shows a list of changed skills (interactive list)\n3. Checks whether the remote repo has newer commits (`git fetch`)\n4. Shows a content diff\n5. Asks for confirmation\n6. Copies the file -\u003e `git commit` -\u003e `git push` to this repo\n7. Auto-syncs the derived copy: after the push, `.agents/skills/` is copied to `.claude/skills/`\n\n---\n\n## Typical Workflow\n\n```bash\n# 1. New project - install skills\nags skills add\n\n# 2. Edit a skill locally in .agents/skills/code-style/SKILL.md\n#    (.agents/ is the source of truth; do not hand-edit .claude/ — it is synced for you)\n\n# 3. Push the changes to the repo\nags push-skill\n# -\u003e choose a skill from the list, confirm\n# -\u003e push to the repo + auto-sync to the other folder\n\n# 4. In another project - get the new version\nags skills update\n```\n\n---\n\n## Adding a New Skill\n\n1. Create a folder in the appropriate place, for example `general/my-skill/`\n2. Add a `SKILL.md` file with the required frontmatter:\n\n```markdown\n---\nname: my-skill\ndescription: A short description of what the skill does.\n---\n\n# Skill content...\n```\n\n3. The skill is automatically detected by `ags skills add`.\n\n---\n\n## Requirements\n\n- Node.js\n- Git with SSH access to this repo (`git@github.com:...`)\n- `npx skills` (Vercel Labs) - installed automatically through `npx`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodee-sh%2Fcodee-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodee-sh%2Fcodee-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodee-sh%2Fcodee-skills/lists"}