memory-journal-mcp 7.1.0 → 7.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 (124) hide show
  1. package/README.md +59 -51
  2. package/dist/{chunk-GW5DYUQJ.js → chunk-GR4T3SRW.js} +139 -100
  3. package/dist/{chunk-37BQOJDZ.js → chunk-IWKLHSPU.js} +81 -2
  4. package/dist/{chunk-JEGRDY6W.js → chunk-ORV7ZZOE.js} +357 -51
  5. package/dist/cli.js +30 -4
  6. package/dist/github-integration-2TFMXHIJ.js +1 -0
  7. package/dist/index.d.ts +5 -1
  8. package/dist/index.js +3 -3
  9. package/dist/{tools-O44Q52RD.js → tools-CXR2FEB2.js} +2 -2
  10. package/package.json +1 -1
  11. package/skills/README.md +77 -0
  12. package/skills/autonomous-dev/SKILL.md +56 -0
  13. package/skills/bin/sync.js +50 -0
  14. package/skills/bun/SKILL.md +156 -0
  15. package/skills/github-commander/SKILL.md +1 -1
  16. package/skills/github-commander/workflows/code-quality-audit.md +7 -5
  17. package/skills/github-commander/workflows/issue-triage.md +13 -4
  18. package/skills/github-commander/workflows/milestone-sprint.md +9 -1
  19. package/skills/github-commander/workflows/perf-audit.md +2 -0
  20. package/skills/github-commander/workflows/pr-review.md +9 -3
  21. package/skills/github-commander/workflows/roadmap-kickoff.md +79 -0
  22. package/skills/github-commander/workflows/security-audit.md +3 -3
  23. package/skills/github-commander/workflows/update-deps.md +2 -2
  24. package/skills/gitlab/SKILL.md +115 -0
  25. package/skills/gitlab/package-lock.json +392 -0
  26. package/skills/gitlab/package.json +14 -0
  27. package/skills/gitlab/scripts/gitlab-client.ts +125 -0
  28. package/skills/gitlab/scripts/gitlab-helper.ts +80 -0
  29. package/skills/golang/SKILL.md +54 -0
  30. package/skills/mysql/SKILL.md +30 -0
  31. package/skills/package.json +48 -0
  32. package/skills/playwright-standard/SKILL.md +58 -0
  33. package/skills/playwright-standard/examples/fixtures.ts +66 -0
  34. package/skills/playwright-standard/examples/type-stubs.d.ts +10 -0
  35. package/skills/playwright-standard/references/advanced-scenarios.md +59 -0
  36. package/skills/playwright-standard/references/infrastructure.md +43 -0
  37. package/skills/postgres/SKILL.md +33 -0
  38. package/skills/react-best-practices/AGENTS.md +2883 -0
  39. package/skills/react-best-practices/README.md +127 -0
  40. package/skills/react-best-practices/SKILL.md +138 -0
  41. package/skills/react-best-practices/metadata.json +17 -0
  42. package/skills/react-best-practices/rules/_sections.md +46 -0
  43. package/skills/react-best-practices/rules/_template.md +28 -0
  44. package/skills/react-best-practices/rules/advanced-event-handler-refs.md +55 -0
  45. package/skills/react-best-practices/rules/advanced-init-once.md +42 -0
  46. package/skills/react-best-practices/rules/advanced-use-latest.md +39 -0
  47. package/skills/react-best-practices/rules/async-api-routes.md +35 -0
  48. package/skills/react-best-practices/rules/async-defer-await.md +80 -0
  49. package/skills/react-best-practices/rules/async-dependencies.md +48 -0
  50. package/skills/react-best-practices/rules/async-parallel.md +24 -0
  51. package/skills/react-best-practices/rules/async-suspense-boundaries.md +99 -0
  52. package/skills/react-best-practices/rules/bundle-barrel-imports.md +59 -0
  53. package/skills/react-best-practices/rules/bundle-conditional.md +37 -0
  54. package/skills/react-best-practices/rules/bundle-defer-third-party.md +48 -0
  55. package/skills/react-best-practices/rules/bundle-dynamic-imports.md +34 -0
  56. package/skills/react-best-practices/rules/bundle-preload.md +44 -0
  57. package/skills/react-best-practices/rules/client-event-listeners.md +78 -0
  58. package/skills/react-best-practices/rules/client-localstorage-schema.md +74 -0
  59. package/skills/react-best-practices/rules/client-passive-event-listeners.md +48 -0
  60. package/skills/react-best-practices/rules/client-swr-dedup.md +56 -0
  61. package/skills/react-best-practices/rules/js-batch-dom-css.md +110 -0
  62. package/skills/react-best-practices/rules/js-cache-function-results.md +80 -0
  63. package/skills/react-best-practices/rules/js-cache-property-access.md +28 -0
  64. package/skills/react-best-practices/rules/js-cache-storage.md +68 -0
  65. package/skills/react-best-practices/rules/js-combine-iterations.md +32 -0
  66. package/skills/react-best-practices/rules/js-early-exit.md +50 -0
  67. package/skills/react-best-practices/rules/js-hoist-regexp.md +45 -0
  68. package/skills/react-best-practices/rules/js-index-maps.md +37 -0
  69. package/skills/react-best-practices/rules/js-length-check-first.md +50 -0
  70. package/skills/react-best-practices/rules/js-min-max-loop.md +82 -0
  71. package/skills/react-best-practices/rules/js-set-map-lookups.md +24 -0
  72. package/skills/react-best-practices/rules/js-tosorted-immutable.md +57 -0
  73. package/skills/react-best-practices/rules/rendering-activity.md +24 -0
  74. package/skills/react-best-practices/rules/rendering-animate-svg-wrapper.md +38 -0
  75. package/skills/react-best-practices/rules/rendering-conditional-render.md +32 -0
  76. package/skills/react-best-practices/rules/rendering-content-visibility.md +38 -0
  77. package/skills/react-best-practices/rules/rendering-hoist-jsx.md +36 -0
  78. package/skills/react-best-practices/rules/rendering-hydration-no-flicker.md +72 -0
  79. package/skills/react-best-practices/rules/rendering-hydration-suppress-warning.md +26 -0
  80. package/skills/react-best-practices/rules/rendering-svg-precision.md +28 -0
  81. package/skills/react-best-practices/rules/rendering-usetransition-loading.md +75 -0
  82. package/skills/react-best-practices/rules/rerender-defer-reads.md +39 -0
  83. package/skills/react-best-practices/rules/rerender-dependencies.md +45 -0
  84. package/skills/react-best-practices/rules/rerender-derived-state-no-effect.md +40 -0
  85. package/skills/react-best-practices/rules/rerender-derived-state.md +29 -0
  86. package/skills/react-best-practices/rules/rerender-functional-setstate.md +77 -0
  87. package/skills/react-best-practices/rules/rerender-lazy-state-init.md +56 -0
  88. package/skills/react-best-practices/rules/rerender-memo-with-default-value.md +36 -0
  89. package/skills/react-best-practices/rules/rerender-memo.md +44 -0
  90. package/skills/react-best-practices/rules/rerender-move-effect-to-event.md +45 -0
  91. package/skills/react-best-practices/rules/rerender-simple-expression-in-memo.md +35 -0
  92. package/skills/react-best-practices/rules/rerender-transitions.md +40 -0
  93. package/skills/react-best-practices/rules/rerender-use-ref-transient-values.md +73 -0
  94. package/skills/react-best-practices/rules/server-after-nonblocking.md +73 -0
  95. package/skills/react-best-practices/rules/server-auth-actions.md +96 -0
  96. package/skills/react-best-practices/rules/server-cache-lru.md +41 -0
  97. package/skills/react-best-practices/rules/server-cache-react.md +76 -0
  98. package/skills/react-best-practices/rules/server-dedup-props.md +65 -0
  99. package/skills/react-best-practices/rules/server-parallel-fetching.md +83 -0
  100. package/skills/react-best-practices/rules/server-serialization.md +38 -0
  101. package/skills/rust/SKILL.md +86 -0
  102. package/skills/shadcn-ui/SKILL.md +72 -0
  103. package/skills/skill-builder/SKILL.md +457 -0
  104. package/skills/skill-builder/checklist.md +65 -0
  105. package/skills/sqlite/SKILL.md +38 -0
  106. package/skills/typescript/SKILL.md +453 -0
  107. package/skills/typescript/assets/eslint-template.js +102 -0
  108. package/skills/typescript/assets/tsconfig-template.json +45 -0
  109. package/skills/typescript/references/enterprise-patterns.md +531 -0
  110. package/skills/typescript/references/generics.md +493 -0
  111. package/skills/typescript/references/nestjs-integration.md +579 -0
  112. package/skills/typescript/references/react-integration.md +616 -0
  113. package/skills/typescript/references/toolchain.md +547 -0
  114. package/skills/typescript/references/type-system.md +481 -0
  115. package/skills/vitest-standard/SKILL.md +82 -0
  116. package/skills/vitest-standard/examples/service-mock.ts +60 -0
  117. package/skills/vitest-standard/examples/tdd-calculator.ts +41 -0
  118. package/skills/vitest-standard/examples/type-stubs.d.ts +18 -0
  119. package/skills/vitest-standard/references/async-and-errors.md +58 -0
  120. package/skills/vitest-standard/references/coverage-and-config.md +53 -0
  121. package/skills/vitest-standard/references/mocking.md +61 -0
  122. package/skills/vitest-standard/references/tdd-patterns.md +60 -0
  123. package/dist/github-integration-FOJ4U6I5.js +0 -1
  124. package/skills/github-commander/workflows/full-audit.md +0 -134
package/README.md CHANGED
@@ -10,7 +10,7 @@
10
10
  [![MCP Registry](https://img.shields.io/badge/MCP_Registry-Published-green)](https://registry.modelcontextprotocol.io/v0/servers?search=io.github.neverinfamous/memory-journal-mcp)
11
11
  [![Security](https://img.shields.io/badge/Security-Enhanced-green.svg)](SECURITY.md)
12
12
  [![TypeScript](https://img.shields.io/badge/TypeScript-Strict-blue.svg)](https://github.com/neverinfamous/memory-journal-mcp)
13
- ![Coverage](https://img.shields.io/badge/Coverage-97.12%25-brightgreen.svg)
13
+ ![Coverage](https://img.shields.io/badge/Coverage-97.14%25-brightgreen.svg)
14
14
  ![Tests](https://img.shields.io/badge/Tests-1782_passed-brightgreen.svg)
15
15
  ![E2E Tests](https://img.shields.io/badge/E2E_Tests-391_passed-brightgreen.svg)
16
16
  [![CI](https://github.com/neverinfamous/memory-journal-mcp/actions/workflows/gatekeeper.yml/badge.svg)](https://github.com/neverinfamous/memory-journal-mcp/actions/workflows/gatekeeper.yml)
@@ -28,25 +28,26 @@
28
28
 
29
29
  ### What Sets Us Apart
30
30
 
31
- **65 MCP Tools** · **17 Workflow Prompts** · **38 Resources** · **10 Tool Groups** · **Code Mode** · **GitHub Commander** (Issue Triage, PR Review, Milestone Sprints, Security/Quality/Perf Audits) · **GitHub Integration** (Issues, PRs, Actions, Kanban, Milestones, Insights) · **Team Collaboration** (Shared DB, Vector Search, Cross-Project Insights)
32
-
33
- | Feature | Description |
34
- | ----------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
35
- | **Session Intelligence** | Agents auto-query project history, create entries at checkpoints, and hand off context between sessions via `/session-summary` and `team-session-summary` |
36
- | **GitHub Integration** | 16 tools for Issues, PRs, Actions, Kanban, Milestones (%), Copilot Reviews, and 14-day Insights |
37
- | **Dynamic Project Routing** | Seamlessly switch contexts and access CI/Issue tracking across multiple repositories using a single server instance via `PROJECT_REGISTRY` |
38
- | **Knowledge Graphs** | 8 relationship types linking specs → implementations → tests → PRs with Mermaid visualization |
39
- | **Hybrid Search** | Reciprocal Rank Fusion combining FTS5 keywords, semantic vector similarity, auto-heuristics, and date-range filters |
40
- | **Code Mode** | Execute multi-step operations in a secure sandbox — up to 90% token savings via `mj.*` API |
41
- | **Configurable Briefing** | 12 env vars / CLI flags control `memory://briefing` content — entries, team, GitHub detail, skills awareness |
42
- | **Reports & Analytics** | Standups, retrospectives, PR summaries, digests, period analyses, and milestone tracking |
43
- | **Team Collaboration** | 22 tools with full parity — CRUD, vector search, relationship graphs, cross-project insights, author attribution |
44
- | **Data Interoperability** | Bidirectional Markdown roundtripping, unified IO namespace, and schema-safe JSON exports with hard bounds-checked path traversal defenses |
45
- | **Backup & Restore** | One-command backup/restore with automated scheduling, retention policies, and safety-net auto-backups |
46
- | **Security & Transport** | OAuth 2.1 (RFC 9728/8414, JWT/JWKS, scopes), Streamable HTTP + SSE, rate limiting, CORS, SQL injection prevention, non-root Docker |
47
- | **Structured Error Handling** | Every tool returns `{success, error, code, category, suggestion, recoverable}` — agents get classification, remediation hints, and recoverability signals |
48
- | **Agent Collaboration** | IDE agents and Copilot share context; review findings become searchable knowledge; agents suggest reusable rules and skills ([setup](docs/copilot-setup.md)) |
49
- | **GitHub Commander** | Skills for issue triage, PR reviews, sprint milestones, and security/quality/performance audits with journal trails ([docs](skills/github-commander/SKILL.md)) |
31
+ **67 MCP Tools** · **17 Workflow Prompts** · **34 Resources** · **10 Tool Groups** · **Code Mode** · **GitHub Commander** (Issue Triage, PR Review, Milestone Sprints, Security/Quality/Perf Audits) · **GitHub Integration** (Issues, PRs, Actions, Kanban, Milestones, Insights) · **Team Collaboration** (Shared DB, Vector Search, Cross-Project Insights)
32
+
33
+ | Feature | Description |
34
+ | ----------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
35
+ | **Session Intelligence** | Agents auto-query project history, create entries at checkpoints, and hand off context between sessions via `/session-summary` and `team-session-summary` |
36
+ | **GitHub Integration** | 18 tools for Issues, PRs, Actions, Kanban, Milestones (%), Copilot Reviews, and 14-day Insights |
37
+ | **Dynamic Project Routing** | Seamlessly switch contexts and access CI/Issue tracking across multiple repositories using a single server instance via `PROJECT_REGISTRY` |
38
+ | **Knowledge Graphs** | 8 relationship types linking specs → implementations → tests → PRs with Mermaid visualization |
39
+ | **Hybrid Search** | Reciprocal Rank Fusion combining FTS5 keywords, semantic vector similarity, auto-heuristics, and date-range filters |
40
+ | **Code Mode** | Execute multi-step operations in a secure sandbox — up to 90% token savings via `mj.*` API |
41
+ | **Configurable Briefing** | 14 env vars / CLI flags control `memory://briefing` content — entries, team, GitHub detail, skills awareness |
42
+ | **Reports & Analytics** | Standups, retrospectives, PR summaries, digests, period analyses, and milestone tracking |
43
+ | **Team Collaboration** | 22 tools with full parity — CRUD, vector search, relationship graphs, cross-project insights, author attribution |
44
+ | **Data Interoperability** | Bidirectional Markdown roundtripping, unified IO namespace, and schema-safe JSON exports with hard bounds-checked path traversal defenses |
45
+ | **Backup & Restore** | One-command backup/restore with automated scheduling, retention policies, and safety-net auto-backups |
46
+ | **Security & Transport** | OAuth 2.1 (RFC 9728/8414, JWT/JWKS, scopes), Streamable HTTP + SSE, rate limiting, CORS, SQL injection prevention, non-root Docker |
47
+ | **Structured Error Handling** | Every tool returns `{success, error, code, category, suggestion, recoverable}` — agents get classification, remediation hints, and recoverability signals |
48
+ | **Agent Collaboration** | IDE agents and Copilot share context; review findings become searchable knowledge; agents suggest reusable rules and skills ([setup](docs/copilot-setup.md)) |
49
+ | **Native Agent Skills** | Bundled foundational coding paradigms (`autonomous-dev`, `bun`, `gitlab`, `golang`, `mysql`, `playwright-standard`, `postgres`, `react-best-practices`, `rust`, `shadcn-ui`, `skill-builder`, `sqlite`, `typescript`, `vitest-standard`) establishing permanent AI behavior and architecture rules |
50
+ | **GitHub Commander** | Pipeline skills for issue triage, PR reviews, sprint milestones, and security/quality/performance audits with journal trails ([docs](skills/github-commander/SKILL.md)) |
50
51
 
51
52
  ---
52
53
 
@@ -125,19 +126,14 @@ Execute BEFORE fulfilling any user request in a new session:
125
126
  1. **TARGET**: Infer `repo_name` from the active workspace context or user prompt. If the task is not associated with a specific project, fallback to using the generic resource without a repo name (which defaults to the first registered workspace).
126
127
  2. **FETCH**: Use the MCP `read_resource` tool (Server: `memory-journal-mcp`) to read `memory://briefing/{repo_name}` (or `memory://briefing` if falling back).
127
128
  - **RESTRICTION**: Do NOT use `execute_code` for this step.
128
- 3. **RENDER TABLE**: Extract `userMessage` and output it EXCLUSIVELY as a vertical Markdown Table (2 columns: Field and Value).
129
- - **RESTRICTION**: NO bulleted lists. NO truncation of arrays or lists.
130
- - **REQUIRED MAP**: Output all data comprehensively. Map these fields to the "Field" column:
131
- - Application / Project
132
- - Journal Entries
133
- - Team DB Entries
134
- - Latest Entry (Journal)
135
- - Latest Entry (Team)
136
- - GitHub (Include Repo, Branch, CI Status, Issues, PRs, Insights on separate lines in the Value column)
137
- - Milestone Progress
138
- - Template Resources (Output count only, not URLs)
139
- - Registered Workspaces (Output FULL list of project names)
140
- - Available Extensions (Rules, Skills, Workflows)
129
+ 3. **RENDER TABLE**: Parse the briefing JSON and output a dense 2-column Markdown Table (Field, Value) capturing the core context.
130
+ - **RESTRICTION**: NO bulleted lists. Do NOT truncate issues or summaries.
131
+ - **FORMATTING**: Group related properties to save vertical space. Use `<br>` tags for inner-cell line breaks.
132
+ - **REQUIRED GROUPS**:
133
+ - **GitHub**: Combine Repo, Branch, CI, PRs, and Insights.
134
+ - **GitHub Issues**: List every issue, one per line.
135
+ - Also include Entry Counts (Journal/Team), Latest Entries/Summaries, Milestones, and Workspaces.
136
+ 4. **STOP & WAIT**: After rendering the table, execute the user's prompt but do NOT autonomously resume past tasks or start work on new issues mentioned in the session summary. The briefing is strictly for context.
141
137
 
142
138
  ---
143
139
 
@@ -150,10 +146,10 @@ Control which tools are exposed via `MEMORY_JOURNAL_MCP_TOOL_FILTER` (or CLI: `-
150
146
 
151
147
  | Filter | Tools | Use Case |
152
148
  | -------------------- | ----- | ------------------------ |
153
- | `full` | 65 | All tools (default) |
149
+ | `full` | 67 | All tools (default) |
154
150
  | `starter` | ~11 | Core + search + codemode |
155
151
  | `essential` | ~7 | Minimal footprint |
156
- | `readonly` | ~15 | Disable all mutations |
152
+ | `readonly` | 17 | Disable all mutations |
157
153
  | `-github` | 49 | Exclude a group |
158
154
  | `-github,-analytics` | 47 | Exclude multiple groups |
159
155
 
@@ -169,7 +165,7 @@ Control which tools are exposed via `MEMORY_JOURNAL_MCP_TOOL_FILTER` (or CLI: `-
169
165
 
170
166
  ## 📋 Core Capabilities
171
167
 
172
- ### 🛠️ **65 MCP Tools** (10 Groups)
168
+ ### 🛠️ **67 MCP Tools** (10 Groups)
173
169
 
174
170
  | Group | Tools | Description |
175
171
  | --------------- | ----- | ---------------------------------------------------------------------------------------------------------------------------------------- |
@@ -180,7 +176,7 @@ Control which tools are exposed via `MEMORY_JOURNAL_MCP_TOOL_FILTER` (or CLI: `-
180
176
  | `relationships` | 2 | Link entries, visualize graphs |
181
177
  | `io` | 3 | JSON/Markdown export and File-level Markdown Data Integration Interoperability (Import/Export) |
182
178
  | `admin` | 5 | Update, delete, rebuild/add to vector index, merge tags |
183
- | `github` | 16 | Issues, PRs, context, Kanban, **Milestones**, **Insights**, **issue lifecycle**, **Copilot Reviews** |
179
+ | `github` | 18 | Issues, PRs, context, Kanban, **Milestones**, **Insights**, **issue lifecycle**, **Copilot Reviews** |
184
180
  | `backup` | 4 | Backup, list, restore, cleanup |
185
181
  | `team` | 22 | CRUD, search, stats, relationships, IO (Markdown import/export), backup, vector search, cross-project insights (requires `TEAM_DB_PATH`) |
186
182
 
@@ -208,11 +204,11 @@ Control which tools are exposed via `MEMORY_JOURNAL_MCP_TOOL_FILTER` (or CLI: `-
208
204
 
209
205
  **[Complete prompts guide →](https://github.com/neverinfamous/memory-journal-mcp/wiki/Prompts)**
210
206
 
211
- ### 📡 **38 Resources** (25 Static + 13 Template)
207
+ ### 📡 **34 Resources** (25 Static + 9 Template)
212
208
 
213
209
  **Static Resources** (appear in resource lists):
214
210
 
215
- - `memory://briefing` / `memory://briefing/{repo}` - **Session initialization**: compact context for AI agents (~300 tokens)
211
+ - `memory://briefing` - **Session initialization**: compact context for AI agents (~300 tokens)
216
212
  - `memory://instructions` - **Behavioral guidance**: complete server instructions for AI agents
217
213
  - `memory://recent` - 10 most recent entries
218
214
  - `memory://significant` - Significant milestones and breakthroughs
@@ -240,10 +236,6 @@ Control which tools are exposed via `MEMORY_JOURNAL_MCP_TOOL_FILTER` (or CLI: `-
240
236
 
241
237
  **Template Resources** (require parameters, fetch directly by URI):
242
238
 
243
- - `memory://github/status/{repo}` - Repository status targeted by repo
244
- - `memory://github/insights/{repo}` - Repository insights targeted by repo
245
- - `memory://github/milestones/{repo}` - Open milestones targeted by repo
246
- - `memory://milestones/{repo}/{number}` - Milestone detail targeted by repo
247
239
  - `memory://projects/{number}/timeline` - Project activity timeline
248
240
  - `memory://issues/{issue_number}/entries` - Entries linked to issue
249
241
  - `memory://prs/{pr_number}/entries` - Entries linked to PR
@@ -252,6 +244,9 @@ Control which tools are exposed via `MEMORY_JOURNAL_MCP_TOOL_FILTER` (or CLI: `-
252
244
  - `memory://kanban/{project_number}/diagram` - Kanban Mermaid visualization
253
245
  - `memory://milestones/{number}` - Milestone detail with completion progress
254
246
  - `memory://help/{group}` - Per-group tool reference with parameters and annotations
247
+ - `memory://briefing/{repo}` - Context targeted to a specific repository
248
+
249
+ *Note: The `memory://github/status`, `memory://github/insights`, `memory://github/milestones`, and `memory://milestones/{number}` resources also accept an optional `/{repo}` path suffix for cross-repo targeting.*
255
250
 
256
251
  ---
257
252
 
@@ -269,7 +264,7 @@ Code executes in a **sandboxed VM context** with multiple layers of security. Al
269
264
 
270
265
  ### ⚡ Code Mode Only (Maximum Token Savings)
271
266
 
272
- Run with **only Code Mode enabled** — a single tool that provides access to all 65 tools' worth of capability through the `mj.*` API:
267
+ Run with **only Code Mode enabled** — a single tool that provides access to all 67 tools' worth of capability through the `mj.*` API:
273
268
 
274
269
  ```json
275
270
  {
@@ -350,11 +345,12 @@ Showcasing the full power of the server, including Multi-Project Routing, Team C
350
345
  "AUTO_REBUILD_INDEX": "true",
351
346
  "MEMORY_JOURNAL_MCP_TOOL_FILTER": "codemode",
352
347
  "BRIEFING_ENTRY_COUNT": "3",
348
+ "BRIEFING_SUMMARY_COUNT": "1",
353
349
  "BRIEFING_INCLUDE_TEAM": "true",
354
- "BRIEFING_ISSUE_COUNT": "1",
355
- "BRIEFING_PR_COUNT": "1",
350
+ "BRIEFING_ISSUE_COUNT": "3",
351
+ "BRIEFING_PR_COUNT": "3",
356
352
  "BRIEFING_PR_STATUS": "true",
357
- "BRIEFING_WORKFLOW_COUNT": "1",
353
+ "BRIEFING_WORKFLOW_COUNT": "3",
358
354
  "BRIEFING_WORKFLOW_STATUS": "true",
359
355
  "BRIEFING_COPILOT_REVIEWS": "true",
360
356
  "RULES_FILE_PATH": "/path/to/your/RULES.md",
@@ -366,6 +362,8 @@ Showcasing the full power of the server, including Multi-Project Routing, Team C
366
362
  }
367
363
  ```
368
364
 
365
+ > 💡 **Tip:** Optimize your context window! **Journal entries** (`BRIEFING_ENTRY_COUNT`) capture frequent, granular actions (e.g. bug fixes, implementation steps). **Session summaries** (`BRIEFING_SUMMARY_COUNT`) surface high-level retrospectives meant to pass strategic context continuously across distinct AI sessions. Use both appropriately to keep the agent briefing highly focused!
366
+
369
367
  **Variants** (modify the config above):
370
368
 
371
369
  | Variant | Change |
@@ -493,11 +491,15 @@ The GitHub tools (`get_github_issues`, `get_github_prs`, etc.) auto-detect the r
493
491
  | `OAUTH_ISSUER` | OAuth issuer URL (e.g., `https://auth.example.com/realms/mcp`) |
494
492
  | `OAUTH_AUDIENCE` | Expected JWT audience claim |
495
493
  | `OAUTH_JWKS_URI` | JWKS endpoint for token signature verification |
494
+ | `OAUTH_CLOCK_TOLERANCE` | Allowed clock skew tolerance in seconds for JWT verification (default: `5`) |
495
+ | `CODE_MODE_MAX_RESULT_SIZE` | Maximum size in bytes for mj_execute_code result payload (CLI: `--codemode-max-result-size`; default: `102400`) |
496
496
  | `BRIEFING_ENTRY_COUNT` | Journal entries in briefing (CLI: `--briefing-entries`; default: `3`) |
497
+ | `BRIEFING_SUMMARY_COUNT` | Session summaries to list in briefing (CLI: `--briefing-summaries`; default: `1`) |
497
498
  | `BRIEFING_INCLUDE_TEAM` | Include team DB entries in briefing (`true`/`false`; default: `false`) |
498
499
  | `BRIEFING_ISSUE_COUNT` | Issues to list in briefing; `0` = count only (default: `0`) |
499
500
  | `BRIEFING_PR_COUNT` | PRs to list in briefing; `0` = count only (default: `0`) |
500
501
  | `BRIEFING_PR_STATUS` | Show PR status breakdown (open/merged/closed; default: `false`) |
502
+ | `BRIEFING_MILESTONE_COUNT` | Milestones to list in briefing; `0` = hide entirely (CLI: `--briefing-milestones`; default: `3`) |
501
503
  | `BRIEFING_WORKFLOW_COUNT` | Workflow runs to list in briefing; `0` = status only (default: `0`) |
502
504
  | `BRIEFING_WORKFLOW_STATUS` | Show workflow status breakdown in briefing (default: `false`) |
503
505
  | `BRIEFING_COPILOT_REVIEWS` | Aggregate Copilot review state in briefing (default: `false`) |
@@ -575,6 +577,7 @@ Or via environment variables:
575
577
  export OAUTH_ENABLED=true
576
578
  export OAUTH_ISSUER=https://auth.example.com/realms/mcp
577
579
  export OAUTH_AUDIENCE=memory-journal-mcp
580
+ export OAUTH_CLOCK_TOLERANCE=5
578
581
  memory-journal-mcp --transport http --port 3000
579
582
  ```
580
583
 
@@ -610,7 +613,7 @@ Memory Journal provides a **hybrid approach** to GitHub management:
610
613
  - `get_github_issues` / `get_github_issue` - Query issues
611
614
  - `get_github_prs` / `get_github_pr` - Query pull requests
612
615
  - `get_github_context` - Full repository context
613
- - `get_kanban_board` / `move_kanban_item` - **Kanban management**
616
+ - `get_kanban_board` / `add_kanban_item` / `move_kanban_item` / `delete_kanban_item` - **Kanban management**
614
617
  - `get_github_milestones` / `get_github_milestone` - **Milestone tracking with completion %**
615
618
  - `create_github_milestone` / `update_github_milestone` / `delete_github_milestone` - **Milestone CRUD**
616
619
  - `get_repo_insights` - **Repository traffic & analytics** (stars, clones, views, referrers, popular paths)
@@ -620,6 +623,10 @@ Memory Journal provides a **hybrid approach** to GitHub management:
620
623
 
621
624
  **[Complete GitHub integration guide →](https://github.com/neverinfamous/memory-journal-mcp/wiki/Git-Integration)**
622
625
 
626
+ ### GitHub Commander Workflows
627
+
628
+ The server natively bundles the `github-commander` agent skill (accessible via `memory://skills/github-commander`). This extends your AI assistant with 8 autonomous DevOps workflows for repository stewardship: **Issue Triage**, **Milestone Sprints**, **PR Reviews**, **Security Audits**, **Code Quality Audits**, **Performance Audits**, **Roadmap Kickoffs**, and **Dependency Updates**. Configure validation layers using the `PROJECT_*` environment overrides to enforce CI-matching execution locally during agent tasks!
629
+
623
630
  ## 🏗️ Architecture
624
631
 
625
632
  ### Data Flow
@@ -629,8 +636,8 @@ flowchart TB
629
636
  AI["🤖 AI Agent<br/>(Cursor, Windsurf, Claude)"]
630
637
 
631
638
  subgraph MCP["Memory Journal MCP Server"]
632
- Tools["🛠️ 65 Tools"]
633
- Resources["📡 38 Resources"]
639
+ Tools["🛠️ 67 Tools"]
640
+ Resources["📡 34 Resources"]
634
641
  Prompts["💬 17 Prompts"]
635
642
  end
636
643
 
@@ -658,7 +665,7 @@ flowchart TB
658
665
  ┌─────────────────────────────────────────────────────────────┐
659
666
  │ MCP Server Layer (TypeScript) │
660
667
  │ ┌─────────────────┐ ┌─────────────────┐ ┌─────────────┐ │
661
- │ │ Tools (65) │ │ Resources (38) │ │ Prompts (17)│ │
668
+ │ │ Tools (67) │ │ Resources (34) │ │ Prompts (17)│ │
662
669
  │ │ with Annotations│ │ with Annotations│ │ │ │
663
670
  │ └─────────────────┘ └─────────────────┘ └─────────────┘ │
664
671
  ├─────────────────────────────────────────────────────────────┤
@@ -737,6 +744,7 @@ npm run test:e2e # End-to-end HTTP/SSE transport tests
737
744
 
738
745
  - **[GitHub Wiki](https://github.com/neverinfamous/memory-journal-mcp/wiki)** - Complete documentation
739
746
  - **[Copilot Setup Guide](docs/copilot-setup.md)** - Cross-agent memory bridge between IDE agents and GitHub Copilot
747
+ - **[Deployment Guide](docs/deployment.md)** - CI/CD pipeline, environments, and version bump checklist
740
748
  - **[Docker Hub](https://hub.docker.com/r/writenotenow/memory-journal-mcp)** - Container images
741
749
  - **[npm Package](https://www.npmjs.com/package/memory-journal-mcp)** - Node.js distribution
742
750
  - **[Issues](https://github.com/neverinfamous/memory-journal-mcp/issues)** - Bug reports & feature requests