@waynesutton/agent-memory 0.0.1 → 0.0.2-alpha.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 +1 -1
- package/CLAUDE.md +2 -2
- package/README.md +1013 -1
- package/agents.txt +122 -0
- package/llms.md +25 -0
- package/llms.txt +15 -1
- package/package.json +9 -1
- package/prds/README.md +0 -988
package/AGENTS.md
CHANGED
|
@@ -105,7 +105,7 @@ Tests use `convex-test` with Vitest. The component exports a test helper at `@wa
|
|
|
105
105
|
|
|
106
106
|
## Documentation
|
|
107
107
|
|
|
108
|
-
- `
|
|
108
|
+
- `README.md` — user-facing README
|
|
109
109
|
- `prds/API-REFERENCE.md` — complete API reference
|
|
110
110
|
- `prds/SETUP.md` — step-by-step setup guide
|
|
111
111
|
- `llms.txt` — concise reference for LLMs
|
package/CLAUDE.md
CHANGED
|
@@ -68,12 +68,12 @@ These rules are non-negotiable when modifying this codebase:
|
|
|
68
68
|
3. Add client wrapper methods (`src/client/index.ts`)
|
|
69
69
|
4. Add MCP tool if agent-accessible (`src/mcp/server.ts`)
|
|
70
70
|
5. Add types to `src/shared.ts` if needed
|
|
71
|
-
6. Update docs: `prds/API-REFERENCE.md`, `
|
|
71
|
+
6. Update docs: `prds/API-REFERENCE.md`, `README.md`, `prds/SETUP.md`
|
|
72
72
|
7. Run `npm run build` to verify — zero TypeScript errors required
|
|
73
73
|
|
|
74
74
|
## Docs Location
|
|
75
75
|
|
|
76
76
|
User-facing docs are in `prds/` (not the project root):
|
|
77
|
-
- `
|
|
77
|
+
- `README.md` — full README
|
|
78
78
|
- `prds/API-REFERENCE.md` — complete API reference
|
|
79
79
|
- `prds/SETUP.md` — setup guide with all integration paths (A through H)
|