Add Titen Memory plugin - #184
Open
RamaAditya49 wants to merge 1 commit into
Open
Conversation
Co-Authored-By: CADIS <[email protected]>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using high effort and found 1 potential issue.
Bugbot Autofix is ON, but it could not run because the branch was deleted or merged before autofix could start.
Reviewed by Cursor Bugbot for commit 6c3b103. Configure here.
| --- | ||
| name: titen-memory | ||
| description: Use a configured Titen MCP server to recall bounded evidence-grounded context, record verified durable signals, submit feedback, and coordinate checkpoints, leases, or handoffs. Use when work may benefit from prior project memory or when a verified outcome should be preserved for another agent; do not use it to capture raw transcripts, secrets, chain of thought, or routine tool output. | ||
| --- |
There was a problem hiding this comment.
Missing explicit invocation guard
Medium Severity · Logic Bug
The skill's frontmatter omits disable-model-invocation: true. This, coupled with its broad description ("Use when work may benefit from prior project memory"), allows auto-selection and unintended remote Titen MCP calls and writes, despite the skill being intended for explicit invocation.
Reviewed by Cursor Bugbot for commit 6c3b103. Configure here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Adds a focused remote-MCP plugin for Titen, an open-source evidence-grounded collaborative memory service for AI agents.
The plugin contains:
Configuration stays operator-owned through
TITEN_MCP_URLandTITEN_API_KEY. The repository validator passes with the plugin registered in the marketplace manifest.Note
Low Risk
Additive plugin-only change with no modifications to existing plugin runtime code; auth is operator-supplied via environment variables.
Overview
Introduces a new
titen-memoryplugin that wires Cursor to an operator-hosted Titen MCP endpoint for explicit, project-scoped collaborative memory (recall, durable writes, checkpoints, leases, and handoffs).The plugin ships a remote HTTP MCP declaration (
mcp.json) that readsTITEN_MCP_URLandTITEN_API_KEYfrom the environment—no bundled credentials, hooks, or transcript capture. A singletiten-memoryskill documents the nine-tool contract, safety boundaries (no secrets/transcripts, verify recalled facts), and when to compile vs. remember vs. coordinate.Marketplace registration and the root README plugin table are updated so the plugin can be discovered and installed like other remote-MCP integrations.
Reviewed by Cursor Bugbot for commit 6c3b103. Bugbot is set up for automated code reviews on this repo. Configure here.