{
  "markdown": "# OPC Skills\n\n<p align=\"center\">\n  <img src=\"website/opc-banner.png\" alt=\"OPC Skills - AI Agent Skills for Solopreneurs\" width=\"100%\">\n</p>\n\n<p align=\"center\">\n  <a href=\"https://opc.dev\"><img src=\"https://img.shields.io/badge/Website-opc.dev-black?style=flat-square\" alt=\"Website\"></a>\n  <a href=\"https://skills.sh/ReScienceLab/opc-skills\"><img src=\"https://img.shields.io/badge/Browse-skills.sh-blue?style=flat-square\" alt=\"Browse on skills.sh\"></a>\n  <a href=\"https://deepwiki.com/ReScienceLab/opc-skills\"><img src=\"https://deepwiki.com/badge.svg\" alt=\"Ask DeepWiki\"></a>\n  <a href=\"https://code.claude.com/docs/en/plugin-marketplaces\"><img src=\"https://img.shields.io/badge/Claude_Code-Marketplace-orange?style=flat-square&logo=anthropic\" alt=\"Claude Code Marketplace\"></a>\n  <a href=\"https://github.com/ReScienceLab/opc-skills/blob/main/LICENSE\"><img src=\"https://img.shields.io/badge/License-MIT-green?style=flat-square\" alt=\"MIT License\"></a>\n  <a href=\"https://github.com/ReScienceLab/opc-skills/stargazers\"><img src=\"https://img.shields.io/github/stars/ReScienceLab/opc-skills?style=flat-square\" alt=\"GitHub Stars\"></a>\n</p>\n\n<p align=\"center\">\n  <a href=\"https://github.com/ReScienceLab/opc-skills/issues\"><img src=\"https://img.shields.io/github/issues/ReScienceLab/opc-skills?style=flat-square\" alt=\"GitHub issues\"></a>\n  <a href=\"https://github.com/ReScienceLab/opc-skills/pulls\"><img src=\"https://img.shields.io/github/issues-pr/ReScienceLab/opc-skills?style=flat-square\" alt=\"GitHub pull requests\"></a>\n  <img src=\"https://img.shields.io/github/last-commit/ReScienceLab/opc-skills?style=flat-square\" alt=\"Last commit\">\n  <a href=\"https://github.com/ReScienceLab/opc-skills/graphs/contributors\"><img src=\"https://img.shields.io/github/contributors/ReScienceLab/opc-skills?style=flat-square\" alt=\"Contributors\"></a>\n  <a href=\"https://x.com/Yilin0x\"><img src=\"https://img.shields.io/badge/Twitter-@Yilin0x-black?style=flat-square&logo=x\" alt=\"Twitter\"></a>\n  <a href=\"https://discord.gg/Y2yBpRXvVa\"><img src=\"https://img.shields.io/badge/Discord-Join-5865F2?style=flat-square&logo=discord&logoColor=white\" alt=\"Discord\"></a>\n</p>\n\n<p align=\"center\">\n  <strong>AI Agent Skills for Solopreneurs, Indie Hackers, and One-Person Companies</strong>\n</p>\n\n<p align=\"center\">\n  Extend Claude Code, Cursor, Codex, and more with automation skills.<br>\n  <a href=\"https://opc.dev\">Browse Skills</a> · <a href=\"#quick-install\">Quick Install</a> · <a href=\"#included-skills\">View All Skills</a>\n</p>\n\n---\n\n## What are Skills?\n\nSkills are folders of instructions, scripts, and resources that AI agents load dynamically to improve performance on specialized tasks. Each skill is self-contained with a `SKILL.md` file containing instructions and metadata.\n\nFor more information about the Agent Skills standard, see [agentskills.io](http://agentskills.io).\n\n## Included Skills\n\n| | Skill | Description |\n|:---:|-------|-------------|\n| <img src=\"./skill-logos/seo-geo.svg\" width=\"24\"> | [seo-geo](./skills/seo-geo) | SEO & GEO optimization for AI search engines (ChatGPT, Perplexity, Google) |\n| <img src=\"./skill-logos/requesthunt.svg\" width=\"24\"> | [requesthunt](./skills/requesthunt) | Research user demand from Reddit, X, and GitHub |\n| <img src=\"./skill-logos/domain-hunter.svg\" width=\"24\"> | [domain-hunter](./skills/domain-hunter) | Find domains, compare registrar prices, and discover promo codes |\n| <img src=\"./skill-logos/logo-creator.svg\" width=\"24\"> | [logo-creator](./skills/logo-creator) | Create logos with AI, crop, remove background, export as SVG |\n| <img src=\"./skill-logos/banner-creator.svg\" width=\"24\"> | [banner-creator](./skills/banner-creator) | Create banners for GitHub, Twitter, LinkedIn, etc. |\n| <img src=\"./skill-logos/nanobanana.svg\" width=\"24\"> | [nanobanana](./skills/nanobanana) | Generate images using Gemini 3 Pro Image (Nano Banana Pro) |\n| <img src=\"./skill-logos/reddit.svg\" width=\"24\"> | [reddit](./skills/reddit) | Search and retrieve content from Reddit via the public JSON API |\n| <img src=\"./skill-logos/twitter.svg\" width=\"24\"> | [twitter](./skills/twitter) | Search and retrieve content from Twitter/X via twitterapi.io |\n| <img src=\"./skill-logos/producthunt.svg\" width=\"24\"> | [producthunt](./skills/producthunt) | Search Product Hunt posts, topics, users, and collections |\n| <img src=\"./skill-logos/archive.svg\" width=\"24\"> | [archive](./skills/archive) | Archive session learnings and debugging solutions with indexed markdown |\n\n## Quick Install\n\n### Claude Code Plugin Marketplace\n\nInstall directly from Claude Code's plugin marketplace:\n\n```bash\n# Add the OPC Skills marketplace\n/plugin marketplace add ReScienceLab/opc-skills\n\n# Install specific skills\n/plugin install requesthunt@opc-skills\n/plugin install domain-hunter@opc-skills\n/plugin install seo-geo@opc-skills\n\n# List all available skills\n/plugin marketplace list opc-skills\n```\n\n### Universal Installation (16+ AI Tools)\n\nInstall with one command - works with Claude Code, Cursor, Windsurf, Droid, and 12+ other AI tools:\n\n```bash\n# Install all skills\nnpx skills add ReScienceLab/opc-skills\n\n# Install specific skill\nnpx skills add ReScienceLab/opc-skills --skill reddit\n\n# Install to specific agent\nnpx skills add ReScienceLab/opc-skills -a droid\n```\n\nBrowse and discover skills at **[skills.sh](https://skills.sh/ReScienceLab/opc-skills)** 🎯\n\n### Skills with Dependencies\n\nSome skills require other skills to function properly:\n\n- **domain-hunter** → requires `twitter` and `reddit`\n- **logo-creator** → requires `nanobanana`\n- **banner-creator** → requires `nanobanana`\n\nInstall them together:\n\n```bash\nnpx skills add ReScienceLab/opc-skills --skill reddit --skill twitter --skill domain-hunter\n```\n\n---\n\n## Supported AI Tools\n\nOPC Skills work with 16+ AI coding agents via `npx skills add`:\n\n- **Claude Code** - Desktop app for AI-assisted coding\n- **Cursor** - AI-first code editor\n- **Factory Droid** - AI software engineering agent\n- **Windsurf** - AI-powered IDE\n- **OpenCode** - Open-source AI coding assistant\n- **Codex** - AI code generation tool\n- **GitHub Copilot** - AI pair programmer\n- **Gemini CLI** - Command-line AI assistant\n- **Goose** - Terminal-based AI agent\n- **Kilo Code** - Lightweight AI coding tool\n- **Roo Code** - AI code assistant\n- **Trae** - AI development companion\n- **And more...**\n\nSee the [full compatibility list](https://github.com/vercel-labs/add-skill#available-agents) for all supported tools.\n\n---\n\n## Documentation & Resources\n\nExplore OPC Skills through multiple channels:\n\n- **[DeepWiki](https://deepwiki.com/ReScienceLab/opc-skills)** - AI-powered interactive documentation with code exploration and Q&A\n- **[Skills Browser](https://skills.sh/ReScienceLab/opc-skills)** - Browse and discover all available skills\n- **[Official Website](https://opc.dev)** - Guides, tutorials, and usage examples\n- **[Agent Skills Standard](https://agentskills.io/)** - Learn about the skills specification\n\n### Using DeepWiki\n\nDeepWiki provides an AI assistant that can answer questions about the codebase:\n- Ask: \"How does the domain-hunter skill work?\"\n- Ask: \"Show me the dependencies between skills\"\n- Ask: \"Explain the skill installation process\"\n\nThe documentation auto-syncs with the repository, so it's always up to date.\n\n---\n\n## Creating New Skills\n\nSee the template in `./template/` directory for the basic structure:\n\n1. Create a folder in `skills/` with your skill name\n2. Add a `SKILL.md` file with YAML frontmatter\n3. (Optional) Add scripts, examples, or other resources\n\n**Required fields in SKILL.md:**\n```yaml\n---\nname: my-skill-name\ndescription: A clear description of what this skill does and when to use it\n---\n```\n\nFor detailed guidance, check out existing skills or visit the [Agent Skills specification](https://agentskills.io/).\n\n## Star History\n\n[![Star History Chart](https://api.star-history.com/svg?repos=ReScienceLab/opc-skills&type=Date)](https://star-history.com/#ReScienceLab/opc-skills&Date)\n\n## Contributing\n\n1. Fork this repository\n2. Create a new skill folder in `skills/`\n3. Add a `SKILL.md` with proper frontmatter\n4. Submit a pull request\n\n## License\n\nApache 2.0\n",
  "bytes": 8147,
  "sha": "603906702333dcd29e0e89878896efcfe22eae656a088a614c90136ecf3d2019",
  "repo_slug": "resciencelab/opc-skills",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/skl_resciencelab_opc_skills_reddit_181490a1/readme"
}