claude-mpm 5.3.0 → 5.4.31

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.
Files changed (3) hide show
  1. package/LICENSE +94 -21
  2. package/README.md +47 -7
  3. package/package.json +3 -1
package/LICENSE CHANGED
@@ -1,21 +1,94 @@
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.
1
+ Elastic License 2.0
2
+
3
+ Copyright (c) 2024-2025 Bob Matsuoka
4
+ Contact: bob@matsuoka.com
5
+
6
+ ## Acceptance
7
+
8
+ By using the software, you agree to all of the terms and conditions below.
9
+
10
+ ## Copyright License
11
+
12
+ The licensor grants you a non-exclusive, royalty-free, worldwide,
13
+ non-sublicensable, non-transferable license to use, copy, distribute, make
14
+ available, and prepare derivative works of the software, in each case subject to
15
+ the limitations and conditions below.
16
+
17
+ ## Limitations
18
+
19
+ You may not provide the software to third parties as a hosted or managed
20
+ service, where the service provides users with access to any substantial set of
21
+ the features or functionality of the software.
22
+
23
+ You may not move, change, disable, or circumvent the license key functionality
24
+ in the software, and you may not remove or obscure any functionality in the
25
+ software that is protected by the license key.
26
+
27
+ You may not alter, remove, or obscure any licensing, copyright, or other notices
28
+ of the licensor in the software. Any use of the licensor's trademarks is subject
29
+ to applicable law.
30
+
31
+ ## Patents
32
+
33
+ The licensor grants you a license, under any patent claims the licensor can
34
+ license, or becomes able to license, to make, have made, use, sell, offer for
35
+ sale, import and have imported the software, in each case subject to the
36
+ limitations and conditions in this license. This license does not cover any
37
+ patent claims that you cause to be infringed by modifications or additions to
38
+ the software. If you or your company make any written claim that the software
39
+ infringes or contributes to infringement of any patent, your patent license for
40
+ the software granted under these terms ends immediately. If your company makes
41
+ such a claim, your patent license ends immediately for work on behalf of your
42
+ company.
43
+
44
+ ## Notices
45
+
46
+ You must ensure that anyone who gets a copy of any part of the software from you
47
+ also gets a copy of these terms.
48
+
49
+ If you modify the software, you must include in any modified copies of the
50
+ software prominent notices stating that you have modified the software.
51
+
52
+ ## No Other Rights
53
+
54
+ These terms do not imply any licenses other than those expressly granted in
55
+ these terms.
56
+
57
+ ## Termination
58
+
59
+ If you use the software in violation of these terms, such use is not licensed,
60
+ and your licenses will automatically terminate. If the licensor provides you
61
+ with a notice of your violation, and you cease all violation of this license no
62
+ later than 30 days after you receive that notice, your licenses will be
63
+ reinstated retroactively. However, if you violate these terms after such
64
+ reinstatement, any additional violation of these terms will cause your licenses
65
+ to terminate automatically and permanently.
66
+
67
+ ## No Liability
68
+
69
+ *As far as the law allows, the software comes as is, without any warranty or
70
+ condition, and the licensor will not be liable to you for any damages arising
71
+ out of these terms or the use or nature of the software, under any kind of legal
72
+ claim.*
73
+
74
+ ## Definitions
75
+
76
+ The **licensor** is the entity offering these terms, and the **software** is the
77
+ software the licensor makes available under these terms, including any portion
78
+ of it.
79
+
80
+ **you** refers to the individual or entity agreeing to these terms.
81
+
82
+ **your company** is any legal entity, sole proprietorship, or other kind of
83
+ organization that you work for, plus all organizations that have control over,
84
+ are under the control of, or are under common control with that
85
+ organization. **control** means ownership of substantially all the assets of an
86
+ entity, or the power to direct its management and policies by vote, contract, or
87
+ otherwise. Control can be direct or indirect.
88
+
89
+ **your licenses** are all the licenses granted to you for the software under
90
+ these terms.
91
+
92
+ **use** means anything you do with the software requiring one of your licenses.
93
+
94
+ **trademark** means trademarks, service marks, and similar rights.
package/README.md CHANGED
@@ -141,17 +141,28 @@ claude --version
141
141
  # Basic installation
142
142
  pip install claude-mpm
143
143
 
144
+ # Or with uv (faster)
145
+ uv tool install claude-mpm
146
+
144
147
  # Install with monitoring dashboard (recommended)
145
148
  pip install "claude-mpm[monitor]"
149
+ uv tool install "claude-mpm[monitor]"
146
150
  ```
147
151
 
148
- Or with pipx (recommended for isolated installation):
152
+ Or with pipx/uvx (recommended for isolated installation):
149
153
  ```bash
150
154
  # Basic installation
151
155
  pipx install claude-mpm
152
156
 
157
+ # Or with uv tool (permanent installation)
158
+ uv tool install claude-mpm
159
+
160
+ # Or with uvx (one-off execution)
161
+ uvx claude-mpm
162
+
153
163
  # Install with monitoring dashboard (recommended)
154
164
  pipx install "claude-mpm[monitor]"
165
+ uv tool install "claude-mpm[monitor]"
155
166
  ```
156
167
 
157
168
  ### Verify Installation
@@ -203,6 +214,8 @@ Claude MPM works excellently with these complementary MCP tools. While optional,
203
214
  **Installation:**
204
215
  ```bash
205
216
  pipx install kuzu-memory
217
+ # Or with uv
218
+ uv tool install kuzu-memory
206
219
  ```
207
220
 
208
221
  **Benefits with Claude MPM:**
@@ -225,6 +238,8 @@ pipx install kuzu-memory
225
238
  **Installation:**
226
239
  ```bash
227
240
  pipx install mcp-vector-search
241
+ # Or with uv
242
+ uv tool install mcp-vector-search
228
243
  ```
229
244
 
230
245
  **Benefits with Claude MPM:**
@@ -249,6 +264,10 @@ Install both recommended tools in one go:
249
264
  ```bash
250
265
  pipx install kuzu-memory
251
266
  pipx install mcp-vector-search
267
+
268
+ # Or with uv
269
+ uv tool install kuzu-memory
270
+ uv tool install mcp-vector-search
252
271
  ```
253
272
 
254
273
  Then verify they're working:
@@ -263,12 +282,12 @@ claude-mpm verify
263
282
 
264
283
  ## Cache Management
265
284
 
266
- Claude MPM maintains a local cache of agent templates at `~/.claude-mpm/cache/remote-agents/`.
285
+ Claude MPM maintains a local cache of agent templates at `~/.claude-mpm/cache/agents/`.
267
286
 
268
287
  ### Cache Structure
269
288
 
270
289
  ```
271
- ~/.claude-mpm/cache/remote-agents/
290
+ ~/.claude-mpm/cache/agents/
272
291
  └── bobmatnyc/
273
292
  └── claude-mpm-agents/
274
293
  ├── .git/ # Git repository
@@ -276,6 +295,8 @@ Claude MPM maintains a local cache of agent templates at `~/.claude-mpm/cache/re
276
295
  └── docs/
277
296
  ```
278
297
 
298
+ > **Note**: Prior to v5.4.23, agents were cached to `~/.claude-mpm/cache/remote-agents/`. This has been standardized to `~/.claude-mpm/cache/agents/`. Existing caches are automatically migrated.
299
+
279
300
  ### Git Workflow (Optional)
280
301
 
281
302
  If your cache is a git repository, you can manage agents with git operations:
@@ -611,7 +632,19 @@ Claude MPM includes 15 specialized agents:
611
632
  - **Code Analyzer** - Static code analysis with AST and tree-sitter
612
633
 
613
634
  ### Agent Memory System
614
- Agents learn project-specific patterns using a simple list format and can update memories via JSON response fields (`remember` for incremental updates, `MEMORIES` for complete replacement). Initialize with `claude-mpm memory init`.
635
+
636
+ **NEW in v5.4.13**: Runtime memory loading for instant updates and better efficiency.
637
+
638
+ **How It Works:**
639
+ - **Memory Files**: Store agent memories in `.claude-mpm/memories/{agent_id}.md` (e.g., `engineer.md`, `qa.md`)
640
+ - **Runtime Loading**: Memories loaded dynamically when agents are delegated to (no restart required)
641
+ - **Instant Updates**: Memory changes take effect immediately
642
+ - **Event Observability**: Memory loading tracked via EventBus (`agent.memory.loaded` events)
643
+
644
+ **Memory Format:**
645
+ Agents learn project-specific patterns using a simple markdown list format and can update memories via JSON response fields (`remember` for incremental updates, `MEMORIES` for complete replacement).
646
+
647
+ **See:** [Memory Flow Architecture](docs/architecture/memory-flow.md) for complete technical details.
615
648
 
616
649
  ### Skills System
617
650
 
@@ -810,6 +843,16 @@ See [docs/reference/MEMORY.md](docs/reference/MEMORY.md) and [docs/developer/11-
810
843
 
811
844
  See [CHANGELOG.md](CHANGELOG.md) for full history and [docs/user/MIGRATION.md](docs/user/MIGRATION.md) for upgrade instructions.
812
845
 
846
+ ## 📜 License
847
+
848
+ [![License](https://img.shields.io/badge/License-Elastic_2.0-blue.svg)](LICENSE)
849
+
850
+ Licensed under the [Elastic License 2.0](LICENSE) - free for internal use and commercial products.
851
+
852
+ **Main restriction:** Cannot offer as a hosted SaaS service without a commercial license.
853
+
854
+ 📖 [Licensing FAQ](LICENSE-FAQ.md) | 💼 Commercial licensing: bob@matsuoka.com
855
+
813
856
  ## Development
814
857
 
815
858
  ### Quick Development Setup
@@ -843,9 +886,6 @@ Contributions are welcome! Please see our [project structure guide](docs/referen
843
886
  ### Project Structure
844
887
  See [docs/reference/STRUCTURE.md](docs/reference/STRUCTURE.md) for codebase organization.
845
888
 
846
- ### License
847
- MIT License - see [LICENSE](LICENSE) file.
848
-
849
889
  ## Credits
850
890
 
851
891
  - Based on [claude-multiagent-pm](https://github.com/kfsone/claude-multiagent-pm)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mpm",
3
- "version": "5.3.0",
3
+ "version": "5.4.31",
4
4
  "description": "NPM wrapper for claude-mpm Python package - Requires Python 3.8+. Orchestrate Claude with agent delegation and ticket tracking",
5
5
  "keywords": [
6
6
  "claude",
@@ -52,6 +52,7 @@
52
52
  "registry": "https://registry.npmjs.org/"
53
53
  },
54
54
  "devDependencies": {
55
+ "@playwright/test": "^1.57.0",
55
56
  "@types/react": "^18.2.0",
56
57
  "@types/react-dom": "^18.2.0",
57
58
  "@vitejs/plugin-react": "^4.2.0",
@@ -61,6 +62,7 @@
61
62
  },
62
63
  "dependencies": {
63
64
  "playwright": "^1.55.0",
65
+ "puppeteer": "^24.34.0",
64
66
  "react": "^18.2.0",
65
67
  "react-dom": "^18.2.0",
66
68
  "react-window": "^1.8.8",