code-simplification
v1.4.0Language-agnostic code simplification that reduces complexity while preserving exact behavior.
By Patrick D'appollonioLicense: MIT8 GitHub starsUpdated last week
Directory evidence
- Runtimes
- Codex and Claude Code
- Parsed components
- 1 skill or MCP entry
- Source updated
- Sep 17, 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 code-simplification for Codex and Claude Code
codex plugin marketplace add patrickdappollonio/claude-plugins
codex plugin marketplace upgrade patrickdappollonio
codex plugin add code-simplification@patrickdappollonioPaste and run these commands in a terminal with Codex. They add and refresh the patrickdappollonio catalog, then install this plugin.
Compatibility: the page URL and API slug “code-simplification” remain stable.
- Codex:
code-simplification@agent-plugin-marketplace→code-simplification@patrickdappollonio
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/patrickdappollonio/claude-pluginsClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/code-simplification/.
Plugin files
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json└── skills/code-simplification/SKILL.md
Included Skills1
Use when code works but is harder to read, maintain, or extend than it should be — after a feature lands, when review flags complexity, or when you hit deep nesting, long functions, high cyclomatic complexity, functions too tangled to test, two functions that do nearly the same thing, duplicated logic, dead code, unclear names, or comments that narrate instead of inform — and you want the complexity reduced without changing behavior.
Plugin manifests2
{
"name": "code-simplification",
"version": "1.4.0",
"description": "Language-agnostic code simplification that reduces complexity while preserving exact behavior.",
"author": {
"name": "Patrick D'appollonio",
"email": "[email protected]"
},
"homepage": "https://github.com/patrickdappollonio/claude-plugins/tree/main/plugins/code-simplification",
"license": "MIT",
"keywords": [
"refactoring",
"simplification",
"code-quality",
"readability"
],
"skills": "./skills/",
"interface": {
"displayName": "Code Simplification",
"shortDescription": "Reduce complexity without changing behavior.",
"longDescription": "Simplifies nesting, long functions, duplication, dead code, and unclear names through small, tested changes.",
"developerName": "Patrick D'appollonio",
"category": "Developer Tools",
"capabilities": [
"Write",
"Review",
"Test"
],
"defaultPrompt": [
"Simplify what we just wrote."
]
}
}{
"name": "code-simplification",
"description": "Language-agnostic code simplification — reduces complexity (nesting, long functions, duplication, dead code, unclear names) while preserving exact behavior, applying one tested change at a time within a deliberate scope.",
"version": "1.4.0",
"author": {
"name": "Patrick D'appollonio",
"email": "[email protected]"
},
"homepage": "https://github.com/patrickdappollonio/claude-plugins/tree/main/plugins/code-simplification",
"license": "MIT",
"keywords": [
"refactoring",
"simplification",
"code-quality",
"readability",
"maintainability"
]
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[code-simplification on Agent Plugins Marketplace](https://pluginsmp.com/plugins/code-simplification)