You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Medium Risk
Adds a new third-party plugin bundle including Node-based Cursor lifecycle hooks that write local JSONL events and an .mcp.json pointing at a hosted MCP endpoint, which introduces some execution/supply-chain and telemetry-like surface area. Changes are isolated to a new orgx/ directory plus marketplace/README indexing.
Overview
Adds OrgX as a new marketplace plugin by indexing it in .cursor-plugin/marketplace.json and the root README plugin table.
Introduces a new orgx/ plugin bundle with plugin.json, logo, rules/skills/agents/commands content, and an .mcp.json that configures the hosted OrgX MCP server endpoint.
Includes Cursor lifecycle hook scripts (scripts/hooks/*.mjs) wired via hooks/hooks.json to spool redacted JSONL “Work Graph” events to a local outbox, plus npm scripts to verify required files/hook wiring and to install:local via symlink.
Reviewed by Cursor Bugbot for commit 6dee4ab. Bugbot is set up for automated code reviews on this repo. Configure here.
Current head 6dee4ab addresses the Cursor Bugbot findings from the earlier f3fb409 review:\n\n- orgx/scripts/install-local.mjs now uses fileURLToPath(import.meta.url), resolves the plugin root to the orgx directory, and links to ~/.cursor/plugins/local/orgx.\n- orgx/scripts/hooks/record-work-graph-event.mjs no longer persists raw transcript paths; it only records transcript_path_present and filters sensitive payload keys.\n- Hook wrappers now propagate recorder failures through exitCodeForResult and write stderr context instead of always exiting 0.\n- orgx/scripts/verify-plugin.mjs includes guards for those behaviors.\n\nRe-verified locally from this PR branch with npm run verify in orgx/; it passes.
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
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.
Summary
Verification
Notes
Note
Medium Risk
Adds a new third-party plugin bundle including Node-based Cursor lifecycle hooks that write local JSONL events and an
.mcp.jsonpointing at a hosted MCP endpoint, which introduces some execution/supply-chain and telemetry-like surface area. Changes are isolated to a neworgx/directory plus marketplace/README indexing.Overview
Adds OrgX as a new marketplace plugin by indexing it in
.cursor-plugin/marketplace.jsonand the rootREADMEplugin table.Introduces a new
orgx/plugin bundle withplugin.json, logo, rules/skills/agents/commands content, and an.mcp.jsonthat configures the hosted OrgX MCP server endpoint.Includes Cursor lifecycle hook scripts (
scripts/hooks/*.mjs) wired viahooks/hooks.jsonto spool redacted JSONL “Work Graph” events to a local outbox, plusnpmscripts toverifyrequired files/hook wiring and toinstall:localvia symlink.Reviewed by Cursor Bugbot for commit 6dee4ab. Bugbot is set up for automated code reviews on this repo. Configure here.