From 53a1c633a517ca5a12973807031668aad7a97d7c Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Fri, 29 May 2026 12:44:34 +0900 Subject: [PATCH] feat(omo-claude): add CC plugin manifest Distinct omo-claude branding (brandColor #D97757, Claude Code copy), same plugin name 'omo'. Declares skills/hooks/mcpServers paths; homepage/repository point at code-yeongyu/lazyclaudecode. Co-Authored-By: Claude Opus 4.8 (1M context) --- .../omo-claude/plugin/.claude-plugin/.gitkeep | 0 .../plugin/.claude-plugin/plugin.json | 35 +++++++++++++++++++ 2 files changed, 35 insertions(+) delete mode 100644 packages/omo-claude/plugin/.claude-plugin/.gitkeep create mode 100644 packages/omo-claude/plugin/.claude-plugin/plugin.json diff --git a/packages/omo-claude/plugin/.claude-plugin/.gitkeep b/packages/omo-claude/plugin/.claude-plugin/.gitkeep deleted file mode 100644 index e69de29bb..000000000 diff --git a/packages/omo-claude/plugin/.claude-plugin/plugin.json b/packages/omo-claude/plugin/.claude-plugin/plugin.json new file mode 100644 index 000000000..f7883c013 --- /dev/null +++ b/packages/omo-claude/plugin/.claude-plugin/plugin.json @@ -0,0 +1,35 @@ +{ + "name": "omo", + "version": "0.1.0", + "description": "One Claude Code plugin namespace for Yeongyu's local Claude Code components.", + "author": { + "name": "Yeongyu Kim", + "email": "yeongyu@users.noreply.github.com", + "url": "https://github.com/code-yeongyu" + }, + "homepage": "https://github.com/code-yeongyu/lazyclaudecode", + "repository": "https://github.com/code-yeongyu/lazyclaudecode", + "license": "MIT", + "keywords": ["claude-code", "claude-code-plugin", "omo", "hooks", "mcp", "skills"], + "skills": "./skills/", + "hooks": "./hooks/hooks.json", + "mcpServers": "./.mcp.json", + "interface": { + "displayName": "OMO", + "shortDescription": "Unified local Claude Code components", + "longDescription": "OMO exposes the local Claude Code Rules, Comment Checker, LSP, Ultrawork, and Ultragoal components as one plugin namespace while keeping each component isolated under components/ for maintenance.", + "developerName": "Yeongyu Kim", + "category": "Developer Tools", + "capabilities": ["Hooks", "MCP Tools", "Code Intelligence", "Workflow", "Context Injection"], + "websiteURL": "https://github.com/code-yeongyu/lazyclaudecode", + "privacyPolicyURL": "https://github.com/code-yeongyu/lazyclaudecode#privacy", + "termsOfServiceURL": "https://github.com/code-yeongyu/lazyclaudecode#license", + "defaultPrompt": [ + "Use OMO LSP diagnostics on this workspace.", + "Show which OMO rules matched this file.", + "ulw: run this change with evidence." + ], + "brandColor": "#D97757", + "screenshots": [] + } +}