-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext7.json
More file actions
31 lines (31 loc) · 1.92 KB
/
Copy pathcontext7.json
File metadata and controls
31 lines (31 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"$schema": "https://context7.com/schema/context7.json",
"projectTitle": "Ragmir",
"description": "Open-source local-first retrieval toolkit for files selected by the project. TypeScript CLI, library, read-focused MCP server, and portable skills keep the index under ignored local state and return cited passages. Optional chat and TTS remain separate packages.",
"excludeFolders": [
"node_modules",
"packages/ragmir-core/dist",
"packages/ragmir-tts/dist",
"packages/ragmir-chat/dist",
"packages/ragmir-landing/dist",
"packages/ragmir-landing/.astro",
"packages/ragmir-core/examples",
"release-artifacts",
"private",
".ragmir",
".gitnexus",
".git"
],
"excludeFiles": ["CHANGELOG.md", "pnpm-lock.yaml"],
"rules": [
"Ragmir Core returns cited retrieval context only; it does not synthesize answers itself.",
"`rgr chat` is optional add-on generation via @jcode.labs/ragmir-chat; the core remains retrieval-only.",
"The `local-hash` embedding provider (default) is a lexical sha256 embedding, not semantic; use `transformers` for semantic retrieval.",
"Switching `embeddingProvider` requires `rgr ingest --rebuild`, since the two providers produce incompatible vectors.",
"Run `rgr doctor --fix` after upgrading or misconfiguration to repair scaffolding, `.gitignore` entries, and the agent skill install.",
"Config resolves from the caller's working directory (`.ragmir/config.json`), never from the package install path.",
"In a monorepo, the nearest configured ancestor is active; use `rgr bases --json` or explicit `--project-root` to verify routing.",
"Use `rgr preview` to inspect redacted chunks without writing an index, and `search(..., { explain: true })` only when rank diagnostics are needed.",
"MCP resources `ragmir://context` and `ragmir://sources` are bounded agent-orientation surfaces; retrieval still happens through the read-focused tools."
]
}