[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-93402":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":16,"stars7d":17,"stars30d":17,"stars90d":15,"forks30d":15,"starsTrendScore":18,"compositeScore":19,"rankGlobal":10,"rankLanguage":10,"license":20,"archived":21,"fork":21,"defaultBranch":22,"hasWiki":23,"hasPages":21,"topics":24,"createdAt":10,"pushedAt":10,"updatedAt":40,"readmeContent":41,"aiSummary":42,"trendingCount":15,"starSnapshotCount":15,"syncStatus":43,"lastSyncTime":44,"discoverSource":45},93402,"skills","CodeDrobe\u002Fskills","CodeDrobe","Open-source OpenAI Codex theming Skill, AI theme generator, and cross-platform runtime for custom Codex desktop themes.","https:\u002F\u002Fcodedrobe.app",null,"CSS",222,17,1,0,7,93,46,87.07,"Apache License 2.0",false,"main",true,[25,26,27,28,29,30,31,32,33,34,35,36,37,38,39],"ai-coding","chromium-devtools-protocol","codex","codex-app","codex-skill","codex-theme","custom-themes","desktop-customization","developer-tools","macos","nodejs","openai-codex","theme-generator","theme-manager","windows","2026-07-22 04:02:09","# CodeDrobe Skills\n\n[![GitHub stars](https:\u002F\u002Fimg.shields.io\u002Fgithub\u002Fstars\u002FCodeDrobe\u002Fskills?style=flat-square)](https:\u002F\u002Fgithub.com\u002FCodeDrobe\u002Fskills\u002Fstargazers)\n[![Validate Skills](https:\u002F\u002Fgithub.com\u002FCodeDrobe\u002Fskills\u002Factions\u002Fworkflows\u002Fci.yml\u002Fbadge.svg)](https:\u002F\u002Fgithub.com\u002FCodeDrobe\u002Fskills\u002Factions\u002Fworkflows\u002Fci.yml)\n[![License](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Flicense-Apache--2.0-blue.svg?style=flat-square)](LICENSE)\n\nInstallable Agent Skills for creating and managing reversible themes across supported Chromium\u002FElectron AI desktop apps. Runtime behavior lives in [`@codedrobe\u002Fcore`](https:\u002F\u002Fgithub.com\u002FCodeDrobe\u002Fcore); this repository contains concise workflows and app-specific guidance only.\n\n[简体中文](README_zh.md)\n\n## Skill catalog\n\n| Skill | Audience | Status |\n| --- | --- | --- |\n| [`codedrobe-theme`](skills\u002Fcodedrobe-theme\u002FSKILL.md) | Users and theme authors | Available |\n| [`codedrobe-adapter-dev`](skills\u002Fcodedrobe-adapter-dev\u002FSKILL.md) | Core maintainers and contributors | Available |\n| `codedrobe-publish-theme` | Theme publishers | Planned after registry authentication is complete |\n\n`codedrobe-theme` supports the application targets currently provided by Core, including OpenAI Codex and Tencent WorkBuddy. New apps are added to Core adapters rather than creating one user Skill per application.\n\n## Install\n\nThe installer command is `npx skills` (plural).\n\nList the Skills in this repository:\n\n```bash\nnpx skills add CodeDrobe\u002Fskills --list\n```\n\nInstall the user-facing theme Skill globally for Codex:\n\n```bash\nnpx skills add CodeDrobe\u002Fskills \\\n  --skill codedrobe-theme \\\n  --global \\\n  --agent codex \\\n  --yes\n```\n\nInstall the adapter-development Skill separately:\n\n```bash\nnpx skills add CodeDrobe\u002Fskills \\\n  --skill codedrobe-adapter-dev \\\n  --global \\\n  --agent codex \\\n  --yes\n```\n\n`--agent codex` selects the AI agent that receives the Skill. It does not select the desktop app to theme. The target app is selected later through `codedrobe --app codex` or `codedrobe --app workbuddy`.\n\n## Runtime\n\nInstall Core once:\n\n```bash\nnpm install --global @codedrobe\u002Fcore\ncodedrobe apps\n```\n\nOr run it without a global install:\n\n```bash\nnpx --yes @codedrobe\u002Fcore@latest apps\nbunx @codedrobe\u002Fcore@latest apps\n```\n\nExample:\n\n```bash\ncodedrobe dom snapshot --app workbuddy --output \u002Fabsolute\u002Fworkbuddy-dom.json\ncodedrobe apply --app workbuddy --theme \u002Fabsolute\u002Ftheme.codedrobe-theme\ncodedrobe verify --app workbuddy --theme \u002Fabsolute\u002Ftheme.codedrobe-theme --screenshot \u002Fabsolute\u002Fpreview.png\ncodedrobe restore --app workbuddy\n```\n\n## Theme authoring resources\n\nThe installed `codedrobe-theme` Skill includes two copyable source resources:\n\n- `assets\u002Ftheme-starter\u002F`: a complete neutral Codex\u002FWorkBuddy CSS starting point.\n- `assets\u002Fexamples\u002Fdoll-sister\u002F`: the complete Doll Sister \u002F 玩偶姐姐 multi-app theme with generated hero and texture artwork.\n\nTemplates are not treated as permanent application DOM contracts. The Skill captures a privacy-preserving `codedrobe dom snapshot` from each live home\u002Fconversation context, selects semantic candidates from that snapshot, then packs, probes, applies, screenshots, and repairs the theme.\n\n## Repository layout\n\n```text\nskills\u002F\n├── codedrobe-theme\u002F\n│   ├── SKILL.md\n│   ├── agents\u002Fopenai.yaml\n│   ├── references\u002F\n│   └── assets\u002F\n└── codedrobe-adapter-dev\u002F\n    ├── SKILL.md\n    ├── agents\u002Fopenai.yaml\n    └── references\u002F\n```\n\nThere is intentionally no root `SKILL.md`: the standard `skills\u002F\u003Cname>\u002FSKILL.md` layout allows `npx skills` to discover and install each Skill independently.\n\n## Project boundaries\n\n- [`CodeDrobe\u002Fcore`](https:\u002F\u002Fgithub.com\u002FCodeDrobe\u002Fcore): CLI, adapters, CDP runtime, host settings, package validation, and public API.\n- [`CodeDrobe\u002Fskills`](https:\u002F\u002Fgithub.com\u002FCodeDrobe\u002Fskills): installable agent workflows and references.\n- [`CodeDrobe\u002Fdesktop`](https:\u002F\u002Fgithub.com\u002FCodeDrobe\u002Fdesktop): visual theme manager built on Core.\n- Theme publishing: intentionally withheld until authentication, ownership, moderation, and revocation are implemented.\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) before adding or changing a Skill.\n\n## License and trademarks\n\nInstructions and documentation are available under the [Apache License 2.0](LICENSE). Product names and trademarks belong to their respective owners. CodeDrobe is an independent project and is not endorsed by OpenAI or Tencent.\n","CodeDrobe\u002Fskills 是一个开源的 AI 编程桌面应用主题管理工具集，专为 OpenAI Codex、Tencent WorkBuddy 等基于 Chromium\u002FElectron 的 AI 桌面客户端提供可逆、跨平台的主题定制能力。核心功能包括主题生成（AI 辅助 CSS 主题设计）、DOM 快照捕获、主题应用与验证、一键还原，支持 macOS 和 Windows。其运行时依赖 @codedrobe\u002Fcore，通过标准化 Skill 机制实现主题逻辑与目标应用解耦，适用于开发者个性化定制 AI 编程环境界面，或主题作者高效构建、测试和分发多应用兼容主题。",2,"2026-07-17 02:30:11","CREATED_QUERY"]