{"id":50479547,"url":"https://github.com/yug-space/skills","last_synced_at":"2026-06-01T16:31:07.026Z","repository":{"id":361682833,"uuid":"1255377118","full_name":"yug-space/skills","owner":"yug-space","description":"A Claude Code skill that keeps code changes minimal, surgical, and low-cognitive-load — counteracts model over-editing.","archived":false,"fork":false,"pushed_at":"2026-05-31T19:09:11.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-31T21:10:10.720Z","etag":null,"topics":["ai-coding","claude","claude-code","code-review","skill"],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yug-space.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-05-31T18:53:02.000Z","updated_at":"2026-05-31T19:09:15.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/yug-space/skills","commit_stats":null,"previous_names":["yug-space/skills"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/yug-space/skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yug-space%2Fskills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yug-space%2Fskills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yug-space%2Fskills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yug-space%2Fskills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yug-space","download_url":"https://codeload.github.com/yug-space/skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yug-space%2Fskills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33784625,"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-01T02:00:06.963Z","response_time":115,"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":["ai-coding","claude","claude-code","code-review","skill"],"created_at":"2026-06-01T16:31:05.592Z","updated_at":"2026-06-01T16:31:07.020Z","avatar_url":"https://github.com/yug-space.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# skills\n\nA collection of [Claude Code](https://claude.com/claude-code) / agent **skills**,\ninstallable with the [`npx skills`](https://github.com/vercel-labs/skills) package manager.\n\n| Skill | What it does |\n|-------|--------------|\n| [`cognitive-load`](./skills/cognitive-load/SKILL.md) | Keeps code changes minimal, surgical, and low-cognitive-load for reviewers — counteracts model **over-editing**. |\n| [`scott-adams-writing`](./skills/scott-adams-writing/SKILL.md) | Makes writing clear and persuasive using Scott Adams' method — cut clutter, simplify, hook the reader. |\n\n## Install\n\n### With `npx skills` (recommended)\n\n```bash\n# Install every skill in this repo\nnpx skills add yug-space/skills\n\n# See what's available first\nnpx skills add yug-space/skills --list\n\n# Install just one skill, globally, for Claude Code, no prompts\nnpx skills add yug-space/skills --skill cognitive-load -g -a claude-code -y\n```\n\n`npx skills` works with Claude Code, Cursor, Codex, OpenCode, and 50+ other agents, and can\ninstall globally (`-g`, into `~/.claude/skills`) or into the current project (`./.claude/skills`).\n\n### One-liner without npx\n\n```bash\n# Clone a single skill straight into your skills dir\ngit clone --depth 1 https://github.com/yug-space/skills /tmp/yug-skills \\\n  \u0026\u0026 cp -r /tmp/yug-skills/skills/cognitive-load ~/.claude/skills/cognitive-load \\\n  \u0026\u0026 rm -rf /tmp/yug-skills\n```\n\n### With the bundled script\n\n```bash\ngit clone https://github.com/yug-space/skills\ncd skills\n./install.sh cognitive-load            # user install (~/.claude/skills), symlinked\n./install.sh cognitive-load --project  # into ./.claude/skills of the current repo\n./install.sh --all                     # install every skill in the repo\n```\n\nSymlink is the default, so `git pull` in this repo updates your installed skills.\n\n## Updating\n\n```bash\nnpx skills add yug-space/skills          # re-run to pull latest\n# or, if you cloned:  cd skills \u0026\u0026 git pull\n```\n\n## Uninstall\n\n```bash\nrm -rf ~/.claude/skills/cognitive-load\n```\n\n## Repository layout\n\n```\nskills/\n  cognitive-load/\n    SKILL.md          # one folder per skill — name + description in YAML frontmatter\n```\n\n`npx skills` discovers any `skills/\u003cname\u003e/SKILL.md`. To add a new skill, create a new\nfolder under `skills/` with its own `SKILL.md` and push — it becomes installable\nimmediately, no manifest or config required.\n\n## Authoring a new skill\n\n```bash\ncd skills \u0026\u0026 npx skills init my-new-skill   # scaffolds skills/my-new-skill/SKILL.md\n```\n\nA valid `SKILL.md` needs YAML frontmatter with at least `name` and `description`:\n\n```yaml\n---\nname: my-new-skill\ndescription: One line on what it does and when to use it — this is what the agent matches on.\n---\n\n# My New Skill\nInstructions for the agent...\n```\n\n## License\n\n[MIT](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyug-space%2Fskills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyug-space%2Fskills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyug-space%2Fskills/lists"}