memory-journal-mcp 7.1.0 → 7.3.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/README.md +59 -51
- package/dist/{chunk-GW5DYUQJ.js → chunk-CHWIPVQN.js} +174 -74
- package/dist/{chunk-37BQOJDZ.js → chunk-WXDEVIFL.js} +87 -8
- package/dist/{chunk-JEGRDY6W.js → chunk-ZJJD2F5T.js} +487 -89
- package/dist/cli.js +30 -4
- package/dist/github-integration-YODGZH3K.js +1 -0
- package/dist/index.d.ts +5 -1
- package/dist/index.js +3 -3
- package/dist/{tools-O44Q52RD.js → tools-MNMGDTQI.js} +2 -2
- package/package.json +4 -4
- package/skills/README.md +77 -0
- package/skills/autonomous-dev/SKILL.md +56 -0
- package/skills/bin/sync.js +50 -0
- package/skills/bun/SKILL.md +156 -0
- package/skills/github-commander/SKILL.md +1 -1
- package/skills/github-commander/workflows/code-quality-audit.md +7 -5
- package/skills/github-commander/workflows/issue-triage.md +13 -4
- package/skills/github-commander/workflows/milestone-sprint.md +9 -1
- package/skills/github-commander/workflows/perf-audit.md +2 -0
- package/skills/github-commander/workflows/pr-review.md +9 -3
- package/skills/github-commander/workflows/roadmap-kickoff.md +79 -0
- package/skills/github-commander/workflows/security-audit.md +3 -3
- package/skills/github-commander/workflows/update-deps.md +2 -2
- package/skills/gitlab/SKILL.md +115 -0
- package/skills/gitlab/package-lock.json +392 -0
- package/skills/gitlab/package.json +14 -0
- package/skills/gitlab/scripts/gitlab-client.ts +125 -0
- package/skills/gitlab/scripts/gitlab-helper.ts +80 -0
- package/skills/golang/SKILL.md +54 -0
- package/skills/mysql/SKILL.md +30 -0
- package/skills/package.json +48 -0
- package/skills/playwright-standard/SKILL.md +58 -0
- package/skills/playwright-standard/examples/fixtures.ts +66 -0
- package/skills/playwright-standard/examples/type-stubs.d.ts +10 -0
- package/skills/playwright-standard/references/advanced-scenarios.md +59 -0
- package/skills/playwright-standard/references/infrastructure.md +43 -0
- package/skills/postgres/SKILL.md +33 -0
- package/skills/react-best-practices/AGENTS.md +2883 -0
- package/skills/react-best-practices/README.md +127 -0
- package/skills/react-best-practices/SKILL.md +138 -0
- package/skills/react-best-practices/metadata.json +17 -0
- package/skills/react-best-practices/rules/_sections.md +46 -0
- package/skills/react-best-practices/rules/_template.md +28 -0
- package/skills/react-best-practices/rules/advanced-event-handler-refs.md +55 -0
- package/skills/react-best-practices/rules/advanced-init-once.md +42 -0
- package/skills/react-best-practices/rules/advanced-use-latest.md +39 -0
- package/skills/react-best-practices/rules/async-api-routes.md +35 -0
- package/skills/react-best-practices/rules/async-defer-await.md +80 -0
- package/skills/react-best-practices/rules/async-dependencies.md +48 -0
- package/skills/react-best-practices/rules/async-parallel.md +24 -0
- package/skills/react-best-practices/rules/async-suspense-boundaries.md +99 -0
- package/skills/react-best-practices/rules/bundle-barrel-imports.md +59 -0
- package/skills/react-best-practices/rules/bundle-conditional.md +37 -0
- package/skills/react-best-practices/rules/bundle-defer-third-party.md +48 -0
- package/skills/react-best-practices/rules/bundle-dynamic-imports.md +34 -0
- package/skills/react-best-practices/rules/bundle-preload.md +44 -0
- package/skills/react-best-practices/rules/client-event-listeners.md +78 -0
- package/skills/react-best-practices/rules/client-localstorage-schema.md +74 -0
- package/skills/react-best-practices/rules/client-passive-event-listeners.md +48 -0
- package/skills/react-best-practices/rules/client-swr-dedup.md +56 -0
- package/skills/react-best-practices/rules/js-batch-dom-css.md +110 -0
- package/skills/react-best-practices/rules/js-cache-function-results.md +80 -0
- package/skills/react-best-practices/rules/js-cache-property-access.md +28 -0
- package/skills/react-best-practices/rules/js-cache-storage.md +68 -0
- package/skills/react-best-practices/rules/js-combine-iterations.md +32 -0
- package/skills/react-best-practices/rules/js-early-exit.md +50 -0
- package/skills/react-best-practices/rules/js-hoist-regexp.md +45 -0
- package/skills/react-best-practices/rules/js-index-maps.md +37 -0
- package/skills/react-best-practices/rules/js-length-check-first.md +50 -0
- package/skills/react-best-practices/rules/js-min-max-loop.md +82 -0
- package/skills/react-best-practices/rules/js-set-map-lookups.md +24 -0
- package/skills/react-best-practices/rules/js-tosorted-immutable.md +57 -0
- package/skills/react-best-practices/rules/rendering-activity.md +24 -0
- package/skills/react-best-practices/rules/rendering-animate-svg-wrapper.md +38 -0
- package/skills/react-best-practices/rules/rendering-conditional-render.md +32 -0
- package/skills/react-best-practices/rules/rendering-content-visibility.md +38 -0
- package/skills/react-best-practices/rules/rendering-hoist-jsx.md +36 -0
- package/skills/react-best-practices/rules/rendering-hydration-no-flicker.md +72 -0
- package/skills/react-best-practices/rules/rendering-hydration-suppress-warning.md +26 -0
- package/skills/react-best-practices/rules/rendering-svg-precision.md +28 -0
- package/skills/react-best-practices/rules/rendering-usetransition-loading.md +75 -0
- package/skills/react-best-practices/rules/rerender-defer-reads.md +39 -0
- package/skills/react-best-practices/rules/rerender-dependencies.md +45 -0
- package/skills/react-best-practices/rules/rerender-derived-state-no-effect.md +40 -0
- package/skills/react-best-practices/rules/rerender-derived-state.md +29 -0
- package/skills/react-best-practices/rules/rerender-functional-setstate.md +77 -0
- package/skills/react-best-practices/rules/rerender-lazy-state-init.md +56 -0
- package/skills/react-best-practices/rules/rerender-memo-with-default-value.md +36 -0
- package/skills/react-best-practices/rules/rerender-memo.md +44 -0
- package/skills/react-best-practices/rules/rerender-move-effect-to-event.md +45 -0
- package/skills/react-best-practices/rules/rerender-simple-expression-in-memo.md +35 -0
- package/skills/react-best-practices/rules/rerender-transitions.md +40 -0
- package/skills/react-best-practices/rules/rerender-use-ref-transient-values.md +73 -0
- package/skills/react-best-practices/rules/server-after-nonblocking.md +73 -0
- package/skills/react-best-practices/rules/server-auth-actions.md +96 -0
- package/skills/react-best-practices/rules/server-cache-lru.md +41 -0
- package/skills/react-best-practices/rules/server-cache-react.md +76 -0
- package/skills/react-best-practices/rules/server-dedup-props.md +65 -0
- package/skills/react-best-practices/rules/server-parallel-fetching.md +83 -0
- package/skills/react-best-practices/rules/server-serialization.md +38 -0
- package/skills/rust/SKILL.md +86 -0
- package/skills/shadcn-ui/SKILL.md +72 -0
- package/skills/skill-builder/SKILL.md +457 -0
- package/skills/skill-builder/checklist.md +65 -0
- package/skills/sqlite/SKILL.md +38 -0
- package/skills/typescript/SKILL.md +453 -0
- package/skills/typescript/assets/eslint-template.js +102 -0
- package/skills/typescript/assets/tsconfig-template.json +45 -0
- package/skills/typescript/references/enterprise-patterns.md +531 -0
- package/skills/typescript/references/generics.md +493 -0
- package/skills/typescript/references/nestjs-integration.md +579 -0
- package/skills/typescript/references/react-integration.md +616 -0
- package/skills/typescript/references/toolchain.md +547 -0
- package/skills/typescript/references/type-system.md +481 -0
- package/skills/vitest-standard/SKILL.md +82 -0
- package/skills/vitest-standard/examples/service-mock.ts +60 -0
- package/skills/vitest-standard/examples/tdd-calculator.ts +41 -0
- package/skills/vitest-standard/examples/type-stubs.d.ts +18 -0
- package/skills/vitest-standard/references/async-and-errors.md +58 -0
- package/skills/vitest-standard/references/coverage-and-config.md +53 -0
- package/skills/vitest-standard/references/mocking.md +61 -0
- package/skills/vitest-standard/references/tdd-patterns.md +60 -0
- package/dist/github-integration-FOJ4U6I5.js +0 -1
- package/skills/github-commander/workflows/full-audit.md +0 -134
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[](https://registry.modelcontextprotocol.io/v0/servers?search=io.github.neverinfamous/memory-journal-mcp)
|
|
11
11
|
[](SECURITY.md)
|
|
12
12
|
[](https://github.com/neverinfamous/memory-journal-mcp)
|
|
13
|
-

|
|
14
14
|

|
|
15
15
|

|
|
16
16
|
[](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
|
-
**
|
|
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** |
|
|
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** |
|
|
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
|
-
| **
|
|
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**:
|
|
129
|
-
- **RESTRICTION**: NO bulleted lists.
|
|
130
|
-
- **
|
|
131
|
-
|
|
132
|
-
-
|
|
133
|
-
-
|
|
134
|
-
-
|
|
135
|
-
|
|
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` |
|
|
149
|
+
| `full` | 67 | All tools (default) |
|
|
154
150
|
| `starter` | ~11 | Core + search + codemode |
|
|
155
151
|
| `essential` | ~7 | Minimal footprint |
|
|
156
|
-
| `readonly` |
|
|
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
|
-
### 🛠️ **
|
|
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` |
|
|
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
|
-
### 📡 **
|
|
207
|
+
### 📡 **34 Resources** (25 Static + 9 Template)
|
|
212
208
|
|
|
213
209
|
**Static Resources** (appear in resource lists):
|
|
214
210
|
|
|
215
|
-
- `memory://briefing`
|
|
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
|
|
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": "
|
|
355
|
-
"BRIEFING_PR_COUNT": "
|
|
350
|
+
"BRIEFING_ISSUE_COUNT": "3",
|
|
351
|
+
"BRIEFING_PR_COUNT": "3",
|
|
356
352
|
"BRIEFING_PR_STATUS": "true",
|
|
357
|
-
"BRIEFING_WORKFLOW_COUNT": "
|
|
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["🛠️
|
|
633
|
-
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 (
|
|
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
|