claude-mpm 2.1.0__py3-none-any.whl → 2.1.1__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.
@@ -37,7 +37,6 @@ class DeployedAgentDiscovery:
37
37
  try:
38
38
  # Get effective agents (respects project > user > system precedence)
39
39
  agents = self.agent_registry.list_agents()
40
- logger.info(f"Discovered {len(agents)} agents from registry")
41
40
 
42
41
  # Handle both dict and list formats
43
42
  if isinstance(agents, dict):
@@ -45,18 +44,24 @@ class DeployedAgentDiscovery:
45
44
  else:
46
45
  agent_list = list(agents)
47
46
 
47
+ logger.debug(f"Found {len(agent_list)} entries in registry")
48
+
48
49
  deployed_agents = []
50
+ filtered_count = 0
49
51
  for agent in agent_list:
50
52
  try:
51
53
  agent_info = self._extract_agent_info(agent)
52
54
  if agent_info and self._is_valid_agent(agent_info):
53
55
  deployed_agents.append(agent_info)
54
56
  logger.debug(f"Extracted info for agent: {agent_info['id']}")
57
+ elif agent_info:
58
+ filtered_count += 1
59
+ logger.debug(f"Filtered out non-deployable agent: {agent_info.get('id', 'unknown')}")
55
60
  except Exception as e:
56
61
  logger.error(f"Failed to extract info from agent {agent}: {e}")
57
62
  continue
58
63
 
59
- logger.info(f"Successfully extracted info for {len(deployed_agents)} agents")
64
+ logger.info(f"Discovered {len(deployed_agents)} deployable agents from registry ({filtered_count} templates/base agents filtered out)")
60
65
  return deployed_agents
61
66
 
62
67
  except Exception as e:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude-mpm
3
- Version: 2.1.0
3
+ Version: 2.1.1
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
@@ -18,6 +18,7 @@ Classifier: Programming Language :: Python :: 3.11
18
18
  Classifier: Programming Language :: Python :: 3.12
19
19
  Requires-Python: >=3.8
20
20
  Description-Content-Type: text/markdown
21
+ License-File: LICENSE
21
22
  Requires-Dist: ai-trackdown-pytools>=1.2.0
22
23
  Requires-Dist: pyyaml>=6.0
23
24
  Requires-Dist: python-dotenv>=0.19.0
@@ -40,6 +41,7 @@ Requires-Dist: flake8; extra == "dev"
40
41
  Requires-Dist: mypy; extra == "dev"
41
42
  Dynamic: author-email
42
43
  Dynamic: home-page
44
+ Dynamic: license-file
43
45
  Dynamic: requires-python
44
46
 
45
47
  # Claude MPM - Multi-Agent Project Manager
@@ -109,7 +109,7 @@ claude_mpm/services/agent_modification_tracker.py,sha256=7FRDXuCNANUnLatCgtBArG-
109
109
  claude_mpm/services/agent_profile_loader.py,sha256=4D1Xj0vgqV8wN7Y3r8lijh7ghy5cVGU5t5s931sVqGc,23133
110
110
  claude_mpm/services/agent_registry.py,sha256=vn8CEW0vppj_0EY2NofmNRZEnpV70mlWiX2kAViFDRg,24374
111
111
  claude_mpm/services/base_agent_manager.py,sha256=WEcfzdMaFXmXUSoEYEPNeGu8dvqjIv53zyUU0ITrhsM,14987
112
- claude_mpm/services/deployed_agent_discovery.py,sha256=suzDPVt3eSGjyO1tkpuYNrMbgPz_uUuAWHWimtjvT3A,9299
112
+ claude_mpm/services/deployed_agent_discovery.py,sha256=YSycVWvxbf5QtM1FkcyVKqqA0ZG4npvTTv6jexeALkE,9591
113
113
  claude_mpm/services/framework_agent_loader.py,sha256=QdRSYRurYF3YbAXJwIGei71BffD5AqOVcV3ktRPdk7g,14018
114
114
  claude_mpm/services/framework_claude_md_generator.py,sha256=3kHmkRLHTex6HFZ4DhbLVQb48j-5dAoy1q6UW1Qf7U8,22914
115
115
  claude_mpm/services/shared_prompt_cache.py,sha256=D04lrRWyg0lHyqGcAHy7IYvRHRKSg6EOpAJwBUPa2wk,29890
@@ -167,7 +167,8 @@ claude_mpm/utils/path_operations.py,sha256=6pLMnAWBVzHkgp6JyQHmHbGD-dWn-nX21yV4E
167
167
  claude_mpm/utils/paths.py,sha256=Xv0SZWdZRkRjN9e6clBcA165ya00GNQxt7SwMz51tfA,10153
168
168
  claude_mpm/validation/__init__.py,sha256=bJ19g9lnk7yIjtxzN8XPegp87HTFBzCrGQOpFgRTf3g,155
169
169
  claude_mpm/validation/agent_validator.py,sha256=gxBn3m3NyJiHymIoNGUBk4dzRjIrw3TVL6lWPpmZmW8,11693
170
- claude_mpm-2.1.0.dist-info/METADATA,sha256=WOaRAE-7Fy72GQtEEJ1BvK7IIRKbqbpdUvnHTzR7RQE,13862
170
+ claude_mpm-2.1.0.dist-info/licenses/LICENSE,sha256=cSdDfXjoTVhstrERrqme4zgxAu4GubU22zVEHsiXGxs,1071
171
+ claude_mpm-2.1.0.dist-info/METADATA,sha256=_HnaGOf8sfNGPZB7-MyF7vlxr7aIrZAeNJk4nQDWA4k,13906
171
172
  claude_mpm-2.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
172
173
  claude_mpm-2.1.0.dist-info/entry_points.txt,sha256=PknO31um7d8bt6GjOiVeYpdJpjND0_C1z-LQfY6UfiU,142
173
174
  claude_mpm-2.1.0.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Claude MPM Team
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.