@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.
Files changed (76) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/README.md +626 -67
  3. package/dist/auth/app-config.d.ts +8 -0
  4. package/dist/auth/app-config.d.ts.map +1 -0
  5. package/dist/auth/app-config.js +32 -0
  6. package/dist/auth/app-config.js.map +1 -0
  7. package/dist/auth/auth-provider.d.ts +9 -0
  8. package/dist/auth/auth-provider.d.ts.map +1 -0
  9. package/dist/auth/auth-provider.js +173 -0
  10. package/dist/auth/auth-provider.js.map +1 -0
  11. package/dist/auth/github-device-flow.d.ts +5 -0
  12. package/dist/auth/github-device-flow.d.ts.map +1 -0
  13. package/dist/auth/github-device-flow.js +139 -0
  14. package/dist/auth/github-device-flow.js.map +1 -0
  15. package/dist/auth/jira-oauth-flow.d.ts +19 -0
  16. package/dist/auth/jira-oauth-flow.d.ts.map +1 -0
  17. package/dist/auth/jira-oauth-flow.js +210 -0
  18. package/dist/auth/jira-oauth-flow.js.map +1 -0
  19. package/dist/auth/token-store.d.ts +7 -0
  20. package/dist/auth/token-store.d.ts.map +1 -0
  21. package/dist/auth/token-store.js +74 -0
  22. package/dist/auth/token-store.js.map +1 -0
  23. package/dist/auth/types.d.ts +51 -0
  24. package/dist/auth/types.d.ts.map +1 -0
  25. package/dist/auth/types.js +2 -0
  26. package/dist/auth/types.js.map +1 -0
  27. package/dist/cli.js +403 -64
  28. package/dist/cli.js.map +1 -1
  29. package/dist/clients/github-client.d.ts +2 -2
  30. package/dist/clients/github-client.d.ts.map +1 -1
  31. package/dist/clients/github-client.js +14 -4
  32. package/dist/clients/github-client.js.map +1 -1
  33. package/dist/clients/jira-client.d.ts +9 -3
  34. package/dist/clients/jira-client.d.ts.map +1 -1
  35. package/dist/clients/jira-client.js +53 -10
  36. package/dist/clients/jira-client.js.map +1 -1
  37. package/dist/clients/types.d.ts +21 -0
  38. package/dist/clients/types.d.ts.map +1 -1
  39. package/dist/commands/auth.d.ts +4 -0
  40. package/dist/commands/auth.d.ts.map +1 -0
  41. package/dist/commands/auth.js +254 -0
  42. package/dist/commands/auth.js.map +1 -0
  43. package/dist/commands/init.d.ts.map +1 -1
  44. package/dist/commands/init.js +45 -1
  45. package/dist/commands/init.js.map +1 -1
  46. package/dist/config/credentials.d.ts +2 -0
  47. package/dist/config/credentials.d.ts.map +1 -1
  48. package/dist/config/credentials.js +6 -0
  49. package/dist/config/credentials.js.map +1 -1
  50. package/dist/generators/metrics-calculator.d.ts.map +1 -1
  51. package/dist/generators/metrics-calculator.js +28 -0
  52. package/dist/generators/metrics-calculator.js.map +1 -1
  53. package/dist/generators/report-generator.d.ts +2 -1
  54. package/dist/generators/report-generator.d.ts.map +1 -1
  55. package/dist/generators/report-generator.js +565 -131
  56. package/dist/generators/report-generator.js.map +1 -1
  57. package/dist/index.js +275 -89
  58. package/dist/index.js.map +1 -1
  59. package/dist/insights/content-insights.d.ts +46 -0
  60. package/dist/insights/content-insights.d.ts.map +1 -0
  61. package/dist/insights/content-insights.js +193 -0
  62. package/dist/insights/content-insights.js.map +1 -0
  63. package/dist/orchestrator/data-fetcher.d.ts +3 -1
  64. package/dist/orchestrator/data-fetcher.d.ts.map +1 -1
  65. package/dist/orchestrator/data-fetcher.js +15 -0
  66. package/dist/orchestrator/data-fetcher.js.map +1 -1
  67. package/dist/types/github.d.ts +3 -0
  68. package/dist/types/github.d.ts.map +1 -1
  69. package/dist/types/jira.d.ts +9 -0
  70. package/dist/types/jira.d.ts.map +1 -1
  71. package/dist/types/retrospective.d.ts +15 -0
  72. package/dist/types/retrospective.d.ts.map +1 -1
  73. package/dist/types/weekly.d.ts +7 -0
  74. package/dist/types/weekly.d.ts.map +1 -1
  75. package/dist/validators.d.ts +6 -6
  76. 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