From 4df203965cb51abfd9453e3abe4027239cfb3cf5 Mon Sep 17 00:00:00 2001 From: niksacdev Date: Mon, 15 Dec 2025 18:24:40 -0500 Subject: [PATCH] feat: add Claude Code plugin for easy installation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add Claude Code plugin manifest to enable one-command installation of all 8 engineering team agents via the plugin system. Changes: - Created .claude-plugin/plugin.json with: - Plugin metadata (name, version, author, license) - All 8 agent references (.claude/agents/*.md) - Keywords for discoverability - Updated README.md with plugin installation instructions: - Option A: Plugin installation (recommended) - Option B: Manual installation (existing method) Installation: Users can now install all agents with: /plugin install niksacdev/engineering-team-agents Benefits: - ✅ One-command installation - ✅ All 8 agents immediately available - ✅ Automatic updates when plugin updates - ✅ Easy distribution via GitHub - ✅ Integration with Claude Code plugin marketplace Agents included: 1. product-manager-advisor 2. ux-ui-designer 3. code-reviewer 4. system-architecture-reviewer 5. technical-writer 6. responsible-ai-code 7. gitops-ci-specialist 8. sync-coordinator 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .claude-plugin/plugin.json | 39 ++++++++++++++++++++++++++++++++++++++ README.md | 13 +++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 .claude-plugin/plugin.json diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json new file mode 100644 index 0000000..1171b94 --- /dev/null +++ b/.claude-plugin/plugin.json @@ -0,0 +1,39 @@ +{ + "name": "engineering-team-agents", + "description": "8 specialized agents for collaborative software engineering: Product Manager, UX Designer, System Architect, Code Reviewer, Technical Writer, Responsible AI, GitOps Specialist, and Sync Coordinator", + "version": "2.0.0", + "author": { + "name": "Nikhil Sachdeva", + "url": "https://github.com/niksacdev" + }, + "homepage": "https://github.com/niksacdev/engineering-team-agents", + "repository": { + "type": "git", + "url": "https://github.com/niksacdev/engineering-team-agents.git" + }, + "license": "MIT", + "keywords": [ + "agents", + "collaborative-engineering", + "product-management", + "ux-design", + "architecture", + "code-review", + "security", + "technical-writing", + "responsible-ai", + "devops", + "ci-cd", + "sdlc" + ], + "agents": [ + "./.claude/agents/product-manager-advisor.md", + "./.claude/agents/ux-ui-designer.md", + "./.claude/agents/code-reviewer.md", + "./.claude/agents/system-architecture-reviewer.md", + "./.claude/agents/technical-writer.md", + "./.claude/agents/responsible-ai-code.md", + "./.claude/agents/gitops-ci-specialist.md", + "./.claude/agents/sync-coordinator.md" + ] +} diff --git a/README.md b/README.md index 16e569b..6521b86 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,19 @@ Feature Request → Product Manager (requirements) ### 1. Install Collaborative Agent System +#### Option A: Claude Code Plugin (Recommended ⭐) + +Install directly as a plugin in Claude Code: + +```bash +# Install from GitHub +/plugin install niksacdev/engineering-team-agents +``` + +All 8 agents will be immediately available via the Task tool! + +#### Option B: Manual Installation + ```bash # Clone the collaborative engineering template git clone https://github.com/niksacdev/engineering-team-agents.git