claude-mpm 4.3.16__py3-none-any.whl → 4.3.19__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- claude_mpm/VERSION +1 -1
- claude_mpm/agents/templates/documentation.json +39 -11
- {claude_mpm-4.3.16.dist-info → claude_mpm-4.3.19.dist-info}/METADATA +1 -1
- {claude_mpm-4.3.16.dist-info → claude_mpm-4.3.19.dist-info}/RECORD +8 -8
- {claude_mpm-4.3.16.dist-info → claude_mpm-4.3.19.dist-info}/WHEEL +0 -0
- {claude_mpm-4.3.16.dist-info → claude_mpm-4.3.19.dist-info}/entry_points.txt +0 -0
- {claude_mpm-4.3.16.dist-info → claude_mpm-4.3.19.dist-info}/licenses/LICENSE +0 -0
- {claude_mpm-4.3.16.dist-info → claude_mpm-4.3.19.dist-info}/top_level.txt +0 -0
claude_mpm/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
4.3.
|
1
|
+
4.3.19
|
@@ -1,9 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"schema_version": "1.2.0",
|
3
3
|
"agent_id": "documentation-agent",
|
4
|
-
"agent_version": "3.
|
5
|
-
"template_version": "2.
|
4
|
+
"agent_version": "3.4.0",
|
5
|
+
"template_version": "2.3.0",
|
6
6
|
"template_changelog": [
|
7
|
+
{
|
8
|
+
"version": "2.3.0",
|
9
|
+
"date": "2025-09-25",
|
10
|
+
"description": "Integrated mcp-vector-search for semantic documentation discovery and pattern matching"
|
11
|
+
},
|
7
12
|
{
|
8
13
|
"version": "2.2.0",
|
9
14
|
"date": "2025-08-25",
|
@@ -18,7 +23,7 @@
|
|
18
23
|
"agent_type": "documentation",
|
19
24
|
"metadata": {
|
20
25
|
"name": "Documentation Agent",
|
21
|
-
"description": "Memory-efficient documentation generation with strategic content sampling",
|
26
|
+
"description": "Memory-efficient documentation generation with semantic search and strategic content sampling",
|
22
27
|
"category": "specialized",
|
23
28
|
"tags": [
|
24
29
|
"documentation",
|
@@ -26,7 +31,9 @@
|
|
26
31
|
"pattern-extraction",
|
27
32
|
"api-docs",
|
28
33
|
"guides",
|
29
|
-
"mcp-summarizer"
|
34
|
+
"mcp-summarizer",
|
35
|
+
"vector-search",
|
36
|
+
"semantic-discovery"
|
30
37
|
],
|
31
38
|
"author": "Claude MPM Team",
|
32
39
|
"created_at": "2025-07-27T03:45:51.468276Z",
|
@@ -45,7 +52,12 @@
|
|
45
52
|
"LS",
|
46
53
|
"WebSearch",
|
47
54
|
"TodoWrite",
|
48
|
-
"mcp__claude-mpm-gateway__document_summarizer"
|
55
|
+
"mcp__claude-mpm-gateway__document_summarizer",
|
56
|
+
"mcp__mcp-vector-search__search_code",
|
57
|
+
"mcp__mcp-vector-search__search_context",
|
58
|
+
"mcp__mcp-vector-search__search_similar",
|
59
|
+
"mcp__mcp-vector-search__get_project_status",
|
60
|
+
"mcp__mcp-vector-search__index_project"
|
49
61
|
],
|
50
62
|
"resource_tier": "lightweight",
|
51
63
|
"max_tokens": 8192,
|
@@ -63,17 +75,25 @@
|
|
63
75
|
]
|
64
76
|
}
|
65
77
|
},
|
66
|
-
"instructions": "# Documentation Agent\n\n**Inherits from**: BASE_AGENT_TEMPLATE.md\n**Focus**: Memory-efficient documentation with MCP summarizer\n\n## Core Expertise\n\nCreate clear, comprehensive documentation using pattern extraction and strategic sampling.\n\n## Memory Protection Rules\n\n### File Processing Thresholds\n- **20KB/200 lines**: Triggers mandatory summarization\n- **100KB+**: Use MCP summarizer directly, never read fully\n- **1MB+**: Skip or defer entirely\n- **Cumulative**: 50KB or 3 files triggers batch summarization\n\n### Processing Protocol\n1. **
|
78
|
+
"instructions": "# Documentation Agent\n\n**Inherits from**: BASE_AGENT_TEMPLATE.md\n**Focus**: Memory-efficient documentation with semantic search and MCP summarizer\n\n## Core Expertise\n\nCreate clear, comprehensive documentation using semantic discovery, pattern extraction, and strategic sampling.\n\n## Semantic Discovery Protocol (Priority #1)\n\n### ALWAYS Start with Vector Search\nBefore creating ANY documentation:\n1. **Check indexing status**: `mcp__mcp-vector-search__get_project_status`\n2. **Search existing patterns**: Use semantic search to find similar documentation\n3. **Analyze conventions**: Understand established documentation styles\n4. **Follow patterns**: Maintain consistency with discovered patterns\n\n### Vector Search Tools Usage\n- **`search_code`**: Find existing documentation by keywords/concepts\n - Example: \"API documentation\", \"usage guide\", \"installation instructions\"\n- **`search_context`**: Understand documentation structure and organization\n - Example: \"how documentation is organized\", \"readme structure patterns\"\n- **`search_similar`**: Find docs similar to what you're creating\n - Use when updating or extending existing documentation\n- **`get_project_status`**: Check if project is indexed (run first!)\n- **`index_project`**: Index project if needed (only if not indexed)\n\n## Memory Protection Rules\n\n### File Processing Thresholds\n- **20KB/200 lines**: Triggers mandatory summarization\n- **100KB+**: Use MCP summarizer directly, never read fully\n- **1MB+**: Skip or defer entirely\n- **Cumulative**: 50KB or 3 files triggers batch summarization\n\n### Processing Protocol\n1. **Semantic search first**: Use vector search before file reading\n2. **Check size second**: `ls -lh <file>` before reading\n3. **Process sequentially**: One file at a time\n4. **Extract patterns**: Keep patterns, discard content immediately\n5. **Use grep strategically**: Adaptive context based on matches\n - >50 matches: `-A 2 -B 2 | head -50`\n - <20 matches: `-A 10 -B 10`\n6. **Chunk large files**: Process in <100 line segments\n\n### Forbidden Practices\n❌ Never create documentation without searching existing patterns first\n❌ Never read entire large codebases or files >1MB\n❌ Never process files in parallel or accumulate content\n❌ Never skip semantic search or size checks\n\n## Documentation Workflow\n\n### Phase 1: Semantic Discovery (NEW - MANDATORY)\n```python\n# Check if project is indexed\nstatus = mcp__mcp-vector-search__get_project_status()\n\n# Search for existing documentation patterns\npatterns = mcp__mcp-vector-search__search_code(\n query=\"documentation readme guide tutorial\",\n file_extensions=[\".md\", \".rst\", \".txt\"]\n)\n\n# Understand documentation context\ncontext = mcp__mcp-vector-search__search_context(\n description=\"existing documentation structure and conventions\",\n focus_areas=[\"documentation\", \"guides\", \"tutorials\"]\n)\n```\n\n### Phase 2: Assessment\n```bash\nls -lh docs/*.md | awk '{print $9, $5}' # List with sizes\nfind . -name \"*.md\" -size +100k # Find large files\n```\n\n### Phase 3: Pattern Extraction\n- Use vector search results to identify patterns\n- Extract section structures from similar docs\n- Maintain consistency with discovered conventions\n\n### Phase 4: Content Generation\n- Follow patterns discovered via semantic search\n- Extract key patterns from representative files\n- Use line numbers for precise references\n- Apply progressive summarization for large sets\n- Generate documentation consistent with existing style\n\n## MCP Integration\n\n### Vector Search (Primary Discovery Tool)\nUse `mcp__mcp-vector-search__*` tools for:\n- Discovering existing documentation patterns\n- Finding similar documentation for consistency\n- Understanding project documentation structure\n- Avoiding duplication of existing docs\n\n### Document Summarizer (Memory Protection)\nUse `mcp__claude-mpm-gateway__document_summarizer` for:\n- Files exceeding 100KB (mandatory)\n- Batch summarization after 3 files\n- Executive summaries of large documentation sets\n\n## Quality Standards\n\n- **Consistency**: Match existing documentation patterns via semantic search\n- **Discovery**: Always search before creating new documentation\n- **Accuracy**: Precise references without full retention\n- **Clarity**: User-friendly language and structure\n- **Efficiency**: Semantic search before file reading\n- **Completeness**: Cover all essential aspects",
|
67
79
|
"knowledge": {
|
68
80
|
"domain_expertise": [
|
81
|
+
"Semantic documentation discovery",
|
82
|
+
"Vector search for pattern matching",
|
69
83
|
"Memory-efficient documentation strategies",
|
70
84
|
"Progressive summarization techniques",
|
71
85
|
"Pattern extraction methods",
|
72
86
|
"Technical writing standards",
|
73
87
|
"API documentation patterns",
|
74
|
-
"MCP summarizer integration"
|
88
|
+
"MCP summarizer integration",
|
89
|
+
"Documentation consistency analysis"
|
75
90
|
],
|
76
91
|
"best_practices": [
|
92
|
+
"ALWAYS use vector search before creating documentation",
|
93
|
+
"Check project indexing status with get_project_status first",
|
94
|
+
"Search for similar documentation patterns with search_code",
|
95
|
+
"Understand documentation context with search_context",
|
96
|
+
"Use search_similar to maintain consistency with existing docs",
|
77
97
|
"Check file size before any Read operation",
|
78
98
|
"Extract patterns from 3-5 representative files",
|
79
99
|
"Use grep with line numbers for references",
|
@@ -83,10 +103,12 @@
|
|
83
103
|
"Discard content immediately after extraction"
|
84
104
|
],
|
85
105
|
"constraints": [
|
106
|
+
"Must use vector search before creating new documentation",
|
86
107
|
"Maximum 3-5 files without summarization",
|
87
108
|
"Files >100KB must use summarizer",
|
88
109
|
"Sequential processing only",
|
89
|
-
"Immediate content disposal required"
|
110
|
+
"Immediate content disposal required",
|
111
|
+
"Documentation must follow discovered patterns"
|
90
112
|
],
|
91
113
|
"examples": []
|
92
114
|
},
|
@@ -132,12 +154,14 @@
|
|
132
154
|
}
|
133
155
|
},
|
134
156
|
"memory_routing": {
|
135
|
-
"description": "Stores writing standards, content organization patterns, and
|
157
|
+
"description": "Stores writing standards, content organization patterns, documentation conventions, and semantic search patterns",
|
136
158
|
"categories": [
|
159
|
+
"Semantic documentation discovery patterns",
|
137
160
|
"Writing standards and style guides",
|
138
161
|
"Content organization patterns",
|
139
162
|
"API documentation conventions",
|
140
|
-
"User guide templates"
|
163
|
+
"User guide templates",
|
164
|
+
"Documentation consistency patterns"
|
141
165
|
],
|
142
166
|
"keywords": [
|
143
167
|
"document",
|
@@ -154,7 +178,11 @@
|
|
154
178
|
"usage",
|
155
179
|
"howto",
|
156
180
|
"API docs",
|
157
|
-
"markdown"
|
181
|
+
"markdown",
|
182
|
+
"semantic search",
|
183
|
+
"vector search",
|
184
|
+
"pattern discovery",
|
185
|
+
"documentation consistency"
|
158
186
|
]
|
159
187
|
},
|
160
188
|
"dependencies": {
|
@@ -1,5 +1,5 @@
|
|
1
1
|
claude_mpm/BUILD_NUMBER,sha256=toytnNjkIKPgQaGwDqQdC1rpNTAdSEc6Vja50d7Ovug,4
|
2
|
-
claude_mpm/VERSION,sha256=
|
2
|
+
claude_mpm/VERSION,sha256=mcvuz245XGheLgXnHty1pfYOHX3uRqCeGRag-Bsh23Q,7
|
3
3
|
claude_mpm/__init__.py,sha256=lyTZAYGH4DTaFGLRNWJKk5Q5oTjzN5I6AXmfVX-Jff0,1512
|
4
4
|
claude_mpm/__main__.py,sha256=Ro5UBWBoQaSAIoSqWAr7zkbLyvi4sSy28WShqAhKJG0,723
|
5
5
|
claude_mpm/constants.py,sha256=cChN3myrAcF3jC-6DvHnBFTEnwlDk-TAsIXPvUZr_yw,5953
|
@@ -34,7 +34,7 @@ claude_mpm/agents/templates/api_qa.json,sha256=5kPwahK5QlbDV-dxWTmso2EkWTCw9e332
|
|
34
34
|
claude_mpm/agents/templates/clerk-ops.json,sha256=2rMKsYJ8YE2U0bE9U8rExgaEc2g5LYCeuw1cNpLeFrA,15265
|
35
35
|
claude_mpm/agents/templates/code_analyzer.json,sha256=ZxjJxtioSwfv8ELme4eUqazoJTsORVOLad_0_bQqZb8,7411
|
36
36
|
claude_mpm/agents/templates/data_engineer.json,sha256=_-vxcAcmC_4lswyngDn9oNefvR6VxtOT1fDeAqJLlEw,19514
|
37
|
-
claude_mpm/agents/templates/documentation.json,sha256=
|
37
|
+
claude_mpm/agents/templates/documentation.json,sha256=Hp9GADw0Wttmxe2pxTCg40DT1Ama2-YWbWDMM5RyBZ4,10014
|
38
38
|
claude_mpm/agents/templates/engineer.json,sha256=tAWKqt35OyL0RUQgTSeX9nVtcjF94ND-WbflXStAXHA,8222
|
39
39
|
claude_mpm/agents/templates/gcp_ops_agent.json,sha256=v2exIGCzPLBDu5M4CCxZ1k3EQfrV0jc6T9C2ecPjScY,10812
|
40
40
|
claude_mpm/agents/templates/imagemagick.json,sha256=6Zy4W_q6BYkJxd_KqDT2B3GBkwhn7VKT9ZVj-O_tj0Q,17747
|
@@ -724,9 +724,9 @@ claude_mpm/utils/subprocess_utils.py,sha256=9mC9V6ThLUu48OMaYaSHwXnxG8BeH70kv7ys
|
|
724
724
|
claude_mpm/validation/__init__.py,sha256=YZhwE3mhit-lslvRLuwfX82xJ_k4haZeKmh4IWaVwtk,156
|
725
725
|
claude_mpm/validation/agent_validator.py,sha256=p6T0vpJaB-PyVxIA0hlsFs9lsbX7dvMPXG132AIl3AI,20884
|
726
726
|
claude_mpm/validation/frontmatter_validator.py,sha256=u8g4Eyd_9O6ugj7Un47oSGh3kqv4wMkuks2i_CtWRvM,7028
|
727
|
-
claude_mpm-4.3.
|
728
|
-
claude_mpm-4.3.
|
729
|
-
claude_mpm-4.3.
|
730
|
-
claude_mpm-4.3.
|
731
|
-
claude_mpm-4.3.
|
732
|
-
claude_mpm-4.3.
|
727
|
+
claude_mpm-4.3.19.dist-info/licenses/LICENSE,sha256=lpaivOlPuBZW1ds05uQLJJswy8Rp_HMNieJEbFlqvLk,1072
|
728
|
+
claude_mpm-4.3.19.dist-info/METADATA,sha256=pfmYqQbweqQ0HfkNC71NIBiKT-DUByiu3k6G_Da4uEE,16150
|
729
|
+
claude_mpm-4.3.19.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
730
|
+
claude_mpm-4.3.19.dist-info/entry_points.txt,sha256=FDPZgz8JOvD-6iuXY2l9Zbo9zYVRuE4uz4Qr0vLeGOk,471
|
731
|
+
claude_mpm-4.3.19.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
|
732
|
+
claude_mpm-4.3.19.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|