@reqall/codex-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.
package/AGENTS.md ADDED
@@ -0,0 +1,28 @@
1
+ # Reqall — AI Agent Memory
2
+
3
+ You have access to the Reqall knowledgebase via MCP tools prefixed with `reqall:`.
4
+
5
+ ## Available Tools
6
+
7
+ - `reqall:search` — Semantic search across project records
8
+ - `reqall:upsert_record` — Create or update a record (issue, spec, arch, test, todo)
9
+ - `reqall:list_records` — List records with filters
10
+ - `reqall:upsert_project` — Create or update a project
11
+ - `reqall:list_projects` — List all projects
12
+ - `reqall:upsert_edge` — Create relationships between records
13
+ - `reqall:impact` — Traverse the record graph for downstream effects
14
+
15
+ ## Project Detection
16
+
17
+ The current project is automatically detected from:
18
+ 1. `REQALL_PROJECT_NAME` environment variable
19
+ 2. Git remote (e.g. `org/repo`)
20
+ 3. Current directory name
21
+
22
+ If the project does not exist in Reqall, call `reqall:upsert_project` before starting work.
23
+
24
+ ## Conventions
25
+
26
+ - Issues: prefix titles with `BUG:`, `TASK:`, `BLOCKER:`, or `QUESTION:`
27
+ - Specs: prefix titles with `ARCH:`, `API:`, `AUTH:`, `DATA:`, or `UI:`
28
+ - After completing work, save a record of what was done
@@ -0,0 +1,8 @@
1
+ # Reqall MCP Server Configuration for Codex
2
+ # Copy this to your Codex project configuration
3
+
4
+ [mcp.reqall]
5
+ url = "https://reqall.net/mcp"
6
+
7
+ [mcp.reqall.headers]
8
+ Authorization = "Bearer ${REQALL_API_KEY}"
package/package.json ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "name": "@reqall/codex-plugin",
3
+ "version": "0.0.1",
4
+ "description": "Reqall plugin for OpenAI Codex — persistent semantic memory for AI agents",
5
+ "type": "module",
6
+ "license": "MIT"
7
+ }