Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:48:38 +08:00
commit 8d74e15c2a
13 changed files with 915 additions and 0 deletions

17
.claude-plugin/hooks.json Normal file
View File

@@ -0,0 +1,17 @@
{
"hooks": {
"SessionStart": [
{
"matcher": "startup|resume|clear|compact",
"hooks": [
{
"type": "command",
"command": "./.claude/hooks/SessionStart.sh",
"timeout": 60,
"description": "Initialize RAG-MAF systems on session start"
}
]
}
]
}
}

View File

@@ -0,0 +1,24 @@
{
"name": "rag-multi-agent-framework-plugin",
"description": "Local RAG plugin with Multi-Agent Framework orchestration for context-aware development assistance",
"version": "1.0.0",
"author": {
"name": "ItMeDiaTech",
"email": "",
"url": "https://github.com/ItMeDiaTech"
},
"commands": [
"./.claude/commands/rag-query.md",
"./.claude/commands/rag-index.md",
"./.claude/commands/rag-status.md",
"./.claude/commands/rag-save.md",
"./.claude/commands/rag-searches.md",
"./.claude/commands/rag-exec.md",
"./.claude/commands/rag-graph.md",
"./.claude/commands/rag-metrics.md",
"./.claude/commands/rag-query-advanced.md"
],
"hooks": [
"./.claude-plugin/hooks.json"
]
}