Agent Plugins Marketplace
All plugins

agent-skills

v0.6.7

Production-grade engineering skills for AI coding agents covering the full software development lifecycle from spec to ship.

CodexClaude Code24 Skills

By Addy OsmaniLicense: MIT0 GitHub starsUpdated 3 hours ago

Directory evidence

Runtimes
Codex and Claude Code
Parsed components
24 skill or MCP entries
Source updated
Aug 27, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install plugin

Installs for the current user
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add agent-skills-2@agent-plugin-marketplace

Paste and run these commands in a terminal with Codex. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/ghyghoo8/my-agent-skills

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The repository root is the plugin root.

Plugin files

agent-skills/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/api-and-interface-design/SKILL.md
├── skills/browser-testing-with-devtools/SKILL.md
├── skills/ci-cd-and-automation/SKILL.md
├── skills/code-review-and-quality/SKILL.md
├── skills/code-simplification/SKILL.md
├── skills/context-engineering/SKILL.md
├── skills/debugging-and-error-recovery/SKILL.md
├── skills/deprecation-and-migration/SKILL.md
├── skills/documentation-and-adrs/SKILL.md
├── skills/doubt-driven-development/SKILL.md
├── skills/frontend-ui-engineering/SKILL.md
├── skills/git-workflow-and-versioning/SKILL.md
├── skills/idea-refine/SKILL.md
├── skills/incremental-implementation/SKILL.md
├── skills/interview-me/SKILL.md
├── skills/observability-and-instrumentation/SKILL.md
├── skills/performance-optimization/SKILL.md
├── skills/planning-and-task-breakdown/SKILL.md
├── skills/security-and-hardening/SKILL.md
├── skills/shipping-and-launch/SKILL.md
├── skills/source-driven-development/SKILL.md
├── skills/spec-driven-development/SKILL.md
├── skills/test-driven-development/SKILL.md
└── skills/using-agent-skills/SKILL.md

Included Skills24

api-and-interface-designskills/api-and-interface-design/SKILL.md

Guides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints, defining type contracts between modules, or establishing boundaries between frontend and backend.

browser-testing-with-devtoolsskills/browser-testing-with-devtools/SKILL.md

Tests in real browsers via Chrome DevTools MCP. Use when building or debugging anything that runs in a browser. Use when you need to inspect the DOM, capture console errors, analyze network requests, profile performance, or verify visual output with real runtime data. Requires the chrome-devtools MCP server to be configured.

ci-cd-and-automationskills/ci-cd-and-automation/SKILL.md

Automates CI/CD pipeline setup. Use when setting up or modifying build and deployment pipelines. Use when you need to automate quality gates, configure test runners in CI, or establish deployment strategies.

code-review-and-qualityskills/code-review-and-quality/SKILL.md

Conducts multi-axis code review. Use before merging any change. Use when reviewing code written by yourself, another agent, or a human. Use when you need to assess code quality across multiple dimensions before it enters the main branch.

code-simplificationskills/code-simplification/SKILL.md

Simplifies code for clarity. Use when refactoring code for clarity without changing behavior. Use when code works but is harder to read, maintain, or extend than it should be. Use when reviewing code that has accumulated unnecessary complexity.

context-engineeringskills/context-engineering/SKILL.md

Optimizes agent context setup. Use when starting a new session, when agent output quality degrades, when switching between tasks, or when you need to configure rules files and context for a project.

debugging-and-error-recoveryskills/debugging-and-error-recovery/SKILL.md

Guides systematic root-cause debugging. Use when tests fail, builds break, behavior doesn't match expectations, or you encounter any unexpected error. Use when you need a systematic approach to finding and fixing the root cause rather than guessing.

deprecation-and-migrationskills/deprecation-and-migration/SKILL.md

Manages deprecation and migration. Use when removing old systems, APIs, or features. Use when migrating users from one implementation to another. Use when deciding whether to maintain or sunset existing code.

documentation-and-adrsskills/documentation-and-adrs/SKILL.md

Records decisions and documentation. Use when making architectural decisions, changing public APIs, shipping features, or when you need to record context that future engineers and agents will need to understand the codebase.

doubt-driven-developmentskills/doubt-driven-development/SKILL.md

Subjects every non-trivial decision to a fresh-context adversarial review before it stands. Use when correctness matters more than speed, when working in unfamiliar code, when stakes are high (production, security-sensitive logic, irreversible operations), or any time a confident output would be cheaper to verify now than to debug later.

frontend-ui-engineeringskills/frontend-ui-engineering/SKILL.md

Builds production-quality, accessible, responsive user-facing UIs. Use when building or modifying interfaces and pages, creating components, implementing layouts, meeting WCAG accessibility requirements, managing state, or when the output needs to look and feel production-quality rather than AI-generated.

git-workflow-and-versioningskills/git-workflow-and-versioning/SKILL.md

Structures git workflow practices. Use when making any code change. Use when committing, branching, resolving conflicts, or when you need to organize work across multiple parallel streams. Use when cutting a release, choosing a semantic version bump, tagging, or writing a changelog.

idea-refineskills/idea-refine/SKILL.md

Refines raw ideas into sharp, actionable concepts through structured divergent and convergent thinking. Use when an idea is still vague, when you need to stress-test assumptions before committing to a plan, or when you want to expand options before converging on one. Triggers on "ideate", "refine this idea", or "stress-test my plan".

incremental-implementationskills/incremental-implementation/SKILL.md

Delivers changes incrementally. Use when implementing any feature or change that touches more than one file. Use when you're about to write a large amount of code at once, or when a task feels too big to land in one step.

interview-meskills/interview-me/SKILL.md

Extracts what the user actually wants instead of what they think they should want. Achieves this through one-question-at-a-time interview until ~95% confidence about the underlying intent. Use when an ask is underspecified ("build me X" without "for whom" or "why now"), when the user explicitly invokes ("interview me", "grill me", "are we sure?", "stress-test my thinking"), or when you catch yourself silently filling in ambiguous requirements before any plan, spec, or code exists.

observability-and-instrumentationskills/observability-and-instrumentation/SKILL.md

Instruments code so production behavior is visible and diagnosable. Use when adding logging, metrics, tracing, or alerting. Use when shipping any feature that runs in production and you need evidence it works. Use when production issues are reported but you can't tell what happened from the available data.

performance-optimizationskills/performance-optimization/SKILL.md

Optimizes application performance across frontend, backend, queries, and databases. Use when performance requirements exist, when you suspect performance regressions, when Core Web Vitals or load times need improvement, when N+1 query patterns need fixing, or when profiling reveals bottlenecks.

planning-and-task-breakdownskills/planning-and-task-breakdown/SKILL.md

Breaks work into ordered tasks. Use when you have a spec or clear requirements and need to break work into implementable tasks. Use when a task feels too large to start, when you need to estimate scope, or when parallel work is possible.

security-and-hardeningskills/security-and-hardening/SKILL.md

Hardens code against vulnerabilities. Use when handling user input, authentication, data storage, or external integrations. Use when building any feature that accepts untrusted data, manages user sessions, or interacts with third-party services. Use when personal data or privacy compliance (GDPR, CCPA) is involved.

shipping-and-launchskills/shipping-and-launch/SKILL.md

Prepares production launches. Use when preparing to deploy to production. Use when you need a pre-launch checklist, when setting up monitoring, when planning a staged rollout, or when you need a rollback strategy.

source-driven-developmentskills/source-driven-development/SKILL.md

Grounds every implementation decision in official documentation. Use when you want authoritative, source-cited code free from outdated patterns. Use when building with any framework or library where correctness matters.

spec-driven-developmentskills/spec-driven-development/SKILL.md

Creates specs before coding. Use when starting a new project, feature, or significant change and no specification exists yet. Use when requirements are unclear, ambiguous, or only exist as a vague idea. Use when a single requirement spans several independently testable capabilities and needs decomposing into a capability map of modules before specifying.

test-driven-developmentskills/test-driven-development/SKILL.md

Drives development with tests. Use when implementing any logic, fixing any bug, or changing any behavior. Use when you need to prove that code works, when a bug report arrives, or when you're about to modify existing functionality.

using-agent-skillsskills/using-agent-skills/SKILL.md

Discovers and invokes agent skills. Use when starting a session or when you need to discover which skill applies to the current task. This is the meta-skill that governs how all other skills are discovered and invoked.

Plugin manifests2

.codex-plugin/plugin.json
{
  "name": "agent-skills",
  "version": "0.6.7",
  "description": "Production-grade engineering skills for AI coding agents covering the full software development lifecycle from spec to ship.",
  "author": {
    "name": "Addy Osmani",
    "url": "https://github.com/addyosmani"
  },
  "homepage": "https://github.com/addyosmani/agent-skills",
  "repository": "https://github.com/addyosmani/agent-skills",
  "license": "MIT",
  "skills": "./skills/",
  "interface": {
    "displayName": "Agent Skills",
    "shortDescription": "Senior-engineer workflows for AI coding agents: spec, plan, build, test, review, ship.",
    "longDescription": "Agent Skills bundles 24 production engineering workflows from Addy Osmani, covering requirements, planning, implementation, testing, review, and shipping.",
    "developerName": "Addy Osmani",
    "category": "Productivity",
    "capabilities": [
      "Interactive",
      "Read",
      "Write"
    ],
    "defaultPrompt": [
      "Help me choose the right engineering workflow for this task",
      "Plan and implement this change using the relevant Agent Skills"
    ]
  }
}
.claude-plugin/plugin.json
{
  "name": "agent-skills",
  "version": "0.6.7",
  "description": "Production-grade engineering skills for AI coding agents — covering the full software development lifecycle from spec to ship.",
  "author": {
    "name": "Addy Osmani"
  },
  "homepage": "https://github.com/addyosmani/agent-skills",
  "repository": "https://github.com/addyosmani/agent-skills",
  "license": "MIT",
  "commands": [
    "./.claude/commands",
    "./commands"
  ],
  "skills": "./skills"
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[agent-skills on Agent Plugins Marketplace](https://pluginsmp.com/plugins/agent-skills-2)