memory-journal-mcp 7.0.1 → 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.
- package/README.md +75 -66
- package/dist/{chunk-6J4RPJ4I.js → chunk-GR4T3SRW.js} +146 -105
- package/dist/{chunk-ARLH46WS.js → chunk-IWKLHSPU.js} +89 -3
- package/dist/{chunk-2BJHLTYP.js → chunk-ORV7ZZOE.js} +1086 -86
- package/dist/cli.js +30 -4
- package/dist/github-integration-2TFMXHIJ.js +1 -0
- package/dist/index.d.ts +6 -2
- package/dist/index.js +3 -3
- package/dist/{tools-FFFGXIKN.js → tools-CXR2FEB2.js} +2 -2
- package/package.json +2 -2
- 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-PDRLXKGM.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,24 +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** |
|
|
44
|
-
| **
|
|
45
|
-
| **
|
|
46
|
-
| **
|
|
47
|
-
| **
|
|
48
|
-
| **
|
|
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)) |
|
|
49
51
|
|
|
50
52
|
---
|
|
51
53
|
|
|
@@ -124,19 +126,14 @@ Execute BEFORE fulfilling any user request in a new session:
|
|
|
124
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).
|
|
125
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).
|
|
126
128
|
- **RESTRICTION**: Do NOT use `execute_code` for this step.
|
|
127
|
-
3. **RENDER TABLE**:
|
|
128
|
-
- **RESTRICTION**: NO bulleted lists.
|
|
129
|
-
- **
|
|
130
|
-
|
|
131
|
-
-
|
|
132
|
-
-
|
|
133
|
-
-
|
|
134
|
-
|
|
135
|
-
- GitHub (Include Repo, Branch, CI Status, Issues, PRs, Insights on separate lines in the Value column)
|
|
136
|
-
- Milestone Progress
|
|
137
|
-
- Template Resources (Output count only, not URLs)
|
|
138
|
-
- Registered Workspaces (Output FULL list of project names)
|
|
139
|
-
- 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.
|
|
140
137
|
|
|
141
138
|
---
|
|
142
139
|
|
|
@@ -149,18 +146,18 @@ Control which tools are exposed via `MEMORY_JOURNAL_MCP_TOOL_FILTER` (or CLI: `-
|
|
|
149
146
|
|
|
150
147
|
| Filter | Tools | Use Case |
|
|
151
148
|
| -------------------- | ----- | ------------------------ |
|
|
152
|
-
| `full` |
|
|
149
|
+
| `full` | 67 | All tools (default) |
|
|
153
150
|
| `starter` | ~11 | Core + search + codemode |
|
|
154
151
|
| `essential` | ~7 | Minimal footprint |
|
|
155
|
-
| `readonly` |
|
|
156
|
-
| `-github` |
|
|
157
|
-
| `-github,-analytics` |
|
|
152
|
+
| `readonly` | 17 | Disable all mutations |
|
|
153
|
+
| `-github` | 49 | Exclude a group |
|
|
154
|
+
| `-github,-analytics` | 47 | Exclude multiple groups |
|
|
158
155
|
|
|
159
156
|
**Filter Syntax:** `shortcut` or `group` or `tool_name` (whitelist mode) · `-group` (disable group) · `-tool` (disable tool) · `+tool` (re-enable after group disable)
|
|
160
157
|
|
|
161
158
|
**Custom Selection:** List individual tool names to create your own whitelist: `--tool-filter "create_entry,search_entries,semantic_search"`
|
|
162
159
|
|
|
163
|
-
**Groups:** `core`, `search`, `analytics`, `relationships`, `
|
|
160
|
+
**Groups:** `core`, `search`, `analytics`, `relationships`, `io`, `admin`, `github`, `backup`, `team`, `codemode`
|
|
164
161
|
|
|
165
162
|
**[Complete tool filtering guide →](https://github.com/neverinfamous/memory-journal-mcp/wiki/Tool-Filtering)**
|
|
166
163
|
|
|
@@ -168,20 +165,20 @@ Control which tools are exposed via `MEMORY_JOURNAL_MCP_TOOL_FILTER` (or CLI: `-
|
|
|
168
165
|
|
|
169
166
|
## 📋 Core Capabilities
|
|
170
167
|
|
|
171
|
-
### 🛠️ **
|
|
172
|
-
|
|
173
|
-
| Group | Tools | Description
|
|
174
|
-
| --------------- | ----- |
|
|
175
|
-
| `codemode` | 1 | Code Mode (sandboxed code execution) 🌟 **Recommended**
|
|
176
|
-
| `core` | 6 | Entry CRUD, tags, test
|
|
177
|
-
| `search` | 4 | Text search, date range, semantic, vector stats
|
|
178
|
-
| `analytics` | 2 | Statistics, cross-project insights
|
|
179
|
-
| `relationships` | 2 | Link entries, visualize graphs
|
|
180
|
-
| `
|
|
181
|
-
| `admin` | 5 | Update, delete, rebuild/add to vector index, merge tags
|
|
182
|
-
| `github` |
|
|
183
|
-
| `backup` | 4 | Backup, list, restore, cleanup
|
|
184
|
-
| `team` |
|
|
168
|
+
### 🛠️ **67 MCP Tools** (10 Groups)
|
|
169
|
+
|
|
170
|
+
| Group | Tools | Description |
|
|
171
|
+
| --------------- | ----- | ---------------------------------------------------------------------------------------------------------------------------------------- |
|
|
172
|
+
| `codemode` | 1 | Code Mode (sandboxed code execution) 🌟 **Recommended** |
|
|
173
|
+
| `core` | 6 | Entry CRUD, tags, test |
|
|
174
|
+
| `search` | 4 | Text search, date range, semantic, vector stats |
|
|
175
|
+
| `analytics` | 2 | Statistics, cross-project insights |
|
|
176
|
+
| `relationships` | 2 | Link entries, visualize graphs |
|
|
177
|
+
| `io` | 3 | JSON/Markdown export and File-level Markdown Data Integration Interoperability (Import/Export) |
|
|
178
|
+
| `admin` | 5 | Update, delete, rebuild/add to vector index, merge tags |
|
|
179
|
+
| `github` | 18 | Issues, PRs, context, Kanban, **Milestones**, **Insights**, **issue lifecycle**, **Copilot Reviews** |
|
|
180
|
+
| `backup` | 4 | Backup, list, restore, cleanup |
|
|
181
|
+
| `team` | 22 | CRUD, search, stats, relationships, IO (Markdown import/export), backup, vector search, cross-project insights (requires `TEAM_DB_PATH`) |
|
|
185
182
|
|
|
186
183
|
**[Complete tools reference →](https://github.com/neverinfamous/memory-journal-mcp/wiki/Tools)**
|
|
187
184
|
|
|
@@ -207,11 +204,11 @@ Control which tools are exposed via `MEMORY_JOURNAL_MCP_TOOL_FILTER` (or CLI: `-
|
|
|
207
204
|
|
|
208
205
|
**[Complete prompts guide →](https://github.com/neverinfamous/memory-journal-mcp/wiki/Prompts)**
|
|
209
206
|
|
|
210
|
-
### 📡 **
|
|
207
|
+
### 📡 **34 Resources** (25 Static + 9 Template)
|
|
211
208
|
|
|
212
209
|
**Static Resources** (appear in resource lists):
|
|
213
210
|
|
|
214
|
-
- `memory://briefing`
|
|
211
|
+
- `memory://briefing` - **Session initialization**: compact context for AI agents (~300 tokens)
|
|
215
212
|
- `memory://instructions` - **Behavioral guidance**: complete server instructions for AI agents
|
|
216
213
|
- `memory://recent` - 10 most recent entries
|
|
217
214
|
- `memory://significant` - Significant milestones and breakthroughs
|
|
@@ -239,10 +236,6 @@ Control which tools are exposed via `MEMORY_JOURNAL_MCP_TOOL_FILTER` (or CLI: `-
|
|
|
239
236
|
|
|
240
237
|
**Template Resources** (require parameters, fetch directly by URI):
|
|
241
238
|
|
|
242
|
-
- `memory://github/status/{repo}` - Repository status targeted by repo
|
|
243
|
-
- `memory://github/insights/{repo}` - Repository insights targeted by repo
|
|
244
|
-
- `memory://github/milestones/{repo}` - Open milestones targeted by repo
|
|
245
|
-
- `memory://milestones/{repo}/{number}` - Milestone detail targeted by repo
|
|
246
239
|
- `memory://projects/{number}/timeline` - Project activity timeline
|
|
247
240
|
- `memory://issues/{issue_number}/entries` - Entries linked to issue
|
|
248
241
|
- `memory://prs/{pr_number}/entries` - Entries linked to PR
|
|
@@ -251,6 +244,9 @@ Control which tools are exposed via `MEMORY_JOURNAL_MCP_TOOL_FILTER` (or CLI: `-
|
|
|
251
244
|
- `memory://kanban/{project_number}/diagram` - Kanban Mermaid visualization
|
|
252
245
|
- `memory://milestones/{number}` - Milestone detail with completion progress
|
|
253
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.*
|
|
254
250
|
|
|
255
251
|
---
|
|
256
252
|
|
|
@@ -268,7 +264,7 @@ Code executes in a **sandboxed VM context** with multiple layers of security. Al
|
|
|
268
264
|
|
|
269
265
|
### ⚡ Code Mode Only (Maximum Token Savings)
|
|
270
266
|
|
|
271
|
-
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:
|
|
272
268
|
|
|
273
269
|
```json
|
|
274
270
|
{
|
|
@@ -349,11 +345,12 @@ Showcasing the full power of the server, including Multi-Project Routing, Team C
|
|
|
349
345
|
"AUTO_REBUILD_INDEX": "true",
|
|
350
346
|
"MEMORY_JOURNAL_MCP_TOOL_FILTER": "codemode",
|
|
351
347
|
"BRIEFING_ENTRY_COUNT": "3",
|
|
348
|
+
"BRIEFING_SUMMARY_COUNT": "1",
|
|
352
349
|
"BRIEFING_INCLUDE_TEAM": "true",
|
|
353
|
-
"BRIEFING_ISSUE_COUNT": "
|
|
354
|
-
"BRIEFING_PR_COUNT": "
|
|
350
|
+
"BRIEFING_ISSUE_COUNT": "3",
|
|
351
|
+
"BRIEFING_PR_COUNT": "3",
|
|
355
352
|
"BRIEFING_PR_STATUS": "true",
|
|
356
|
-
"BRIEFING_WORKFLOW_COUNT": "
|
|
353
|
+
"BRIEFING_WORKFLOW_COUNT": "3",
|
|
357
354
|
"BRIEFING_WORKFLOW_STATUS": "true",
|
|
358
355
|
"BRIEFING_COPILOT_REVIEWS": "true",
|
|
359
356
|
"RULES_FILE_PATH": "/path/to/your/RULES.md",
|
|
@@ -365,6 +362,8 @@ Showcasing the full power of the server, including Multi-Project Routing, Team C
|
|
|
365
362
|
}
|
|
366
363
|
```
|
|
367
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
|
+
|
|
368
367
|
**Variants** (modify the config above):
|
|
369
368
|
|
|
370
369
|
| Variant | Change |
|
|
@@ -492,11 +491,15 @@ The GitHub tools (`get_github_issues`, `get_github_prs`, etc.) auto-detect the r
|
|
|
492
491
|
| `OAUTH_ISSUER` | OAuth issuer URL (e.g., `https://auth.example.com/realms/mcp`) |
|
|
493
492
|
| `OAUTH_AUDIENCE` | Expected JWT audience claim |
|
|
494
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`) |
|
|
495
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`) |
|
|
496
498
|
| `BRIEFING_INCLUDE_TEAM` | Include team DB entries in briefing (`true`/`false`; default: `false`) |
|
|
497
499
|
| `BRIEFING_ISSUE_COUNT` | Issues to list in briefing; `0` = count only (default: `0`) |
|
|
498
500
|
| `BRIEFING_PR_COUNT` | PRs to list in briefing; `0` = count only (default: `0`) |
|
|
499
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`) |
|
|
500
503
|
| `BRIEFING_WORKFLOW_COUNT` | Workflow runs to list in briefing; `0` = status only (default: `0`) |
|
|
501
504
|
| `BRIEFING_WORKFLOW_STATUS` | Show workflow status breakdown in briefing (default: `false`) |
|
|
502
505
|
| `BRIEFING_COPILOT_REVIEWS` | Aggregate Copilot review state in briefing (default: `false`) |
|
|
@@ -554,7 +557,7 @@ For production deployments, enable OAuth 2.1 authentication on the HTTP transpor
|
|
|
554
557
|
|
|
555
558
|
| Scope | Tool Groups |
|
|
556
559
|
| ------- | ------------------------------------------------- |
|
|
557
|
-
| `read` | core, search, analytics, relationships,
|
|
560
|
+
| `read` | core, search, analytics, relationships, io |
|
|
558
561
|
| `write` | github, team (+ all read groups) |
|
|
559
562
|
| `admin` | admin, backup, codemode (+ all write/read groups) |
|
|
560
563
|
|
|
@@ -574,6 +577,7 @@ Or via environment variables:
|
|
|
574
577
|
export OAUTH_ENABLED=true
|
|
575
578
|
export OAUTH_ISSUER=https://auth.example.com/realms/mcp
|
|
576
579
|
export OAUTH_AUDIENCE=memory-journal-mcp
|
|
580
|
+
export OAUTH_CLOCK_TOLERANCE=5
|
|
577
581
|
memory-journal-mcp --transport http --port 3000
|
|
578
582
|
```
|
|
579
583
|
|
|
@@ -609,7 +613,7 @@ Memory Journal provides a **hybrid approach** to GitHub management:
|
|
|
609
613
|
- `get_github_issues` / `get_github_issue` - Query issues
|
|
610
614
|
- `get_github_prs` / `get_github_pr` - Query pull requests
|
|
611
615
|
- `get_github_context` - Full repository context
|
|
612
|
-
- `get_kanban_board` / `move_kanban_item` - **Kanban management**
|
|
616
|
+
- `get_kanban_board` / `add_kanban_item` / `move_kanban_item` / `delete_kanban_item` - **Kanban management**
|
|
613
617
|
- `get_github_milestones` / `get_github_milestone` - **Milestone tracking with completion %**
|
|
614
618
|
- `create_github_milestone` / `update_github_milestone` / `delete_github_milestone` - **Milestone CRUD**
|
|
615
619
|
- `get_repo_insights` - **Repository traffic & analytics** (stars, clones, views, referrers, popular paths)
|
|
@@ -619,6 +623,10 @@ Memory Journal provides a **hybrid approach** to GitHub management:
|
|
|
619
623
|
|
|
620
624
|
**[Complete GitHub integration guide →](https://github.com/neverinfamous/memory-journal-mcp/wiki/Git-Integration)**
|
|
621
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
|
+
|
|
622
630
|
## 🏗️ Architecture
|
|
623
631
|
|
|
624
632
|
### Data Flow
|
|
@@ -628,8 +636,8 @@ flowchart TB
|
|
|
628
636
|
AI["🤖 AI Agent<br/>(Cursor, Windsurf, Claude)"]
|
|
629
637
|
|
|
630
638
|
subgraph MCP["Memory Journal MCP Server"]
|
|
631
|
-
Tools["🛠️
|
|
632
|
-
Resources["📡
|
|
639
|
+
Tools["🛠️ 67 Tools"]
|
|
640
|
+
Resources["📡 34 Resources"]
|
|
633
641
|
Prompts["💬 17 Prompts"]
|
|
634
642
|
end
|
|
635
643
|
|
|
@@ -657,7 +665,7 @@ flowchart TB
|
|
|
657
665
|
┌─────────────────────────────────────────────────────────────┐
|
|
658
666
|
│ MCP Server Layer (TypeScript) │
|
|
659
667
|
│ ┌─────────────────┐ ┌─────────────────┐ ┌─────────────┐ │
|
|
660
|
-
│ │ Tools (
|
|
668
|
+
│ │ Tools (67) │ │ Resources (34) │ │ Prompts (17)│ │
|
|
661
669
|
│ │ with Annotations│ │ with Annotations│ │ │ │
|
|
662
670
|
│ └─────────────────┘ └─────────────────┘ └─────────────┘ │
|
|
663
671
|
├─────────────────────────────────────────────────────────────┤
|
|
@@ -736,6 +744,7 @@ npm run test:e2e # End-to-end HTTP/SSE transport tests
|
|
|
736
744
|
|
|
737
745
|
- **[GitHub Wiki](https://github.com/neverinfamous/memory-journal-mcp/wiki)** - Complete documentation
|
|
738
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
|
|
739
748
|
- **[Docker Hub](https://hub.docker.com/r/writenotenow/memory-journal-mcp)** - Container images
|
|
740
749
|
- **[npm Package](https://www.npmjs.com/package/memory-journal-mcp)** - Node.js distribution
|
|
741
750
|
- **[Issues](https://github.com/neverinfamous/memory-journal-mcp/issues)** - Bug reports & feature requests
|