@prmichaelsen/remember-mcp 3.17.5 → 3.18.1
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/.github/workflows/bump-remember-core.yml +8 -1
- package/.github/workflows/publish.yml +10 -2
- package/CHANGELOG.md +13 -0
- package/dist/server-factory.js +189212 -242
- package/dist/server.js +189211 -241
- package/dist/tools/create-memory.d.ts +11 -0
- package/dist/tools/update-memory.d.ts +11 -0
- package/package.json +3 -2
- package/src/tools/create-memory.ts +11 -0
- package/src/tools/update-memory.ts +11 -0
|
@@ -45,4 +45,11 @@ jobs:
|
|
|
45
45
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
46
46
|
|
|
47
47
|
- name: Summary
|
|
48
|
-
run:
|
|
48
|
+
run: |
|
|
49
|
+
CORE_VERSION="${{ github.event.client_payload.version }}"
|
|
50
|
+
MCP_VERSION="${{ steps.bump.outputs.version }}"
|
|
51
|
+
echo "::notice::Published @prmichaelsen/remember-mcp@${MCP_VERSION} (remember-core@${CORE_VERSION})"
|
|
52
|
+
echo "## Published to npm" >> "$GITHUB_STEP_SUMMARY"
|
|
53
|
+
echo "**Package**: \`@prmichaelsen/remember-mcp@${MCP_VERSION}\`" >> "$GITHUB_STEP_SUMMARY"
|
|
54
|
+
echo "**Dependency bump**: \`@prmichaelsen/remember-core@${CORE_VERSION}\`" >> "$GITHUB_STEP_SUMMARY"
|
|
55
|
+
echo "**Registry**: [npm](https://www.npmjs.com/package/@prmichaelsen/remember-mcp/v/${MCP_VERSION})" >> "$GITHUB_STEP_SUMMARY"
|
|
@@ -48,8 +48,16 @@ jobs:
|
|
|
48
48
|
|
|
49
49
|
- name: Summary
|
|
50
50
|
if: steps.version.outputs.changed == 'true'
|
|
51
|
-
run:
|
|
51
|
+
run: |
|
|
52
|
+
VERSION="${{ steps.version.outputs.version }}"
|
|
53
|
+
echo "::notice::Published @prmichaelsen/remember-mcp@${VERSION} to npm"
|
|
54
|
+
echo "## Published to npm" >> "$GITHUB_STEP_SUMMARY"
|
|
55
|
+
echo "**Package**: \`@prmichaelsen/remember-mcp@${VERSION}\`" >> "$GITHUB_STEP_SUMMARY"
|
|
56
|
+
echo "**Registry**: [npm](https://www.npmjs.com/package/@prmichaelsen/remember-mcp/v/${VERSION})" >> "$GITHUB_STEP_SUMMARY"
|
|
52
57
|
|
|
53
58
|
- name: Skip
|
|
54
59
|
if: steps.version.outputs.changed != 'true'
|
|
55
|
-
run:
|
|
60
|
+
run: |
|
|
61
|
+
echo "::notice::Version unchanged, skipping publish"
|
|
62
|
+
echo "## Publish skipped" >> "$GITHUB_STEP_SUMMARY"
|
|
63
|
+
echo "Version unchanged from previous commit." >> "$GITHUB_STEP_SUMMARY"
|
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ 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.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.18.1] - 2026-03-13
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Rename `follow_up_at` to `follow_up_date` in create and update memory tool schemas and args passthrough, matching remember-core 0.70.11 migration from text to date-typed Weaviate property
|
|
12
|
+
|
|
13
|
+
## [3.18.0] - 2026-03-12
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- Expose `follow_up_at` and `follow_up_targets` fields in `remember_create_memory` tool schema
|
|
18
|
+
- Expose `follow_up_at` (nullable) and `follow_up_targets` fields in `remember_update_memory` tool schema
|
|
19
|
+
- Wire follow-up fields through to remember-core service layer on both create and update
|
|
20
|
+
|
|
8
21
|
## [3.17.1] - 2026-03-09
|
|
9
22
|
|
|
10
23
|
### Fixed
|