@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 +28 -0
- package/config.toml.example +8 -0
- package/package.json +7 -0
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
|