claude-mpm 1.1.0__py3-none-any.whl → 2.1.0__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.py +4 -33
- claude_mpm/agents/INSTRUCTIONS.md +109 -319
- claude_mpm/agents/agent_loader.py +184 -278
- claude_mpm/agents/base_agent.json +1 -1
- claude_mpm/agents/templates/backup/data_engineer_agent_20250726_234551.json +46 -0
- claude_mpm/agents/templates/{engineer_agent.json → backup/engineer_agent_20250726_234551.json} +1 -1
- claude_mpm/agents/templates/data_engineer.json +107 -0
- claude_mpm/agents/templates/documentation.json +106 -0
- claude_mpm/agents/templates/engineer.json +110 -0
- claude_mpm/agents/templates/ops.json +106 -0
- claude_mpm/agents/templates/qa.json +106 -0
- claude_mpm/agents/templates/research.json +75 -0
- claude_mpm/agents/templates/security.json +105 -0
- claude_mpm/agents/templates/version_control.json +103 -0
- claude_mpm/cli.py +80 -11
- claude_mpm/core/simple_runner.py +45 -5
- claude_mpm/hooks/claude_hooks/hook_handler.py +115 -1
- claude_mpm/schemas/agent_schema.json +328 -0
- claude_mpm/services/agent_capabilities_generator.py +182 -0
- claude_mpm/services/agent_deployment.py +228 -37
- claude_mpm/services/deployed_agent_discovery.py +222 -0
- claude_mpm/services/framework_claude_md_generator/content_assembler.py +29 -0
- claude_mpm/services/framework_claude_md_generator/deployment_manager.py +29 -7
- claude_mpm/utils/framework_detection.py +39 -0
- claude_mpm/validation/agent_validator.py +252 -125
- {claude_mpm-1.1.0.dist-info → claude_mpm-2.1.0.dist-info}/METADATA +108 -26
- {claude_mpm-1.1.0.dist-info → claude_mpm-2.1.0.dist-info}/RECORD +36 -25
- claude_mpm/agents/templates/data_engineer_agent.json +0 -46
- claude_mpm/agents/templates/update-optimized-specialized-agents.json +0 -374
- /claude_mpm/agents/templates/{documentation_agent.json → backup/documentation_agent_20250726_234551.json} +0 -0
- /claude_mpm/agents/templates/{ops_agent.json → backup/ops_agent_20250726_234551.json} +0 -0
- /claude_mpm/agents/templates/{qa_agent.json → backup/qa_agent_20250726_234551.json} +0 -0
- /claude_mpm/agents/templates/{research_agent.json → backup/research_agent_20250726_234551.json} +0 -0
- /claude_mpm/agents/templates/{security_agent.json → backup/security_agent_20250726_234551.json} +0 -0
- /claude_mpm/agents/templates/{version_control_agent.json → backup/version_control_agent_20250726_234551.json} +0 -0
- {claude_mpm-1.1.0.dist-info → claude_mpm-2.1.0.dist-info}/WHEEL +0 -0
- {claude_mpm-1.1.0.dist-info → claude_mpm-2.1.0.dist-info}/entry_points.txt +0 -0
- {claude_mpm-1.1.0.dist-info → claude_mpm-2.1.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: claude-mpm
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.1.0
|
|
4
4
|
Summary: Claude Multi-agent Project Manager - Clean orchestration with ticket management
|
|
5
5
|
Home-page: https://github.com/bobmatnyc/claude-mpm
|
|
6
6
|
Author: Claude MPM Team
|
|
@@ -46,8 +46,104 @@ Dynamic: requires-python
|
|
|
46
46
|
|
|
47
47
|
> **Note**: This project is a fork of [claude-multiagent-pm](https://github.com/kfsone/claude-multiagent-pm), enhanced to integrate with [Claude Code](https://docs.anthropic.com/en/docs/claude-code) v1.0.60+'s native agent system. This integration enables seamless orchestration of Claude Code's built-in agents (research, engineer, qa, documentation, security, ops, version_control, data_engineer) through a unified project management interface.
|
|
48
48
|
|
|
49
|
+
> **⚠️ Version 2.0.0 Breaking Changes**: Agent schema has been standardized. Agent IDs no longer use the `_agent` suffix (e.g., `research_agent` → `research`). See the [migration guide](docs/user/05-migration/schema-standardization-migration.md) for details.
|
|
50
|
+
|
|
49
51
|
A framework for Claude that enables multi-agent workflows and extensible capabilities through a modular architecture.
|
|
50
52
|
|
|
53
|
+
## Quick Start
|
|
54
|
+
|
|
55
|
+
### Why Interactive Mode?
|
|
56
|
+
**Interactive mode is significantly more performant** than non-interactive commands. It maintains context between requests and avoids the overhead of repeatedly launching Claude, making your development workflow much faster and more efficient.
|
|
57
|
+
|
|
58
|
+
### Installation
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
# Install globally via npm (recommended)
|
|
62
|
+
npm install -g @bobmatnyc/claude-mpm
|
|
63
|
+
|
|
64
|
+
# Or use npx for one-time usage
|
|
65
|
+
npx @bobmatnyc/claude-mpm
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
### Three Essential Use Cases
|
|
69
|
+
|
|
70
|
+
#### 1. 🔍 **Understand Your Codebase**
|
|
71
|
+
Start with codebase exploration - perfect for onboarding or getting oriented:
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
# Launch interactive mode
|
|
75
|
+
claude-mpm
|
|
76
|
+
|
|
77
|
+
# Then ask:
|
|
78
|
+
> Explain the codebase structure. What are the main components, how do they interact, and what architectural patterns are used?
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
#### 2. 🚀 **Build a New Project**
|
|
82
|
+
For greenfield development, use detailed, AI-generated prompts for best results:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
claude-mpm
|
|
86
|
+
|
|
87
|
+
# Example detailed prompt (AI-generated prompts work best):
|
|
88
|
+
> Create a modern web application with the following requirements:
|
|
89
|
+
> - Next.js 14 with TypeScript and Tailwind CSS
|
|
90
|
+
> - Authentication using NextAuth.js with GitHub provider
|
|
91
|
+
> - PostgreSQL database with Prisma ORM
|
|
92
|
+
> - User dashboard with CRUD operations for "projects"
|
|
93
|
+
> - API routes following REST conventions
|
|
94
|
+
> - Responsive design with dark/light mode toggle
|
|
95
|
+
> - Form validation using react-hook-form and zod
|
|
96
|
+
> - Include proper error handling and loading states
|
|
97
|
+
> - Set up ESLint, Prettier, and basic testing with Jest
|
|
98
|
+
> - Generate a complete project structure with all necessary files
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
#### 3. 🔧 **Enhance Existing Code**
|
|
102
|
+
For working on your current codebase, provide rich context:
|
|
103
|
+
|
|
104
|
+
```bash
|
|
105
|
+
claude-mpm
|
|
106
|
+
|
|
107
|
+
# Example detailed enhancement prompt:
|
|
108
|
+
> I need to add real-time notifications to my existing Next.js application. Current tech stack:
|
|
109
|
+
> - Next.js 13 with app router
|
|
110
|
+
> - TypeScript
|
|
111
|
+
> - Tailwind CSS
|
|
112
|
+
> - PostgreSQL with Prisma
|
|
113
|
+
> - User authentication already implemented
|
|
114
|
+
>
|
|
115
|
+
> Requirements:
|
|
116
|
+
> - WebSocket-based real-time notifications
|
|
117
|
+
> - Toast notifications in the UI
|
|
118
|
+
> - Database table to store notification history
|
|
119
|
+
> - Mark as read/unread functionality
|
|
120
|
+
> - Different notification types (info, warning, success, error)
|
|
121
|
+
> - Admin panel to send system-wide notifications
|
|
122
|
+
> - Email fallback for offline users
|
|
123
|
+
>
|
|
124
|
+
> Please analyze my current codebase structure and implement this feature following my existing patterns and conventions.
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
### 💡 Pro Tips for Better Results
|
|
128
|
+
|
|
129
|
+
1. **Use AI to generate your prompts**: Ask ChatGPT or Claude to help you create detailed, specific prompts for your use case
|
|
130
|
+
2. **Provide context**: Include your tech stack, requirements, and any constraints
|
|
131
|
+
3. **Stay interactive**: Keep the conversation going to refine and iterate on solutions
|
|
132
|
+
4. **Ask for explanations**: Request explanations of architectural decisions and trade-offs
|
|
133
|
+
|
|
134
|
+
### Alternative: Non-Interactive Mode
|
|
135
|
+
For automation or simple one-off tasks:
|
|
136
|
+
|
|
137
|
+
```bash
|
|
138
|
+
# Quick analysis
|
|
139
|
+
claude-mpm run -i "What testing frameworks are used in this project?" --non-interactive
|
|
140
|
+
|
|
141
|
+
# With subprocess orchestration for complex tasks
|
|
142
|
+
claude-mpm run --subprocess -i "Audit this codebase for security vulnerabilities" --non-interactive
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
**Note**: Non-interactive mode has higher overhead and is less efficient for multi-step development workflows.
|
|
146
|
+
|
|
51
147
|
|
|
52
148
|
## 📚 Documentation
|
|
53
149
|
|
|
@@ -98,6 +194,7 @@ Claude MPM provides a modular framework for extending Claude's capabilities:
|
|
|
98
194
|
- Dynamic agent discovery and registration
|
|
99
195
|
- Template-based agent definitions
|
|
100
196
|
- Extensible agent architecture
|
|
197
|
+
- **Dynamic Capabilities**: Agent documentation automatically generated from deployed agents
|
|
101
198
|
|
|
102
199
|
### Hook System
|
|
103
200
|
- Pre and post-processing hooks
|
|
@@ -117,11 +214,18 @@ Claude MPM provides a modular framework for extending Claude's capabilities:
|
|
|
117
214
|
- Organized log structure
|
|
118
215
|
- Performance monitoring
|
|
119
216
|
|
|
217
|
+
### Security Features
|
|
218
|
+
- **File System Protection**: Automatic sandboxing prevents file operations outside the working directory
|
|
219
|
+
- **Path Traversal Prevention**: Blocks attempts to escape the project directory using `..` or symlinks
|
|
220
|
+
- **Write Operation Control**: All write operations are validated while read operations remain unrestricted
|
|
221
|
+
- **Transparent Security**: Zero-configuration security that works automatically in the background
|
|
222
|
+
- **Comprehensive Logging**: All security events are logged for audit purposes
|
|
223
|
+
|
|
120
224
|
## Installation
|
|
121
225
|
|
|
122
|
-
###
|
|
226
|
+
### Other Installation Methods
|
|
123
227
|
|
|
124
|
-
####
|
|
228
|
+
#### Using UV (Recommended - Fast)
|
|
125
229
|
UV is a lightning-fast Python package manager written in Rust, offering 10-100x speed improvements over pip.
|
|
126
230
|
|
|
127
231
|
```bash
|
|
@@ -135,7 +239,7 @@ uv pip install claude-mpm
|
|
|
135
239
|
uv pip install git+https://github.com/bobmatnyc/claude-mpm.git
|
|
136
240
|
```
|
|
137
241
|
|
|
138
|
-
####
|
|
242
|
+
#### Using pip (Traditional)
|
|
139
243
|
```bash
|
|
140
244
|
# Install from PyPI
|
|
141
245
|
pip install claude-mpm
|
|
@@ -144,13 +248,6 @@ pip install claude-mpm
|
|
|
144
248
|
pip install git+https://github.com/bobmatnyc/claude-mpm.git
|
|
145
249
|
```
|
|
146
250
|
|
|
147
|
-
#### Option 3: Using npm (Wrapper)
|
|
148
|
-
**Note**: This installs a wrapper that still requires Python. It's provided for convenience but the Python package is the primary distribution method.
|
|
149
|
-
|
|
150
|
-
```bash
|
|
151
|
-
npm install -g @bobmatnyc/claude-mpm
|
|
152
|
-
```
|
|
153
|
-
|
|
154
251
|
### From Source (Development)
|
|
155
252
|
|
|
156
253
|
```bash
|
|
@@ -218,21 +315,6 @@ Commands:
|
|
|
218
315
|
info Show framework and configuration info
|
|
219
316
|
```
|
|
220
317
|
|
|
221
|
-
## Quick Start
|
|
222
|
-
|
|
223
|
-
```bash
|
|
224
|
-
# 1. Clone and install
|
|
225
|
-
git clone https://github.com/yourusername/claude-mpm.git
|
|
226
|
-
cd claude-mpm
|
|
227
|
-
./install_dev.sh
|
|
228
|
-
source venv/bin/activate
|
|
229
|
-
|
|
230
|
-
# 2. Run interactive session
|
|
231
|
-
claude-mpm
|
|
232
|
-
|
|
233
|
-
# 3. Or run a single command
|
|
234
|
-
claude-mpm run -i "Explain the codebase structure" --non-interactive
|
|
235
|
-
```
|
|
236
318
|
|
|
237
319
|
|
|
238
320
|
## Architecture
|
|
@@ -1,32 +1,39 @@
|
|
|
1
1
|
claude_mpm/__init__.py,sha256=sAbTZkHe3vWYAKDWdGyGVue5zwLD7nCOHZwZrLALM8A,395
|
|
2
2
|
claude_mpm/__main__.py,sha256=smBw-5J3nf5s6GgQjj384GUr28YotIX-WNOxqpP0wnE,310
|
|
3
|
-
claude_mpm/_version.py,sha256=
|
|
4
|
-
claude_mpm/cli.py,sha256=
|
|
3
|
+
claude_mpm/_version.py,sha256=HBkjBFMyGB0Jyz0lTkWhWTEalldfBZqkqfHkyuIxBJk,159
|
|
4
|
+
claude_mpm/cli.py,sha256=_6tUSY0FqBN6cHR6awuXgqm2-Hlh-L508rB-RDgflPU,26036
|
|
5
5
|
claude_mpm/cli_enhancements.py,sha256=nwdOrbXITRqvcq_vrJtPKW1GDS7dLIG4UqjoUet2vR0,10890
|
|
6
6
|
claude_mpm/cli_main.py,sha256=KCAe-ws73NrIg5qmFhPdZ1a4uoiaEZ-lldYzQ6KfnJg,306
|
|
7
7
|
claude_mpm/constants.py,sha256=5AG5hgBxOC7gMNHDx0lAhS-FQ8gXhtGtqJ9Moj3S6ro,4044
|
|
8
8
|
claude_mpm/init.py,sha256=gOreOf7BLXkT0_HrQk_As4Kz1OT_NJG_RG0i0hbY0z0,8088
|
|
9
9
|
claude_mpm/agents/BASE_AGENT_TEMPLATE.md,sha256=TYgSd9jNBMWp4mAOBUl9dconX4RcGbvmMEScRy5uyko,3343
|
|
10
|
-
claude_mpm/agents/INSTRUCTIONS.md,sha256=
|
|
10
|
+
claude_mpm/agents/INSTRUCTIONS.md,sha256=X6bOhSII3pZVZh_Vw_zMYRdfLtyl5Mmf_jhrVYfNxFs,7200
|
|
11
11
|
claude_mpm/agents/__init__.py,sha256=r-p7ervzjLPD7_8dm2tXX_fwvdTZy6KwKA03ofxN3sA,3275
|
|
12
12
|
claude_mpm/agents/agent-template.yaml,sha256=koKJn8MCAJx0QNQMHouvIZrwvw5qjPV0U-aV-YVyk6s,2036
|
|
13
|
-
claude_mpm/agents/agent_loader.py,sha256=
|
|
13
|
+
claude_mpm/agents/agent_loader.py,sha256=aZiTX8u0__8ueHzwney98PHfVMSkrpF3Nh-DoFlso74,18675
|
|
14
14
|
claude_mpm/agents/agent_loader_integration.py,sha256=z_DXxAIeuUD71HBYdxxvcFKoQYQxITLo8oAdN_M4LTA,7610
|
|
15
15
|
claude_mpm/agents/agents_metadata.py,sha256=Xju9Yim6XSv2u1J_Swre5VJySbdxxC-9TzpOfXG8ibg,5170
|
|
16
|
-
claude_mpm/agents/base_agent.json,sha256=
|
|
16
|
+
claude_mpm/agents/base_agent.json,sha256=wvopTu58PEdvgvjBi45J5aBA6bxs5_v1KC84CbJeRzY,3820
|
|
17
17
|
claude_mpm/agents/base_agent_loader.py,sha256=DJ0BDP_7ic3q0Zv5YQFZCYZp2V3bC3bB1v11ohbN8yU,18418
|
|
18
18
|
claude_mpm/agents/system_agent_config.py,sha256=Lke4FFjU0Vq3LLo4O7KvtHxadP7agAwC-ljCXK40h_A,23526
|
|
19
19
|
claude_mpm/agents/schema/agent_schema.json,sha256=Ca_8E0QkFpGwQd7XjVy3jnBMv_-Yo2rL7Po-ziHut2U,5472
|
|
20
20
|
claude_mpm/agents/templates/__init__.py,sha256=7UyIChghCnkrDctvmCRYr0Wrnn8Oj-eCdgL0KpFy1Mo,2668
|
|
21
|
-
claude_mpm/agents/templates/
|
|
22
|
-
claude_mpm/agents/templates/
|
|
23
|
-
claude_mpm/agents/templates/
|
|
24
|
-
claude_mpm/agents/templates/
|
|
25
|
-
claude_mpm/agents/templates/
|
|
26
|
-
claude_mpm/agents/templates/
|
|
27
|
-
claude_mpm/agents/templates/
|
|
28
|
-
claude_mpm/agents/templates/
|
|
29
|
-
claude_mpm/agents/templates/
|
|
21
|
+
claude_mpm/agents/templates/data_engineer.json,sha256=3qLAOSBO47O5bj8gnUNvEjeIe9bRc6Hzaj3w_pTvmvI,5811
|
|
22
|
+
claude_mpm/agents/templates/documentation.json,sha256=W6gF0p2XpXrYPng7aUjbpE0Z3IW193EbP3nKoNmY4yc,3043
|
|
23
|
+
claude_mpm/agents/templates/engineer.json,sha256=vRAr9sEgKt7_IVg2e3iZmLQFQHTzjgM-YQepS-TL6rY,8829
|
|
24
|
+
claude_mpm/agents/templates/ops.json,sha256=mNoS_OS_e4Ht2drx3d7H0I18x38LX16E-mhsJn95ydQ,2899
|
|
25
|
+
claude_mpm/agents/templates/qa.json,sha256=qEsJzkXbqM4pAdl4vyW1HeaQME5SvnIk4XttPWI2Dhw,2942
|
|
26
|
+
claude_mpm/agents/templates/research.json,sha256=nwqExnDvMVGih7RGzbwpYGBb1NbAdHRq3L03S4QtzKs,10180
|
|
27
|
+
claude_mpm/agents/templates/security.json,sha256=T0hRMeHq54ryblR2QsBFBJtNx-mYR3VEtwQYOvx4EOU,2945
|
|
28
|
+
claude_mpm/agents/templates/version_control.json,sha256=RsV0WLs58boDOzurwB75Zdol4uXf_Za0VHOqQ3Og2Rw,2923
|
|
29
|
+
claude_mpm/agents/templates/backup/data_engineer_agent_20250726_234551.json,sha256=lLso4RHXVTQmX4A1XwF84kT59zZDblPO1xCgBj4S4x8,5060
|
|
30
|
+
claude_mpm/agents/templates/backup/documentation_agent_20250726_234551.json,sha256=snfJW2yW9aMv9ldCSIWW7zwnyoQRx5u7xLMkNlfus9I,2258
|
|
31
|
+
claude_mpm/agents/templates/backup/engineer_agent_20250726_234551.json,sha256=21o8TGCM9TO6eocSV9Ev5MmCq-xYwwCqMU7KQESaY2Q,8479
|
|
32
|
+
claude_mpm/agents/templates/backup/ops_agent_20250726_234551.json,sha256=y-unQijBWKAaPz3YCFoe21OMZXsU8jJ-mFrLGcmo8H0,2227
|
|
33
|
+
claude_mpm/agents/templates/backup/qa_agent_20250726_234551.json,sha256=_FHWnUeh151rgWX_xUgXsfGrJz7Bs3wno2lXU0nTwAo,2157
|
|
34
|
+
claude_mpm/agents/templates/backup/research_agent_20250726_234551.json,sha256=o4n_sqSbjnsFRELB2q501vgwm-o2tQNLJLYvnVP9LWU,5629
|
|
35
|
+
claude_mpm/agents/templates/backup/security_agent_20250726_234551.json,sha256=l5YuD-27CxKSOsRLv0bDY_tCZyds0yGbeizLb8paeFY,2322
|
|
36
|
+
claude_mpm/agents/templates/backup/version_control_agent_20250726_234551.json,sha256=too38RPTLJ9HutCMn0nfmEdCj2me241dx5tUYDFtu94,2143
|
|
30
37
|
claude_mpm/agents/test_fix_deployment/.claude-pm/config/project.json,sha256=YZQgq2ri2_Y3qKzvPlC6TmzZKviDv0__GuyUOo1LbT8,146
|
|
31
38
|
claude_mpm/cli_module/__init__.py,sha256=CkMp4gzWKoZZF_qKyBDi2sQaZw_GLWZYLtKouv-4f8s,390
|
|
32
39
|
claude_mpm/cli_module/args.py,sha256=nilYpziBsoEySO4W1hQ2MRJyn9TFx3c3TrucyMMhRtk,7970
|
|
@@ -55,7 +62,7 @@ claude_mpm/core/minimal_framework_loader.py,sha256=liYS4IyuW_aFK7yhRDZwTwT-3q09f
|
|
|
55
62
|
claude_mpm/core/mixins.py,sha256=rTEH-7FDpNiLB8oo6mSb0CLarJklv4fDJw1xM-gr5wI,5599
|
|
56
63
|
claude_mpm/core/service_registry.py,sha256=wKJUO1g4UFA4dUpE3RkIYz1Ek8kIh4XfvU1kFeLCl2Q,10529
|
|
57
64
|
claude_mpm/core/session_manager.py,sha256=3rO4KGZp8Qd_cUw6OWv4jyxGCUaL_MNPgCCpnwQt12A,6581
|
|
58
|
-
claude_mpm/core/simple_runner.py,sha256=
|
|
65
|
+
claude_mpm/core/simple_runner.py,sha256=DRChSTgPt6g0zQUZe9cEpH9ky2aZyLnlH0bhOI63vfc,24645
|
|
59
66
|
claude_mpm/core/tool_access_control.py,sha256=htZbDhC8s7D7BVqfmk0BwRrYJnlnUAk8_NeJKOaeNlg,6632
|
|
60
67
|
claude_mpm/generators/__init__.py,sha256=l53aBn6kBQSDz3b6bZkMCJBcEmYnV9hHEZq8LKzXgH8,152
|
|
61
68
|
claude_mpm/generators/agent_profile_generator.py,sha256=2HjOscogSyvrtQj8KwdgNPS6Ym_QvgX1BMeauQZewZA,5751
|
|
@@ -74,7 +81,7 @@ claude_mpm/hooks/builtin/ticket_extraction_hook_example.py,sha256=4wNhS2tFUXgdcv
|
|
|
74
81
|
claude_mpm/hooks/builtin/todo_agent_prefix_hook.py,sha256=v_4w2vcZIt0bkZxqdHmgtN79yHZ1gviuhhBws0FHpIQ,10226
|
|
75
82
|
claude_mpm/hooks/builtin/workflow_start_hook.py,sha256=EQrtYD9qLMLSYPl3oQinEheZAJ2i5EO_h2jhhR8lmt0,7490
|
|
76
83
|
claude_mpm/hooks/claude_hooks/__init__.py,sha256=bMUwt2RzDGAcEbtDMA7vWS1uJsauOY0OixIe4pHwgQ0,129
|
|
77
|
-
claude_mpm/hooks/claude_hooks/hook_handler.py,sha256=
|
|
84
|
+
claude_mpm/hooks/claude_hooks/hook_handler.py,sha256=r1OqgtXw04u47FVV8Ks2ppHh8hC4xSQrj3Q3hWHuHxs,21627
|
|
78
85
|
claude_mpm/hooks/claude_hooks/hook_wrapper.sh,sha256=6n0-G317jIrPuNRGnAyFvBbNM4gVzKEat_WSbpvKN-g,1742
|
|
79
86
|
claude_mpm/orchestration/SUBPROCESS_DESIGN.md,sha256=YwToiT1_NXblv1XIWhWPNc2uKzDvqY2E_Nix8qK7qk0,2136
|
|
80
87
|
claude_mpm/orchestration/__init__.py,sha256=C-cwldtfBCgV19mKnJa5U1XiKw1rAZvx-kK61nIdcao,205
|
|
@@ -90,16 +97,19 @@ claude_mpm/orchestration/archive/simple_orchestrator.py,sha256=Booy_eeuC5H3i-1HA
|
|
|
90
97
|
claude_mpm/orchestration/archive/subprocess_orchestrator.py,sha256=TYTAHX6p4OpgBsfU-CF2D6r_wmZHIASc9GR8l3-qXQM,31982
|
|
91
98
|
claude_mpm/orchestration/archive/system_prompt_orchestrator.py,sha256=R16sc-94kQVeGjJzTYmvKn0aYgj_9qxyzShDy1E5zpE,12853
|
|
92
99
|
claude_mpm/orchestration/archive/wrapper_orchestrator.py,sha256=cvL0NJf9kCWf3QJl67ySwvtR1Hd9Rym28Ii8Rtsdi6Q,6806
|
|
100
|
+
claude_mpm/schemas/agent_schema.json,sha256=xPqYaZ8VNFyabdpEL91kufKPsWk36v6hYbqoMfUsvs4,9645
|
|
93
101
|
claude_mpm/scripts/__init__.py,sha256=M2n9fQeyfILC8gogXvJv6ixnu7hwpqLEqLWJRaUN0MU,37
|
|
94
102
|
claude_mpm/scripts/ticket.py,sha256=GmFimtTJxc927cCzJvvJH3gvoxXQtAB-W-xnuclcvNs,9350
|
|
95
103
|
claude_mpm/services/__init__.py,sha256=-EBm07Lh9mjcofiQHCqyCCQJMLi9akVArPlz8i_kEOo,226
|
|
96
|
-
claude_mpm/services/
|
|
104
|
+
claude_mpm/services/agent_capabilities_generator.py,sha256=K0oO2N4yjRXmf27FF6dbWCXcugT-7uGWz5p0p0APDSg,6658
|
|
105
|
+
claude_mpm/services/agent_deployment.py,sha256=23nvYNyDj7QXxaiDsbwhuYhNDAv9vJ-KJI-SEHWcH5I,49837
|
|
97
106
|
claude_mpm/services/agent_lifecycle_manager.py,sha256=VZBVONepomFpMqL7soaXIawS4NoaltFWKed7tU6bS3w,39057
|
|
98
107
|
claude_mpm/services/agent_management_service.py,sha256=eX5n6w17b9urcogVdr4V-kXcuo7yyjORTrIihjF8PeQ,22853
|
|
99
108
|
claude_mpm/services/agent_modification_tracker.py,sha256=7FRDXuCNANUnLatCgtBArG-AxZNtKbGQjgCKjnzmJ80,34050
|
|
100
109
|
claude_mpm/services/agent_profile_loader.py,sha256=4D1Xj0vgqV8wN7Y3r8lijh7ghy5cVGU5t5s931sVqGc,23133
|
|
101
110
|
claude_mpm/services/agent_registry.py,sha256=vn8CEW0vppj_0EY2NofmNRZEnpV70mlWiX2kAViFDRg,24374
|
|
102
111
|
claude_mpm/services/base_agent_manager.py,sha256=WEcfzdMaFXmXUSoEYEPNeGu8dvqjIv53zyUU0ITrhsM,14987
|
|
112
|
+
claude_mpm/services/deployed_agent_discovery.py,sha256=suzDPVt3eSGjyO1tkpuYNrMbgPz_uUuAWHWimtjvT3A,9299
|
|
103
113
|
claude_mpm/services/framework_agent_loader.py,sha256=QdRSYRurYF3YbAXJwIGei71BffD5AqOVcV3ktRPdk7g,14018
|
|
104
114
|
claude_mpm/services/framework_claude_md_generator.py,sha256=3kHmkRLHTex6HFZ4DhbLVQb48j-5dAoy1q6UW1Qf7U8,22914
|
|
105
115
|
claude_mpm/services/shared_prompt_cache.py,sha256=D04lrRWyg0lHyqGcAHy7IYvRHRKSg6EOpAJwBUPa2wk,29890
|
|
@@ -108,9 +118,9 @@ claude_mpm/services/ticket_manager_di.py,sha256=pIsIGncbboKzBYSRQTO7ZX5MuQzV6iFf
|
|
|
108
118
|
claude_mpm/services/ticketing_service_original.py,sha256=Dg3TYKsy0Z3JCqV5rlMBXeMrhrkAGxOgAMUNRZtJIhw,16680
|
|
109
119
|
claude_mpm/services/framework_claude_md_generator/README.md,sha256=_-ty72t2afPagDVVUEizPkhs4BYkCeqCnZDNPgZAYtY,3511
|
|
110
120
|
claude_mpm/services/framework_claude_md_generator/__init__.py,sha256=OtnwxLiJektfFtsKdkHM1X27rKkFiNd_rcf4843ziKw,7334
|
|
111
|
-
claude_mpm/services/framework_claude_md_generator/content_assembler.py,sha256=
|
|
121
|
+
claude_mpm/services/framework_claude_md_generator/content_assembler.py,sha256=CZlw84bBWjvK68VQhjAdLnMxXBXipZtcdyPtYWLdrKo,6590
|
|
112
122
|
claude_mpm/services/framework_claude_md_generator/content_validator.py,sha256=89QSGil9_NL15ci3HsVVQmfg7MZvsJS3i_ELP5yD-gA,4583
|
|
113
|
-
claude_mpm/services/framework_claude_md_generator/deployment_manager.py,sha256=
|
|
123
|
+
claude_mpm/services/framework_claude_md_generator/deployment_manager.py,sha256=G0-JBMf7WH8VScCVUbXxSpmxBP_Qy_UX4TEgc4ajHFk,6187
|
|
114
124
|
claude_mpm/services/framework_claude_md_generator/section_manager.py,sha256=KbipmnUg7FD3YnVdUj4Ttrm3HMmWrDnjWC6fKX5D3tI,3222
|
|
115
125
|
claude_mpm/services/framework_claude_md_generator/version_manager.py,sha256=VpJMieGEVkkKC6vyhHxKcUjPNzxBuPwD61lTyPJwxXM,4284
|
|
116
126
|
claude_mpm/services/framework_claude_md_generator/section_generators/__init__.py,sha256=HIIW34LgzTJk_ne4qoNxXgYZp3EhEisJR0SjfNjPG7o,3486
|
|
@@ -150,14 +160,15 @@ claude_mpm/ui/terminal_ui.py,sha256=E_M-L-6EuGp6L8pRpaWEhTqf-ddDXhZp5W85D0XNRPw,
|
|
|
150
160
|
claude_mpm/utils/__init__.py,sha256=E8Hvv6ykL6rnnc8-YmfoGNpRCZbcIirxcFuNz7YvDIg,346
|
|
151
161
|
claude_mpm/utils/config_manager.py,sha256=TlekZYIWOz_ouWHQU4Gc-zckhoFK9AqA25b6A_XZdDc,16412
|
|
152
162
|
claude_mpm/utils/error_handler.py,sha256=W_Zc0FrKudpXvxT66Oxx0v8WkR8HA2KlynzzGy3eGcU,8168
|
|
163
|
+
claude_mpm/utils/framework_detection.py,sha256=nzs1qRZK9K-zT0382z1FpGDvgzUNrUg8rBL-O_WLq-Q,1217
|
|
153
164
|
claude_mpm/utils/import_migration_example.py,sha256=W4a4XH3FY_VBB00BB8Lae2aRPM021PxLHzdUfEs0B5w,2463
|
|
154
165
|
claude_mpm/utils/imports.py,sha256=wX-SOXUHbemx01MHRGQpVwajzXH6qYdQkYNFCIbb2mw,6851
|
|
155
166
|
claude_mpm/utils/path_operations.py,sha256=6pLMnAWBVzHkgp6JyQHmHbGD-dWn-nX21yV4E_eT-kM,11614
|
|
156
167
|
claude_mpm/utils/paths.py,sha256=Xv0SZWdZRkRjN9e6clBcA165ya00GNQxt7SwMz51tfA,10153
|
|
157
168
|
claude_mpm/validation/__init__.py,sha256=bJ19g9lnk7yIjtxzN8XPegp87HTFBzCrGQOpFgRTf3g,155
|
|
158
|
-
claude_mpm/validation/agent_validator.py,sha256=
|
|
159
|
-
claude_mpm-
|
|
160
|
-
claude_mpm-
|
|
161
|
-
claude_mpm-
|
|
162
|
-
claude_mpm-
|
|
163
|
-
claude_mpm-
|
|
169
|
+
claude_mpm/validation/agent_validator.py,sha256=gxBn3m3NyJiHymIoNGUBk4dzRjIrw3TVL6lWPpmZmW8,11693
|
|
170
|
+
claude_mpm-2.1.0.dist-info/METADATA,sha256=WOaRAE-7Fy72GQtEEJ1BvK7IIRKbqbpdUvnHTzR7RQE,13862
|
|
171
|
+
claude_mpm-2.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
172
|
+
claude_mpm-2.1.0.dist-info/entry_points.txt,sha256=PknO31um7d8bt6GjOiVeYpdJpjND0_C1z-LQfY6UfiU,142
|
|
173
|
+
claude_mpm-2.1.0.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
|
|
174
|
+
claude_mpm-2.1.0.dist-info/RECORD,,
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"agent_type": "data_engineer",
|
|
4
|
-
"narrative_fields": {
|
|
5
|
-
"when_to_use": [
|
|
6
|
-
"Database schema design and optimization",
|
|
7
|
-
"AI API integration configuration",
|
|
8
|
-
"Data pipeline implementation",
|
|
9
|
-
"ETL process development",
|
|
10
|
-
"Data storage optimization"
|
|
11
|
-
],
|
|
12
|
-
"specialized_knowledge": [
|
|
13
|
-
"Database design patterns",
|
|
14
|
-
"AI API integration best practices",
|
|
15
|
-
"Data pipeline architectures",
|
|
16
|
-
"ETL optimization techniques",
|
|
17
|
-
"Storage and caching strategies"
|
|
18
|
-
],
|
|
19
|
-
"unique_capabilities": [
|
|
20
|
-
"Design efficient database schemas",
|
|
21
|
-
"Configure AI API integrations with monitoring",
|
|
22
|
-
"Implement robust data pipelines",
|
|
23
|
-
"Optimize query performance and caching",
|
|
24
|
-
"Manage data migrations safely"
|
|
25
|
-
],
|
|
26
|
-
"instructions": "# Data Engineer Agent\n\nSpecialize in data infrastructure, AI API integrations, and database optimization. Focus on scalable, efficient data solutions.\n\n## Data Engineering Protocol\n1. **Schema Design**: Create efficient, normalized database structures\n2. **API Integration**: Configure AI services with proper monitoring\n3. **Pipeline Implementation**: Build robust, scalable data processing\n4. **Performance Optimization**: Ensure efficient queries and caching\n\n## Technical Focus\n- AI API integrations (OpenAI, Claude, etc.) with usage monitoring\n- Database optimization and query performance\n- Scalable data pipeline architectures"
|
|
27
|
-
},
|
|
28
|
-
"configuration_fields": {
|
|
29
|
-
"model": "claude-4-sonnet-20250514",
|
|
30
|
-
"description": "Data engineering and AI API integrations",
|
|
31
|
-
"tags": ["data", "ai-apis", "database", "pipelines"],
|
|
32
|
-
"tools": ["Read", "Write", "Edit", "Bash", "Grep", "Glob", "LS", "WebSearch"],
|
|
33
|
-
"temperature": 0.1,
|
|
34
|
-
"timeout": 600,
|
|
35
|
-
"max_tokens": 8192,
|
|
36
|
-
"memory_limit": 2048,
|
|
37
|
-
"cpu_limit": 50,
|
|
38
|
-
"network_access": true,
|
|
39
|
-
"ai_apis": ["openai", "anthropic", "google", "azure"],
|
|
40
|
-
"databases": ["postgresql", "mongodb", "redis"],
|
|
41
|
-
"data_formats": ["json", "csv", "parquet", "avro"],
|
|
42
|
-
"primary_role": "Data engineering and AI integration",
|
|
43
|
-
"specializations": ["database-design", "ai-apis", "data-pipelines", "etl"],
|
|
44
|
-
"authority": "Data architecture and AI integration decisions"
|
|
45
|
-
}
|
|
46
|
-
}
|