Skip to content

odykyi/agentic-comparison

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

62 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

AI Skills Marketplace - Agentic Comparison for AI Coding Tools

The ultimate skills marketplace for AI coding agents. Browse, compare, and discover 40+ AI skills across 10+ agentic coding tools.

πŸ”— Live Site: https://odykyi.github.io/agentic-comparison/

GitHub Pages License: MIT Skills: 40+ Tools: 10

🎨 What is this Skills Marketplace?

This is a comprehensive AI skills marketplace that helps developers discover and compare AI coding agents. Think of it as a marketplace where you can find the best skills, commands, and capabilities across different AI tools.

Tags: skills-marketplace ai-skills agent-skills mcp-servers ai-tools coding-agents

🎯 Mission

The AI agent tooling landscape is exploding with multiple CLI-based coding agents (OpenCode, Codex, Claude Code, Cursor, Windsurf) each using different terminology and architecture patterns. This project serves as a skills marketplace and comparison hub to help developers understand which tool fits their needs and how concepts map between them.

Example mapping: "skills" in Codex ↔ "commands" in Claude Code ↔ "agents" in OpenCode ↔ "extensions" in Windsurf

🎨 AI Skills Marketplace

Welcome to the AI Skills Marketplace - a curated collection of 40+ AI skills for coding agents. This marketplace helps developers discover capabilities across different AI tools.

Why a Skills Marketplace?

Different AI coding agents call their capabilities different things:

  • Codex calls them "Skills"
  • Claude Code calls them "Commands"
  • OpenCode calls them "Agents"
  • Windsurf calls them "Extensions"

This marketplace unifies them all so you can find what you need, regardless of the tool you use.

Skill Categories in Our Marketplace

Skill Category Description
Code Generation Generate components, functions, and boilerplate
Refactoring Modernize and restructure existing code
Testing Generate unit, integration, and E2E tests
Documentation Auto-generate README, API docs, and comments
Security Audit Scan for vulnerabilities and security issues
DevOps CI/CD, Docker, and infrastructure automation
Database Schema design, migrations, and optimization

Browse all skills β†’

πŸ› οΈ Tools Compared (9 AI Coding Agents)

Tool Repository Command Prefix MCP Skills/Commands
OpenCode saoirse-opencode/opencode opencode βœ… Agents
OpenAI Codex openai/codex codex βœ… Skills
Claude Code anthropics/claude-code claude βœ… Commands
Cursor getcursor/cursor cursor βœ… Extensions
Windsurf windsurf windsurf βœ… Cascade
GitHub Copilot CLI github/copilot.vim gh copilot βœ… Chat
Google Antigravity google Various βœ… Assistants
Junie junie junie βœ… Agents

πŸ“Š Comparison Dimensions

  • βœ… Feature Matrix - Core capabilities side-by-side
  • πŸ“ Command Reference - How to do the same thing in each tool
  • πŸ—£οΈ Terminology Mapper - "What you call X, they call Y"
  • πŸ”Œ MCP Registry - Model Context Protocol server compatibility
  • πŸ’° Pricing Calculator - Cost comparison with usage estimates
  • 🎨 UI Showcase - Terminal interface and IDE integration comparisons

πŸš€ Quick Start (Local Development)

Prerequisites

  • Ruby 3.0+ with Bundler (recommended)
  • Node.js 18+ (for build tooling)

Note: If you have Ruby 2.6, you may encounter native extension compilation issues on macOS. See Ruby 2.6 Workarounds below.

Installation

# Clone the repository
git clone https://github.com/odykyi/agentic-comparison.git
cd agentic-comparison

# Install Ruby dependencies (Ruby 3.0+)
bundle install

# Alternative for Ruby 2.6 users - use Docker:
# docker run -v $(pwd):/srv/jekyll -p 4000:4000 jekyll/jekyll:3.8

# Alternative for Ruby 2.6 - skip bundle install and use GitHub Pages:
# The site will work fine when deployed to GitHub Pages even without local bundle

# Install Node dependencies (for build tooling)
npm install

# Start local server
bundle exec jekyll serve --livereload

# For Ruby 2.6 without eventmachine (no live reload):
# bundle exec jekyll serve --no-watch

Visit http://localhost:4000 to view the site.

Ruby 2.6 Workarounds

If you're on Ruby 2.6 and experiencing native extension build failures (particularly with eventmachine):

Option 1: Use Docker (Recommended)

docker run --rm \
  -v $(pwd):/srv/jekyll \
  -p 4000:4000 \
  -e JEKYLL_ENV=development \
  jekyll/jekyll:3.8 \
  jekyll serve --watch --force_polling --livereload

Option 2: Use the Docker Gemfile

mv Gemfile.docker Gemfile
bundle install
bundle exec jekyll serve

Option 3: Skip local setup and rely on GitHub Pages Since this is a Jekyll site for GitHub Pages, you can:

  1. Push to GitHub
  2. Enable GitHub Pages in repository settings
  3. GitHub will automatically build and deploy the site
  4. Make edits and view changes after deployment

Option 4: Upgrade Ruby to 3.0+ Using rbenv or rvm:

# Using rbenv
rbenv install 3.1.0
rbenv local 3.1.0
bundle install

Install Node dependencies (for asset building)

npm install

Start local server

bundle exec jekyll serve --livereload


Visit `http://localhost:4000` to view the site.

### Building for Production

```bash
# Build the site
bundle exec jekyll build

# The built site will be in `_site/` directory

πŸ“ Project Structure

agentic-comparison/
β”œβ”€β”€ _data/                    # YAML data files
β”‚   β”œβ”€β”€ tools/               # Tool definitions
β”‚   β”œβ”€β”€ features.yml         # Feature categories
β”‚   β”œβ”€β”€ commands.yml         # Command mappings
β”‚   β”œβ”€β”€ terminology.yml      # Terminology mappings
β”‚   └── mcp_servers.yml      # MCP server registry
β”œβ”€β”€ _layouts/                # Jekyll layouts
β”œβ”€β”€ _includes/               # Reusable components
β”œβ”€β”€ _sass/                   # SCSS stylesheets
β”œβ”€β”€ assets/                  # Static assets
β”‚   β”œβ”€β”€ css/
β”‚   β”œβ”€β”€ js/
β”‚   └── images/
β”œβ”€β”€ tools/                   # Tool profile pages
β”œβ”€β”€ features/                # Feature comparison
β”œβ”€β”€ commands/                # Command reference
β”œβ”€β”€ terminology/             # Terminology mapper
β”œβ”€β”€ mcp/                     # MCP registry
β”œβ”€β”€ pricing/                 # Pricing calculator
β”œβ”€β”€ ui/                      # UI showcase
β”œβ”€β”€ _config.yml             # Jekyll configuration
β”œβ”€β”€ Gemfile                 # Ruby dependencies
└── package.json            # Node dependencies

🀝 Contributing

We welcome contributions! Please see CONTRIBUTING.md for guidelines.

Quick Contribution Ideas

  • πŸ†• Add a new agentic tool to the comparison
  • πŸ“ Update outdated command references
  • πŸ› Report incorrect terminology mappings
  • 🌐 Add translations
  • 🎨 Improve UI/UX

Data-Driven Contributions

All comparison data lives in YAML files under _data/. To update information:

  1. Edit the relevant YAML file
  2. Validate your changes with our schema validator
  3. Submit a PR with your changes

πŸ“œ License

This project is licensed under the MIT License - see the LICENSE file for details.

πŸ™ Acknowledgments

  • Tool logos and trademarks belong to their respective owners
  • Built with Jekyll and Bootstrap 5

πŸ“¬ Contact


πŸ” About This Skills Marketplace

Agentic Comparison is an open-source skills marketplace for AI coding agents. Our goal is to make it easy for developers to discover and compare AI capabilities across different tools.

Search Keywords

If you're looking for:

  • skills marketplace - You're in the right place!
  • ai skills - We have 40+ documented
  • agent skills - Listed by tool
  • ai tools marketplace - Compare 10+ tools
  • mcp marketplace - Registry included

Related Searches

People searching for this skills marketplace also look for:

  • AI coding agents comparison
  • Claude Code vs Codex vs Cursor
  • MCP servers list
  • AI developer tools
  • Agentic AI tools

Made with ❀️ for the AI coding agent community

⬆ Back to Top

About

skills marketplace. A comprehensive comparison resource for AI agentic coding tools.

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors