@reqall/cursor-plugin 0.0.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.
@@ -0,0 +1,10 @@
1
+ {
2
+ "mcpServers": {
3
+ "reqall": {
4
+ "url": "${REQALL_URL:-https://reqall.net}/mcp",
5
+ "headers": {
6
+ "Authorization": "Bearer ${REQALL_API_KEY}"
7
+ }
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @reqall/cursor-plugin
3
+ *
4
+ * Cursor adapter for Reqall knowledgebase.
5
+ * Expand as Cursor's plugin API matures.
6
+ */
7
+ export { loadConfig, detectProject, formatContext } from '@reqall/core';
8
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,UAAU,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @reqall/cursor-plugin
3
+ *
4
+ * Cursor adapter for Reqall knowledgebase.
5
+ * Expand as Cursor's plugin API matures.
6
+ */
7
+ export { loadConfig, detectProject, formatContext } from '@reqall/core';
8
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,UAAU,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC"}
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@reqall/cursor-plugin",
3
+ "version": "0.0.1",
4
+ "description": "Reqall plugin for Cursor — persistent semantic memory for AI agents",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "dependencies": {
8
+ "@reqall/core": "0.0.1"
9
+ },
10
+ "license": "MIT",
11
+ "scripts": {
12
+ "build": "tsc",
13
+ "clean": "rm -rf dist"
14
+ }
15
+ }
@@ -0,0 +1,34 @@
1
+ ---
2
+ description: Reqall persistent knowledgebase for AI agent memory
3
+ globs: **/*
4
+ alwaysApply: true
5
+ ---
6
+
7
+ # Reqall — AI Agent Memory
8
+
9
+ You have access to the Reqall knowledgebase via MCP tools prefixed with `reqall:`.
10
+
11
+ ## Available Tools
12
+
13
+ - `reqall:search` — Semantic search across project records
14
+ - `reqall:upsert_record` — Create or update a record (issue, spec, arch, test, todo)
15
+ - `reqall:list_records` — List records with filters
16
+ - `reqall:upsert_project` — Create or update a project
17
+ - `reqall:list_projects` — List all projects
18
+ - `reqall:upsert_edge` — Create relationships between records
19
+ - `reqall:impact` — Traverse the record graph for downstream effects
20
+
21
+ ## Project Detection
22
+
23
+ The current project is automatically detected from:
24
+ 1. `REQALL_PROJECT_NAME` environment variable
25
+ 2. Git remote (e.g. `org/repo`)
26
+ 3. Current directory name
27
+
28
+ If the project does not exist in Reqall, call `reqall:upsert_project` before starting work.
29
+
30
+ ## Conventions
31
+
32
+ - Issues: prefix titles with `BUG:`, `TASK:`, `BLOCKER:`, or `QUESTION:`
33
+ - Specs: prefix titles with `ARCH:`, `API:`, `AUTH:`, `DATA:`, or `UI:`
34
+ - After completing work, save a record of what was done via `reqall:upsert_record`
package/src/index.ts ADDED
@@ -0,0 +1,7 @@
1
+ /**
2
+ * @reqall/cursor-plugin
3
+ *
4
+ * Cursor adapter for Reqall knowledgebase.
5
+ * Expand as Cursor's plugin API matures.
6
+ */
7
+ export { loadConfig, detectProject, formatContext } from '@reqall/core';
package/tsconfig.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "extends": "../../tsconfig.base.json",
3
+ "compilerOptions": {
4
+ "rootDir": "src",
5
+ "outDir": "dist"
6
+ },
7
+ "include": ["src"]
8
+ }