pi-cursor-bridge 0.1.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/.codex-plugin/plugin.json +36 -0
- package/LICENSE +21 -0
- package/README.md +13 -0
- package/dist/cursor-bridge.mjs +23631 -0
- package/dist/cursor-lifecycle-supervisor.mjs +1290 -0
- package/extensions/index.ts +15 -0
- package/extensions/mcp-stdio.ts +83 -0
- package/package.json +52 -0
- package/skills/cce-routing/SKILL.md +53 -0
- package/skills/cce-routing/agents/openai.yaml +13 -0
- package/skills/cursor-delegate/SKILL.md +90 -0
- package/skills/cursor-delegate/agents/openai.yaml +13 -0
- package/skills/cursor-delegate/references/delegation-contract.md +107 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cursor-bridge",
|
|
3
|
+
"version": "5.4.2+codex.20260822153144",
|
|
4
|
+
"description": "Evidence-backed Cursor Context Engine search and bounded Cursor Agent execution, including a UI-suppressed minimal runtime.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Vanyangyang"
|
|
7
|
+
},
|
|
8
|
+
"repository": "https://github.com/Vanyangyang/cursor-bridge",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"mcpServers": {
|
|
11
|
+
"cursor-bridge": {
|
|
12
|
+
"command": "node",
|
|
13
|
+
"args": [
|
|
14
|
+
"./dist/cursor-bridge.mjs"
|
|
15
|
+
],
|
|
16
|
+
"cwd": ".",
|
|
17
|
+
"default_tools_approval_mode": "approve"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"interface": {
|
|
21
|
+
"displayName": "Cursor Bridge",
|
|
22
|
+
"shortDescription": "Evidence-backed CCE search and bounded Cursor Agent work.",
|
|
23
|
+
"longDescription": "Use Cursor's indexed Agent as an adaptive Cursor Context Engine. State the intent once; Cursor chooses the necessary investigation depth and returns compact path:line evidence instead of guessed locations. Cursor Bridge can also execute bounded FIFO or independent Agent tasks while Codex retains review and final control. Minimal runtime keeps CCE and execution tools available while hiding the Windows Cursor UI.",
|
|
24
|
+
"developerName": "Vanyangyang",
|
|
25
|
+
"category": "Developer Tools",
|
|
26
|
+
"capabilities": [
|
|
27
|
+
"Interactive"
|
|
28
|
+
],
|
|
29
|
+
"defaultPrompt": [
|
|
30
|
+
"Find where this project implements a behavior and return verified path:line evidence.",
|
|
31
|
+
"Trace a symbol, call chain, data flow, or ownership boundary across this workspace.",
|
|
32
|
+
"Initialize CCE workspace to C:\\absolute\\project\\path."
|
|
33
|
+
],
|
|
34
|
+
"websiteURL": "https://github.com/Vanyangyang/cursor-bridge"
|
|
35
|
+
}
|
|
36
|
+
}
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Vanyangyang
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Cursor Bridge for Pi
|
|
2
|
+
|
|
3
|
+
Use Cursor's project index and Agent search from Pi, with compact `path:line` evidence and optional bounded Cursor task execution.
|
|
4
|
+
|
|
5
|
+
```powershell
|
|
6
|
+
pi install npm:pi-cursor-bridge
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
Restart Pi after installation. Initialize the current project by asking Pi to initialize Cursor Bridge for the absolute project path, then use it normally. The package includes the `cce-routing` and `cursor-delegate` Skills and registers the native Cursor Bridge MCP tools directly in Pi.
|
|
10
|
+
|
|
11
|
+
This Pi package embeds Cursor Bridge 5.4.2. Cursor must be installed and signed in. Current end-to-end compatibility claims remain scoped to the environments documented in the main repository.
|
|
12
|
+
|
|
13
|
+
Source and full documentation: https://github.com/Vanyangyang/cursor-bridge
|