Agent Plugins Marketplace
All plugins

code

v1.30.0

Code quality tools for comment cleanup and emoji enhancement

CodexClaude Code6 Skills

By Craig MotlinLicense: Apache-2.015 GitHub starsUpdated 15 hours ago

Directory evidence

Runtimes
Codex and Claude Code
Parsed components
6 skill or MCP entries
Source updated
Aug 26, 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 code@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/motlin/claude-code-plugins

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

Plugin files

plugins/code/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/cli/SKILL.md
├── skills/code-generation/SKILL.md
├── skills/code-quality/SKILL.md
├── skills/comment-cleanup/SKILL.md
├── skills/test-assertions/SKILL.md
└── skills/test-data/SKILL.md

Included Skills6

cliskills/cli/SKILL.md

CLI guidelines. Use whenever using the Bash tool, which is almost always. Also use when you see "command not found: __zoxide_z" errors.

code-generationskills/code-generation/SKILL.md

This skill should be used when the user asks to "fix formatter-off", "fix code generation formatting", "fix auto-formatted string concatenation", "add formatter off", or when writing, reviewing, or generating Java code generators that build source code via string concatenation. Also applies proactively when creating new code generation methods or modifying existing ones — always use @formatter:off guards and the one-output-line-per-source-line convention.

code-qualityskills/code-quality/SKILL.md

Code quality guidelines. ALWAYS use skill for ANY code changes.

comment-cleanupskills/comment-cleanup/SKILL.md

Keep code comments concise and durable, or clean redundant comments without changing code behavior. Use when adding, editing, reviewing, or removing comments; after code changes; before committing; or when asked to clean comments in a diff or across the repository.

test-assertionsskills/test-assertions/SKILL.md

Write test assertions as complete, strict deep-equality checks, and hold existing tests to the same standard. Use when writing new tests, adding assertions, reviewing test quality, strengthening weak tests, or replacing fragmented assertions in a file, directory, diff, or repository.

test-dataskills/test-data/SKILL.md

This skill should be used when writing, reviewing, or modifying test code that contains literal values like timestamps, names, IDs, paths, or URLs.

Plugin manifests2

plugins/code/.codex-plugin/plugin.json
{
  "name": "code",
  "version": "1.30.0",
  "description": "Code quality tools for comment cleanup and emoji enhancement",
  "author": {
    "name": "Craig Motlin"
  },
  "license": "Apache-2.0",
  "homepage": "https://github.com/motlin/claude-code-plugins/tree/main/plugins/code",
  "repository": "https://github.com/motlin/claude-code-plugins",
  "keywords": [
    "codex",
    "plugin",
    "code"
  ],
  "interface": {
    "displayName": "Code",
    "shortDescription": "Code quality tools for comment cleanup and emoji enhancement",
    "longDescription": "Code quality tools for comment cleanup and emoji enhancement",
    "developerName": "Craig Motlin",
    "category": "Productivity",
    "capabilities": [
      "Skills"
    ],
    "defaultPrompt": [
      "Use the code plugin."
    ],
    "brandColor": "#3B82F6"
  },
  "skills": "./skills/"
}
plugins/code/.claude-plugin/plugin.json
{
  "$schema": "https://anthropic.com/claude-code/plugin.schema.json",
  "name": "code",
  "description": "Code quality tools for comment cleanup and emoji enhancement",
  "version": "1.30.0",
  "license": "Apache-2.0",
  "author": {
    "name": "Craig Motlin"
  },
  "agents": [
    "./agents/comment-cleaner.md"
  ],
  "skills": [
    "./skills/code-quality",
    "./skills/comment-cleanup",
    "./skills/cli",
    "./skills/code-generation",
    "./skills/test-data"
  ],
  "commands": [
    "./commands/comments.md",
    "./commands/all-comments.md",
    "./commands/emoji.md",
    "./commands/formatter-off.md",
    "./commands/test-assertions.md"
  ]
}

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

[code on Agent Plugins Marketplace](https://pluginsmp.com/plugins/code)