[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-1608":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":9,"language":10,"languages":9,"totalLinesOfCode":9,"stars":11,"forks":12,"watchers":13,"openIssues":14,"contributorsCount":14,"subscribersCount":14,"size":14,"stars1d":15,"stars7d":16,"stars30d":17,"stars90d":14,"forks30d":14,"starsTrendScore":18,"compositeScore":19,"rankGlobal":9,"rankLanguage":9,"license":9,"archived":20,"fork":20,"defaultBranch":21,"hasWiki":22,"hasPages":20,"topics":23,"createdAt":9,"pushedAt":9,"updatedAt":31,"readmeContent":32,"aiSummary":33,"trendingCount":14,"starSnapshotCount":14,"syncStatus":16,"lastSyncTime":34,"discoverSource":35},1608,"agent-skills","golbin\u002Fagent-skills","golbin","Reusable agent skills for Codex and compatible tools",null,"Shell",203,26,187,0,1,2,12,3,45.49,false,"main",true,[5,24,25,26,27,28,29,30],"code-review","codex","implementation-review","prd","product-requirements-document","review-implementation","skills-sh","2026-06-12 04:00:10","# Agent Skills\n\nReusable agent skills for Codex and other Agent Skills compatible tools.\n\nSkills are packaged under `skills\u002F\u003Cskill-name>\u002F` so this repository can hold\nmultiple installable skills.\n\n## Repository Layout\n\n- `skills\u002F`: installable agent skills discovered by `npx skills` and `gh skill`\n- `templates\u002F`: copyable project templates such as `AGENTS.md` and `CLAUDE.md`\n\n## Available Skills\n\n- `prd`: Create or update evidence-backed living PRDs and phase execution files\n  under `tasks\u002F`.\n- `review-implementation`: Review code against markdown requirements\u002Fspec docs,\n  identify gaps and risks, and apply focused fixes.\n\n## Templates\n\n- `templates\u002FAGENTS.md`: concise project instruction template for coding agents\n- `templates\u002FCLAUDE.md`: delegates Claude-compatible tools to `AGENTS.md`\n\nCopy the templates into a project root and customize the placeholders:\n\n```bash\ncp templates\u002FAGENTS.md \u002Fpath\u002Fto\u002Fproject\u002FAGENTS.md\ncp templates\u002FCLAUDE.md \u002Fpath\u002Fto\u002Fproject\u002FCLAUDE.md\n```\n\n## Install\n\n### skills.sh \u002F `npx skills`\n\nInstall globally for Codex:\n\n```bash\nnpx skills add https:\u002F\u002Fgithub.com\u002Fplaymoreai\u002Fagent-skills\u002Ftree\u002Fmain\u002Fskills\u002Fprd \\\n  -g \\\n  -a codex \\\n  -y\nnpx skills add https:\u002F\u002Fgithub.com\u002Fplaymoreai\u002Fagent-skills\u002Ftree\u002Fmain\u002Fskills\u002Freview-implementation \\\n  -g \\\n  -a codex \\\n  -y\n```\n\nOr install from the repository and select a skill:\n\n```bash\nnpx skills add playmoreai\u002Fagent-skills --skill prd -g -a codex -y\nnpx skills add playmoreai\u002Fagent-skills --skill review-implementation -g -a codex -y\n```\n\nList available skills in this repository:\n\n```bash\nnpx skills add playmoreai\u002Fagent-skills --list\n```\n\n### GitHub CLI `gh skill`\n\nRequires GitHub CLI 2.90.0 or newer.\n\n```bash\ngh skill install playmoreai\u002Fagent-skills prd --agent codex --scope user\ngh skill install playmoreai\u002Fagent-skills review-implementation --agent codex --scope user\n```\n\nThe alias form also works on supported GitHub CLI versions:\n\n```bash\ngh skills add playmoreai\u002Fagent-skills prd --agent codex --scope user\ngh skills add playmoreai\u002Fagent-skills review-implementation --agent codex --scope user\n```\n\nPreview before installing:\n\n```bash\ngh skill preview playmoreai\u002Fagent-skills prd\ngh skill preview playmoreai\u002Fagent-skills review-implementation\n```\n\n### Codex Skill Installer\n\nIn Codex, ask:\n\n```text\nUse $skill-installer to install https:\u002F\u002Fgithub.com\u002Fplaymoreai\u002Fagent-skills\u002Ftree\u002Fmain\u002Fskills\u002Fprd\nUse $skill-installer to install https:\u002F\u002Fgithub.com\u002Fplaymoreai\u002Fagent-skills\u002Ftree\u002Fmain\u002Fskills\u002Freview-implementation\n```\n\nOr run the installer script directly:\n\n```bash\npython3 ~\u002F.codex\u002Fskills\u002F.system\u002Fskill-installer\u002Fscripts\u002Finstall-skill-from-github.py \\\n  --repo playmoreai\u002Fagent-skills \\\n  --path skills\u002Fprd\npython3 ~\u002F.codex\u002Fskills\u002F.system\u002Fskill-installer\u002Fscripts\u002Finstall-skill-from-github.py \\\n  --repo playmoreai\u002Fagent-skills \\\n  --path skills\u002Freview-implementation\n```\n\nAfter installation, restart Codex so the new skill is picked up.\n\n### Shell Installer\n\nFor machines with `bash`, `curl`, and `tar`:\n\n```bash\ncurl -fsSL https:\u002F\u002Fraw.githubusercontent.com\u002Fplaymoreai\u002Fagent-skills\u002Fmain\u002Finstall.sh | bash\ncurl -fsSL https:\u002F\u002Fraw.githubusercontent.com\u002Fplaymoreai\u002Fagent-skills\u002Fmain\u002Finstall.sh \\\n  | SKILL_PATH=skills\u002Freview-implementation SKILL_NAME=review-implementation bash\n```\n\n## Usage\n\nInvoke skills in Codex by name, for example:\n\n```text\nUse $prd to create an evidence-backed PRD for this feature.\nUse $review-implementation to review this implementation against tasks\u002Fprd-example.md.\n```\n\nThe `prd` skill creates or updates markdown PRD files under `tasks\u002F`, including\nphase files when the plan is large enough to split. The `review-implementation`\nskill reviews code against markdown requirements\u002Fspec docs and applies focused\nfixes.\n","该项目提供了可复用的代理技能，适用于Codex及兼容工具。核心功能包括创建或更新基于证据的产品需求文档（PRD）以及审查代码实现是否符合需求文档，并识别差距和风险，进行针对性修复。技术特点为通过Shell脚本实现技能安装与管理，支持多种安装方式如`npx skills`、GitHub CLI `gh skill`等。适合于需要自动化生成产品需求文档和代码审查流程的软件开发场景中使用，能够提高开发效率并确保代码质量。","2026-06-11 02:44:58","CREATED_QUERY"]