Skip to content
This repository was archived by the owner on Jan 2, 2026. It is now read-only.

Commit 8fa61d5

Browse files
committed
refactor(plugin): move plugin.json to root directory
- Move plugin.json from .claude-plugin/ to root - Add marketplace.json for plugin discovery
1 parent 7ef9ecb commit 8fa61d5

3 files changed

Lines changed: 41 additions & 34 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "git-notes-memory",
3+
"description": "Plugin marketplace for git-notes-memory - Git-native, semantically-searchable memory storage for Claude Code",
4+
"version": "1.0.0",
5+
"owner": {
6+
"name": "zircote",
7+
"email": "zircote@gmail.com"
8+
},
9+
"plugins": [
10+
{
11+
"name": "memory-capture",
12+
"description": "Git-backed memory system for Claude Code. Captures decisions, learnings, and context as git notes with semantic search and automatic recall.",
13+
"version": "0.1.0",
14+
"author": {
15+
"name": "Robert Allen",
16+
"email": "zircote@gmail.com"
17+
},
18+
"repository": "https://github.com/zircote/git-notes-memory-manager",
19+
"license": "MIT",
20+
"keywords": ["memory", "git-notes", "semantic-search", "context", "recall"],
21+
"source": "./",
22+
"homepage": "https://github.com/zircote/git-notes-memory-manager#readme"
23+
}
24+
]
25+
}

.claude-plugin/plugin.json

Lines changed: 0 additions & 34 deletions
This file was deleted.

plugin.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "memory-capture",
3+
"version": "0.1.0",
4+
"description": "Git-backed memory system for Claude Code. Captures decisions, learnings, and context as git notes with semantic search and automatic recall.",
5+
"author": {
6+
"name": "Robert Allen",
7+
"email": "zircote@gmail.com"
8+
},
9+
"homepage": "https://github.com/zircote/git-notes-memory-manager#readme",
10+
"repository": "https://github.com/zircote/git-notes-memory-manager",
11+
"license": "MIT",
12+
"keywords": ["memory", "git-notes", "semantic-search", "context", "recall"],
13+
"commands": "./commands/",
14+
"skills": "./skills/",
15+
"hooks": "./hooks/hooks.json"
16+
}

0 commit comments

Comments
 (0)