@prodbeam/mcp 0.1.0 → 0.2.0
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 +36 -0
- package/README.md +626 -67
- package/dist/auth/app-config.d.ts +8 -0
- package/dist/auth/app-config.d.ts.map +1 -0
- package/dist/auth/app-config.js +32 -0
- package/dist/auth/app-config.js.map +1 -0
- package/dist/auth/auth-provider.d.ts +9 -0
- package/dist/auth/auth-provider.d.ts.map +1 -0
- package/dist/auth/auth-provider.js +173 -0
- package/dist/auth/auth-provider.js.map +1 -0
- package/dist/auth/github-device-flow.d.ts +5 -0
- package/dist/auth/github-device-flow.d.ts.map +1 -0
- package/dist/auth/github-device-flow.js +139 -0
- package/dist/auth/github-device-flow.js.map +1 -0
- package/dist/auth/jira-oauth-flow.d.ts +19 -0
- package/dist/auth/jira-oauth-flow.d.ts.map +1 -0
- package/dist/auth/jira-oauth-flow.js +210 -0
- package/dist/auth/jira-oauth-flow.js.map +1 -0
- package/dist/auth/token-store.d.ts +7 -0
- package/dist/auth/token-store.d.ts.map +1 -0
- package/dist/auth/token-store.js +74 -0
- package/dist/auth/token-store.js.map +1 -0
- package/dist/auth/types.d.ts +51 -0
- package/dist/auth/types.d.ts.map +1 -0
- package/dist/auth/types.js +2 -0
- package/dist/auth/types.js.map +1 -0
- package/dist/cli.js +403 -64
- package/dist/cli.js.map +1 -1
- package/dist/clients/github-client.d.ts +2 -2
- package/dist/clients/github-client.d.ts.map +1 -1
- package/dist/clients/github-client.js +14 -4
- package/dist/clients/github-client.js.map +1 -1
- package/dist/clients/jira-client.d.ts +9 -3
- package/dist/clients/jira-client.d.ts.map +1 -1
- package/dist/clients/jira-client.js +53 -10
- package/dist/clients/jira-client.js.map +1 -1
- package/dist/clients/types.d.ts +21 -0
- package/dist/clients/types.d.ts.map +1 -1
- package/dist/commands/auth.d.ts +4 -0
- package/dist/commands/auth.d.ts.map +1 -0
- package/dist/commands/auth.js +254 -0
- package/dist/commands/auth.js.map +1 -0
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +45 -1
- package/dist/commands/init.js.map +1 -1
- package/dist/config/credentials.d.ts +2 -0
- package/dist/config/credentials.d.ts.map +1 -1
- package/dist/config/credentials.js +6 -0
- package/dist/config/credentials.js.map +1 -1
- package/dist/generators/metrics-calculator.d.ts.map +1 -1
- package/dist/generators/metrics-calculator.js +28 -0
- package/dist/generators/metrics-calculator.js.map +1 -1
- package/dist/generators/report-generator.d.ts +2 -1
- package/dist/generators/report-generator.d.ts.map +1 -1
- package/dist/generators/report-generator.js +565 -131
- package/dist/generators/report-generator.js.map +1 -1
- package/dist/index.js +275 -89
- package/dist/index.js.map +1 -1
- package/dist/insights/content-insights.d.ts +46 -0
- package/dist/insights/content-insights.d.ts.map +1 -0
- package/dist/insights/content-insights.js +193 -0
- package/dist/insights/content-insights.js.map +1 -0
- package/dist/orchestrator/data-fetcher.d.ts +3 -1
- package/dist/orchestrator/data-fetcher.d.ts.map +1 -1
- package/dist/orchestrator/data-fetcher.js +15 -0
- package/dist/orchestrator/data-fetcher.js.map +1 -1
- package/dist/types/github.d.ts +3 -0
- package/dist/types/github.d.ts.map +1 -1
- package/dist/types/jira.d.ts +9 -0
- package/dist/types/jira.d.ts.map +1 -1
- package/dist/types/retrospective.d.ts +15 -0
- package/dist/types/retrospective.d.ts.map +1 -1
- package/dist/types/weekly.d.ts +7 -0
- package/dist/types/weekly.d.ts.map +1 -1
- package/dist/validators.d.ts +6 -6
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,39 @@ 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.2.0] - 2026-02-08
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **OAuth authentication** — GitHub Device Flow and Jira OAuth 2.0 (3LO) with automatic token refresh
|
|
13
|
+
- **`prodbeam auth` commands** — `auth login`, `auth status`, `auth logout` for managing credentials
|
|
14
|
+
- **Three-tier credential resolution** — environment variables > OAuth tokens (auto-refreshed) > personal access tokens
|
|
15
|
+
- **Sprint review tool** (`sprint_review`) — mid-sprint health check with progress summary, risks, blockers, and per-developer status
|
|
16
|
+
- **CLI help system** — `prodbeam help` and `prodbeam help <command>` with detailed usage info for every command
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Init wizard now offers OAuth as an authentication option alongside PAT
|
|
21
|
+
- Jira client supports both Basic auth (PAT) and Bearer auth (OAuth)
|
|
22
|
+
- GitHub client constructor accepts async token providers for OAuth refresh
|
|
23
|
+
- Documentation rewritten — comprehensive architecture section, accurate sample output, security details
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- Sample output in README now matches actual report generator output
|
|
28
|
+
|
|
29
|
+
## [0.1.2] - 2026-02-08
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- Fix `npx @prodbeam/mcp` failing to resolve default executable by adding `mcp` bin entry matching the unscoped package name
|
|
34
|
+
|
|
35
|
+
## [0.1.1] - 2026-02-08
|
|
36
|
+
|
|
37
|
+
### Fixed
|
|
38
|
+
|
|
39
|
+
- Fix CLI bin entries (`prodbeam`, `prodbeam-mcp`) being stripped from npm package during publish
|
|
40
|
+
|
|
8
41
|
## [0.1.0] - 2026-02-08
|
|
9
42
|
|
|
10
43
|
### Added
|
|
@@ -28,4 +61,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
28
61
|
- **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
62
|
- **213 tests** across 18 test suites
|
|
30
63
|
|
|
64
|
+
[0.2.0]: https://github.com/prodbeam/prodbeam-mcp/releases/tag/v0.2.0
|
|
65
|
+
[0.1.2]: https://github.com/prodbeam/prodbeam-mcp/releases/tag/v0.1.2
|
|
66
|
+
[0.1.1]: https://github.com/prodbeam/prodbeam-mcp/releases/tag/v0.1.1
|
|
31
67
|
[0.1.0]: https://github.com/prodbeam/prodbeam-mcp/releases/tag/v0.1.0
|