-
Notifications
You must be signed in to change notification settings - Fork 4.3k
add DSM Memory to extension registry #8446
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -263,6 +263,17 @@ | |
| "environmentVariables": [], | ||
| "type": "streamable-http" | ||
| }, | ||
| { | ||
| "id": "dsm-memory", | ||
| "name": "DSM Memory", | ||
| "description": "Append-only, hash-chained memory layer for Goose via MCP", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Useful? React with 👍 / 👎. |
||
| "command": "python3 -m dsm.integrations.goose", | ||
| "link": "https://github.com/daryl-labs-ai/daryl/tree/main/src/dsm/integrations/goose", | ||
| "installation_notes": "Clone the repo and install: git clone https://github.com/daryl-labs-ai/daryl && cd daryl && pip install -e \".[goose]\". Requires Python 3.8+.", | ||
| "is_builtin": false, | ||
| "endorsed": false, | ||
| "environmentVariables": [] | ||
| }, | ||
| { | ||
| "id": "elevenlabs-mcp", | ||
| "name": "ElevenLabs", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new registry entry creates a broken tutorial link in the extension detail view:
documentation/src/pages/extensions/detail.tsxalways links to/docs/mcp/${getDocumentationPath(server.id)}, and fordsm-memorythis resolves to/docs/mcp/dsm-memory-mcp, but this commit does not adddocumentation/docs/mcp/dsm-memory-mcp.mdor.mdx. In the current docs build this means users can install the extension from the catalog but get a 404 when opening its setup guide.Useful? React with 👍 / 👎.