@prodbeam/mcp 0.1.0 → 0.1.1
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.
- package/CHANGELOG.md +7 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.1.1] - 2026-02-08
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Fix CLI bin entries (`prodbeam`, `prodbeam-mcp`) being stripped from npm package during publish
|
|
13
|
+
|
|
8
14
|
## [0.1.0] - 2026-02-08
|
|
9
15
|
|
|
10
16
|
### Added
|
|
@@ -28,4 +34,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
28
34
|
- **CI/CD** — GitHub Actions for build/test (Node 18/20/22), security scanning (npm audit, Gitleaks, CodeQL, license check), conventional commits, and PR size labeling
|
|
29
35
|
- **213 tests** across 18 test suites
|
|
30
36
|
|
|
37
|
+
[0.1.1]: https://github.com/prodbeam/prodbeam-mcp/releases/tag/v0.1.1
|
|
31
38
|
[0.1.0]: https://github.com/prodbeam/prodbeam-mcp/releases/tag/v0.1.0
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prodbeam/mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "MCP server for AI-powered engineering intelligence — standups, weekly reports, and sprint retrospectives",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
|
-
"prodbeam-mcp": "dist/index.js",
|
|
9
|
-
"prodbeam": "dist/cli.js"
|
|
8
|
+
"prodbeam-mcp": "./dist/index.js",
|
|
9
|
+
"prodbeam": "./dist/cli.js"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"build": "tsc",
|