From 676b8a0807a05cb7f82f112a215b505403de63f2 Mon Sep 17 00:00:00 2001 From: geobelsky Date: Wed, 8 Apr 2026 10:19:45 +0000 Subject: [PATCH] feat: add Claude Code plugin manifest for marketplace Add .claude-plugin/plugin.json with metadata (name, description, author, homepage, keywords) and commit .mcp.json for plugin discovery. Enables installation via `/plugin install axme-code@marketplace` in Claude Code. MCP server starts automatically after install. Users still need `axme-code setup` for KB init and hooks. Co-Authored-By: Claude Opus 4.6 (1M context) --- .claude-plugin/plugin.json | 24 ++++++++++++++++++++++++ .mcp.json | 10 ++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .claude-plugin/plugin.json create mode 100644 .mcp.json diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json new file mode 100644 index 0000000..ecd4b40 --- /dev/null +++ b/.claude-plugin/plugin.json @@ -0,0 +1,24 @@ +{ + "name": "axme-code", + "version": "0.2.0", + "description": "Persistent memory, architectural decisions, and safety guardrails for Claude Code. Your agent starts every session with full project context — stack, decisions, patterns, safety rules, and a handoff from the previous session.", + "author": { + "name": "AXME AI", + "email": "hello@axme.ai", + "url": "https://github.com/AxmeAI" + }, + "homepage": "https://code.axme.ai", + "repository": "https://github.com/AxmeAI/axme-code", + "license": "MIT", + "keywords": [ + "memory", + "decisions", + "safety", + "guardrails", + "context-engineering", + "mcp-server", + "knowledge-base", + "session-continuity" + ], + "mcpServers": "./.mcp.json" +} diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..cb6f5d7 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,10 @@ +{ + "mcpServers": { + "axme": { + "command": "axme-code", + "args": [ + "serve" + ] + } + } +}