plugins marketplace
← All plugins

occam

v0.1.0

Adaptive minimalism for engineering and research development.

CodexClaude Code1 skill

by HzMIT0updated 1 month ago

Source

git clone https://github.com/chenghuzi/Occam

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

occam/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
└── skills/occam/SKILL.md

Skills1

occamskills/occam/SKILL.md

Adaptive minimalism for engineering and research development. Use when the user says "occam", "Occam mode", "minimal correct approach", "smallest correct implementation", "YAGNI", or asks to avoid over-engineering while preserving engineering safety, research inspectability, and long-term maintainability.

Manifests2

.codex-plugin/plugin.json
{
  "name": "occam",
  "version": "0.1.0",
  "description": "Adaptive minimalism for engineering and research development.",
  "author": {
    "name": "Hz",
    "url": "https://github.com/chenghuzi"
  },
  "homepage": "https://github.com/chenghuzi/Occam",
  "repository": "https://github.com/chenghuzi/Occam",
  "license": "MIT",
  "keywords": [
    "minimalism",
    "yagni",
    "engineering",
    "research",
    "agent-skills"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Occam",
    "shortDescription": "Smallest correct approach",
    "longDescription": "Adaptive minimalism for coding agents. Choose engineering, research, or mixed profile before applying the smallest correct implementation path.",
    "developerName": "Hz",
    "category": "Productivity",
    "capabilities": [
      "Instructions"
    ],
    "websiteURL": "https://github.com/chenghuzi/Occam",
    "defaultPrompt": [
      "Use Occam mode for this task.",
      "Find the smallest correct implementation.",
      "Avoid over-engineering this change."
    ],
    "brandColor": "#d7e579"
  }
}
.claude-plugin/plugin.json
{
  "name": "occam",
  "version": "0.1.0",
  "description": "Adaptive minimalism for engineering and research development.",
  "author": {
    "name": "Hz",
    "url": "https://github.com/chenghuzi"
  }
}