moflo 4.3.1 → 4.6.0

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.
Files changed (66) hide show
  1. package/.claude/guidance/agent-bootstrap.md +2 -2
  2. package/.claude/guidance/guidance-memory-strategy.md +262 -0
  3. package/.claude/guidance/memory-strategy.md +204 -0
  4. package/.claude/guidance/moflo.md +594 -0
  5. package/.claude/guidance/task-swarm-integration.md +348 -0
  6. package/.claude/helpers/hook-handler.cjs +83 -1
  7. package/.claude/helpers/metrics-db.mjs +492 -488
  8. package/.claude/helpers/statusline.cjs +85 -16
  9. package/.claude/settings.json +10 -25
  10. package/.claude/settings.local.json +14 -0
  11. package/README.md +279 -181
  12. package/bin/build-embeddings.mjs +2 -2
  13. package/bin/generate-code-map.mjs +1 -1
  14. package/bin/index-guidance.mjs +85 -15
  15. package/bin/semantic-search.mjs +6 -6
  16. package/bin/setup-project.mjs +9 -9
  17. package/package.json +8 -7
  18. package/src/@claude-flow/cli/dist/src/commands/appliance.js +12 -12
  19. package/src/@claude-flow/cli/dist/src/commands/benchmark.js +2 -2
  20. package/src/@claude-flow/cli/dist/src/commands/claims.js +1 -1
  21. package/src/@claude-flow/cli/dist/src/commands/config.js +3 -3
  22. package/src/@claude-flow/cli/dist/src/commands/daemon.js +25 -3
  23. package/src/@claude-flow/cli/dist/src/commands/deployment.js +1 -1
  24. package/src/@claude-flow/cli/dist/src/commands/doctor.js +23 -6
  25. package/src/@claude-flow/cli/dist/src/commands/embeddings.js +1 -1
  26. package/src/@claude-flow/cli/dist/src/commands/gate.d.ts +8 -8
  27. package/src/@claude-flow/cli/dist/src/commands/gate.js +13 -13
  28. package/src/@claude-flow/cli/dist/src/commands/hooks.js +1 -1
  29. package/src/@claude-flow/cli/dist/src/commands/init.js +14 -12
  30. package/src/@claude-flow/cli/dist/src/commands/neural.js +1 -1
  31. package/src/@claude-flow/cli/dist/src/commands/orc.d.ts +6 -6
  32. package/src/@claude-flow/cli/dist/src/commands/orc.js +25 -25
  33. package/src/@claude-flow/cli/dist/src/commands/performance.js +1 -1
  34. package/src/@claude-flow/cli/dist/src/commands/plugins.js +1 -1
  35. package/src/@claude-flow/cli/dist/src/commands/providers.js +1 -1
  36. package/src/@claude-flow/cli/dist/src/commands/security.js +1 -1
  37. package/src/@claude-flow/cli/dist/src/commands/start.js +11 -11
  38. package/src/@claude-flow/cli/dist/src/commands/status.js +3 -3
  39. package/src/@claude-flow/cli/dist/src/commands/transfer-store.js +1 -1
  40. package/src/@claude-flow/cli/dist/src/config/moflo-config.d.ts +30 -0
  41. package/src/@claude-flow/cli/dist/src/config/moflo-config.js +103 -7
  42. package/src/@claude-flow/cli/dist/src/index.d.ts +1 -1
  43. package/src/@claude-flow/cli/dist/src/index.js +3 -3
  44. package/src/@claude-flow/cli/dist/src/init/claudemd-generator.js +1 -1
  45. package/src/@claude-flow/cli/dist/src/init/executor.js +9 -12
  46. package/src/@claude-flow/cli/dist/src/init/helpers-generator.js +640 -640
  47. package/src/@claude-flow/cli/dist/src/init/moflo-init.js +522 -67
  48. package/src/@claude-flow/cli/dist/src/init/settings-generator.js +7 -12
  49. package/src/@claude-flow/cli/dist/src/init/statusline-generator.d.ts +1 -1
  50. package/src/@claude-flow/cli/dist/src/init/statusline-generator.js +784 -784
  51. package/src/@claude-flow/cli/dist/src/mcp-tools/agentdb-tools.js +12 -12
  52. package/src/@claude-flow/cli/dist/src/mcp-tools/hooks-tools.js +122 -66
  53. package/src/@claude-flow/cli/dist/src/memory/intelligence.js +5 -1
  54. package/src/@claude-flow/cli/dist/src/memory/memory-initializer.d.ts +1 -1
  55. package/src/@claude-flow/cli/dist/src/memory/memory-initializer.js +371 -371
  56. package/src/@claude-flow/cli/dist/src/parser.d.ts +10 -0
  57. package/src/@claude-flow/cli/dist/src/parser.js +49 -3
  58. package/src/@claude-flow/cli/dist/src/plugins/store/discovery.js +1 -1
  59. package/src/@claude-flow/cli/dist/src/runtime/headless.js +30 -30
  60. package/src/@claude-flow/cli/dist/src/services/claim-service.js +1 -1
  61. package/src/@claude-flow/cli/dist/src/services/ruvector-training.js +11 -5
  62. package/src/@claude-flow/cli/dist/src/services/workflow-gate.d.ts +13 -3
  63. package/src/@claude-flow/cli/dist/src/services/workflow-gate.js +73 -5
  64. package/src/@claude-flow/cli/dist/src/types.d.ts +1 -1
  65. package/src/@claude-flow/cli/dist/src/types.js +1 -1
  66. package/src/@claude-flow/memory/package.json +44 -42
@@ -33,7 +33,7 @@ If you have MCP tools available (check for `mcp__claude-flow__*`), use them dire
33
33
  ### Option B: CLI via Bash
34
34
 
35
35
  ```bash
36
- npx moflo memory search --query "[describe your task]" --namespace guidance --limit 5
36
+ npx flo memory search --query "[describe your task]" --namespace guidance --limit 5
37
37
  ```
38
38
 
39
39
  | Your task involves... | Search namespace | Example query |
@@ -111,7 +111,7 @@ mcp__claude-flow__memory_store
111
111
 
112
112
  ### CLI Fallback:
113
113
  ```bash
114
- npx moflo memory store --namespace patterns --key "brief-descriptive-key" --value "1-2 sentence insight"
114
+ npx flo memory store --namespace patterns --key "brief-descriptive-key" --value "1-2 sentence insight"
115
115
  ```
116
116
 
117
117
  **Store:** Solutions to tricky bugs, patterns that worked, gotchas, workarounds
@@ -0,0 +1,262 @@
1
+ # Guidance & Memory Tuning Strategy
2
+
3
+ **Purpose:** How to build and tune a RAG-based guidance system using moflo's semantic search, embedding pipeline, and indexing. Reference when creating guidance documents, troubleshooting search quality, or extending the system.
4
+
5
+ ---
6
+
7
+ ## Problem Statement
8
+
9
+ Claude Code agents need project-specific knowledge — coding rules, architecture patterns, entity templates, testing conventions — delivered at the right moment. Without a retrieval system, agents either miss critical rules or require massive CLAUDE.md files that waste context window tokens.
10
+
11
+ **Goals:**
12
+ - Agents find relevant guidance automatically via semantic search
13
+ - Subagents spawned by the coordinator inherit memory access
14
+ - Search quality is high enough that agents don't need to read whole files
15
+ - The system survives `npm install` (indexing runs on session start)
16
+
17
+ ---
18
+
19
+ ## Architecture
20
+
21
+ Three layers: embedding generation, vector storage, and search.
22
+
23
+ ```
24
+ Source Files (.claude/guidance/*.md, docs/*.md)
25
+ |
26
+ v
27
+ index-guidance.mjs --- Chunk on ## headers, build RAG links
28
+ | (prev/next, siblings, parent/child, context overlap)
29
+ v
30
+ .swarm/memory.db ----- SQLite (entries + metadata + embedding vectors)
31
+ |
32
+ v
33
+ build-embeddings.mjs - Generate 384-dim vectors per entry
34
+ | (Xenova/all-MiniLM-L6-v2 neural, or domain-aware hash fallback)
35
+ v
36
+ RuVector (@ruvector/core) -- HNSW index infrastructure
37
+ v
38
+ Search layer ---------- Three access paths:
39
+ 1. MCP tools (mcp__claude-flow__memory_search) -- preferred
40
+ 2. CLI (npx flo memory search) -- fallback
41
+ 3. Script (semantic-search.mjs) -- detailed output
42
+ ```
43
+
44
+ **Key files:**
45
+
46
+ | File | Role |
47
+ |------|------|
48
+ | `.claude/guidance/*.md` | Guidance documents (source of truth) |
49
+ | `bin/index-guidance.mjs` | Chunks documents, stores in SQLite with RAG metadata |
50
+ | `bin/build-embeddings.mjs` | Generates vector embeddings (neural or hash) |
51
+ | `.swarm/memory.db` | SQLite database with entries, metadata, embeddings |
52
+ | `@ruvector/core` | HNSW vector index, WASM fallback, SIMD operations |
53
+
54
+ ---
55
+
56
+ ## Guidance Document Optimization Rules
57
+
58
+ These rules determine how well your guidance documents retrieve via semantic search:
59
+
60
+ ### 1. Every file needs a Purpose line
61
+
62
+ Add `**Purpose:**` as the first meaningful line after the title. Claude checks this first for relevance scoring. Without it, the chunk has no summary signal.
63
+
64
+ ### 2. H2 headings are the primary retrieval signal
65
+
66
+ The indexer splits on `##`. Each heading becomes the chunk title, prepended to searchable content. Domain-specific keywords in headings dramatically improve recall.
67
+
68
+ **Bad:** `## Overview`, `## Rules`, `## Pattern`
69
+ **Good:** `## Soft Delete Rules`, `## JWT Authentication Pattern`, `## Database Entity Migration`
70
+
71
+ ### 3. Ideal chunk size: 1000-4000 characters
72
+
73
+ Below 50 chars the chunk is dropped. Above 6000 the indexer force-splits on paragraphs, which breaks mid-thought. The sweet spot produces focused embeddings.
74
+
75
+ ### 4. Self-contained chunks
76
+
77
+ Each H2 section must answer a question without needing the rest of the document. Include: the rule, a code example, and a cross-reference.
78
+
79
+ ### 5. Tables over prose
80
+
81
+ Claude parses structured data more accurately than paragraphs. DO/DON'T tables, field reference tables, and command tables all retrieve better.
82
+
83
+ ### 6. Cross-references create a navigation graph
84
+
85
+ The RAG indexer stores `prevChunk`/`nextChunk`/`siblings` metadata. Cross-references between documents let Claude follow chains: `core.md -> coding-rules.md -> database.md`.
86
+
87
+ ### 7. No decorative formatting
88
+
89
+ ASCII boxes, excessive emoji, rhetorical questions, and motivational text all waste tokens without improving retrieval or comprehension.
90
+
91
+ ---
92
+
93
+ ## Embedding Pipeline
94
+
95
+ ### Embedding Models
96
+
97
+ | Model | Quality | Speed | When Used |
98
+ |-------|---------|-------|-----------|
99
+ | `Xenova/all-MiniLM-L6-v2` | High (true semantic) | ~3s for 1000 entries | Primary — `build-embeddings.mjs` uses this |
100
+ | `domain-aware-hash-v1` | Good (domain clustering) | <1s for 1000 entries | Fallback when Transformers.js unavailable |
101
+
102
+ **Neural embeddings (Xenova/all-MiniLM-L6-v2):**
103
+ - Uses `@xenova/transformers` with ONNX WASM runtime
104
+ - 384-dimensional vectors, L2-normalized
105
+ - True semantic understanding — "soft delete" matches "mark as deleted" without keyword overlap
106
+ - Loaded lazily on first use, cached for subsequent queries
107
+ - Ships with moflo; no additional install needed
108
+
109
+ **Domain-aware hash embeddings (fallback):**
110
+ - Custom SimHash-style algorithm with 12 domain clusters
111
+ - Domain clusters group related terms: `database` (orm, postgresql, entity, schema...), `frontend` (react, component, css...), `testing` (vitest, mock, expect...), etc.
112
+ - Multi-position hashing with bigram/trigram features
113
+ - Good at keyword-level matching but misses semantic paraphrases
114
+ - No external dependencies — always available
115
+
116
+ ### The Embedding Alignment Problem
117
+
118
+ **Critical rule:** Query embeddings MUST match stored embeddings. Computing cosine similarity between vectors from different models produces meaningless scores.
119
+
120
+ Both the search scripts and the MCP memory tools auto-detect the stored embedding model:
121
+
122
+ ```javascript
123
+ // Check what model stored entries predominantly use
124
+ const modelCheck = db.prepare(
125
+ `SELECT embedding_model, COUNT(*) as cnt FROM memory_entries
126
+ WHERE status = 'active' AND embedding IS NOT NULL
127
+ GROUP BY embedding_model ORDER BY cnt DESC LIMIT 1`
128
+ ).get();
129
+
130
+ // If stored embeddings are neural, use neural for query too
131
+ ```
132
+
133
+ Search also **filters out entries with mismatched `embedding_model`** — if the query uses neural embeddings, hash-embedded entries are skipped (and vice versa).
134
+
135
+ ### Domain Cluster Tuning
136
+
137
+ The hash fallback's domain clusters can be extended with project-specific terms. Add terms to the relevant cluster in the hash embedding function to improve keyword-level matching for your domain:
138
+
139
+ | Cluster | Example Terms |
140
+ |---------|--------------|
141
+ | `database` | your ORM, database engine, schema terms |
142
+ | `frontend` | UI framework, component library terms |
143
+ | `backend` | DI container, API framework terms |
144
+ | `testing` | test framework, assertion library terms |
145
+ | `security` | auth system, permission model terms |
146
+
147
+ ---
148
+
149
+ ## RAG Indexing Pipeline
150
+
151
+ ### How `index-guidance.mjs` Works
152
+
153
+ 1. **Scan** configured directories for `.md` files
154
+ 2. **Hash check** — Skip files whose content hash hasn't changed (unless `--force`)
155
+ 3. **Store full document** as `doc-{prefix}-{name}` (for complete retrieval)
156
+ 4. **Chunk on `##` headers** — Each H2 section becomes a separate entry
157
+ 5. **H3 subsections** become child chunks with parent H2 as context prefix
158
+ 6. **Force-split** sections over 4000 chars on paragraph boundaries
159
+ 7. **Build RAG metadata** for every chunk:
160
+
161
+ | Metadata Field | Purpose |
162
+ |---------------|---------|
163
+ | `parentDoc` | Link back to full document |
164
+ | `prevChunk` / `nextChunk` | Sequential navigation |
165
+ | `siblings` | All chunk keys from same document |
166
+ | `hierarchicalParent` / `hierarchicalChildren` | H2->H3 relationships |
167
+ | `contextBefore` / `contextAfter` | 20% overlapping text from adjacent chunks |
168
+
169
+ 8. **Prepend context** — Each chunk's searchable content includes overlap from neighbors
170
+ 9. **Stale cleanup** — After indexing, remove entries for files that no longer exist on disk
171
+ 10. **Background embedding** — Spawn `build-embeddings.mjs` in background to generate vectors
172
+
173
+ ### Configuring Indexed Directories
174
+
175
+ In `moflo.yaml`:
176
+
177
+ ```yaml
178
+ guidance:
179
+ directories:
180
+ - .claude/guidance
181
+ - docs/guides
182
+ ```
183
+
184
+ Default directories (when no config): `.claude/guidance`, `docs/guides`
185
+
186
+ Moflo also automatically indexes its own bundled guidance from `node_modules/moflo/.claude/guidance/` when installed as a library in a consumer project.
187
+
188
+ ---
189
+
190
+ ## Lessons Learned
191
+
192
+ ### Document Optimization
193
+
194
+ 1. **`**Purpose:**` lines are critical** — They're the single highest-impact addition for retrieval quality.
195
+ 2. **Headings are embeddings** — In a chunk-per-section system, the heading IS the embedding's primary signal. Generic headings are nearly useless.
196
+ 3. **Tables retrieve better than prose** — Claude parses structured data with higher accuracy.
197
+ 4. **Cross-references are the RAG graph** — Isolated documents can't be navigated.
198
+ 5. **Chunk size matters** — A 10,000-char section produces a diluted embedding. Splitting into focused sections triples the chance of matching specific queries.
199
+
200
+ ### Embedding Pipeline
201
+
202
+ 6. **Query embeddings MUST match stored embeddings** — This is the single most critical rule. Auto-detect and match.
203
+ 7. **Domain clusters need project-specific terms** — Generic NLP clusters miss project-specific terminology. Adding terms to domain clusters dramatically improves keyword-level matching.
204
+ 8. **Filter mismatched entries during search** — Mixed databases need explicit filtering by `embedding_model`.
205
+
206
+ ---
207
+
208
+ ## Replication Guide
209
+
210
+ To set up this system in a new project using moflo:
211
+
212
+ ### 1. Install Moflo
213
+
214
+ ```bash
215
+ npm install moflo
216
+ npx flo init
217
+ ```
218
+
219
+ ### 2. Create Guidance Documents
220
+
221
+ Create `.claude/guidance/` directory with markdown files following the optimization rules above:
222
+ - Every file has `**Purpose:**` line
223
+ - H2 sections with domain keywords in headings
224
+ - Tables for structured rules
225
+ - Cross-references between related docs
226
+ - 1000-4000 char sections
227
+
228
+ ### 3. Configure Indexing
229
+
230
+ In `moflo.yaml`:
231
+
232
+ ```yaml
233
+ guidance:
234
+ directories:
235
+ - .claude/guidance
236
+ - docs/guides
237
+
238
+ auto_index:
239
+ guidance: true
240
+ code_map: true
241
+ ```
242
+
243
+ ### 4. Index and Verify
244
+
245
+ ```bash
246
+ # Index documents
247
+ npx flo-index --force
248
+
249
+ # Test search quality
250
+ npx flo memory search --query "your domain query" --namespace guidance
251
+
252
+ # Verify from Claude Code via MCP
253
+ # mcp__claude-flow__memory_search query="your domain query" namespace="guidance"
254
+ ```
255
+
256
+ ---
257
+
258
+ ## See Also
259
+
260
+ - `.claude/guidance/memory-strategy.md` - Memory architecture and search commands
261
+ - `.claude/guidance/agent-bootstrap.md` - Subagent bootstrap guide
262
+ - `.claude/guidance/moflo.md` - Full CLI/MCP reference
@@ -0,0 +1,204 @@
1
+ # Memory & Semantic Search Strategy
2
+
3
+ **Purpose:** How memory, embeddings, and semantic search work in moflo. Reference when debugging memory issues, understanding the search pipeline, or configuring memory for a consumer project.
4
+
5
+ ---
6
+
7
+ ## Architecture Overview
8
+
9
+ ```
10
+ Source Files (.claude/guidance/, docs/)
11
+ |
12
+ v
13
+ index-guidance.mjs (chunking, RAG linking)
14
+ |
15
+ v
16
+ .swarm/memory.db (SQLite - entries + metadata)
17
+ |
18
+ v
19
+ build-embeddings.mjs (384-dim neural or hash vectors)
20
+ |
21
+ v
22
+ Search layer (cosine similarity - MCP, CLI, or script)
23
+ ```
24
+
25
+ ---
26
+
27
+ ## Key Files
28
+
29
+ | File | Purpose |
30
+ |------|---------|
31
+ | `.swarm/memory.db` | SQLite database with all entries, embeddings, metadata |
32
+ | `.swarm/code-map-hash.txt` | SHA-256 hash for incremental code map skip |
33
+ | `.claude-flow/neural/patterns.json` | ReasoningBank learned patterns |
34
+ | `bin/build-embeddings.mjs` | Generates 384-dim embeddings |
35
+ | `bin/index-guidance.mjs` | Indexes guidance files with RAG linking |
36
+ | `bin/generate-code-map.mjs` | Generates structural code map (projects, dirs, types, interfaces) |
37
+
38
+ ---
39
+
40
+ ## Embedding Strategy
41
+
42
+ **Primary model:** `Xenova/all-MiniLM-L6-v2` (384-dim, neural — used by `build-embeddings.mjs`)
43
+ **Fallback model:** `domain-aware-hash-v1` (384-dim, hash — used when Transformers.js unavailable)
44
+
45
+ **Critical rule:** Query embeddings MUST match stored embeddings. Both the search scripts and MCP tools auto-detect the stored model and generate matching query vectors. Cross-model cosine similarity is meaningless.
46
+
47
+ **Neural embeddings (primary):**
48
+ - Uses `@xenova/transformers` with ONNX WASM runtime
49
+ - True semantic understanding — "soft delete" matches "mark as deleted" without keyword overlap
50
+ - ~3s for 1000 entries, loaded lazily and cached
51
+
52
+ **Domain-aware hash (fallback):**
53
+ - 12 domain clusters with project-specific terms
54
+ - SimHash-style word encoding + bigram/trigram features
55
+ - Good keyword-level matching, misses semantic paraphrases
56
+ - No external dependencies — always available, <1s for 1000 entries
57
+
58
+ See `guidance-memory-strategy.md` for full embedding pipeline details.
59
+
60
+ ---
61
+
62
+ ## Search Commands
63
+
64
+ All methods auto-detect the stored embedding model and generate matching query vectors:
65
+
66
+ **MCP (Preferred):** `mcp__claude-flow__memory_search` — `query: "your query", namespace: "guidance"`
67
+
68
+ **CLI (Fallback):**
69
+ ```bash
70
+ npx flo memory search --query "your query" --namespace guidance
71
+ ```
72
+
73
+ **Search options:**
74
+
75
+ | Flag | Default | Purpose |
76
+ |------|---------|---------|
77
+ | `--namespace` | all | Filter to specific namespace |
78
+ | `--limit` | 5 | Number of results |
79
+ | `--threshold` | 0.3 | Minimum similarity score |
80
+ | `--json` | false | Output as JSON |
81
+
82
+ ### Code Map Search (for codebase navigation)
83
+
84
+ When you need to find where a type, service, entity, or component lives — search `code-map` BEFORE using Glob/Grep:
85
+
86
+ **MCP:** `mcp__claude-flow__memory_search` — `query: "payment service", namespace: "code-map"`
87
+
88
+ **What code-map contains:**
89
+
90
+ | Chunk prefix | What it answers |
91
+ |--------------|-----------------|
92
+ | `project:` | "What's in the api project?" |
93
+ | `dir:` | "What types are in the entities directory?" |
94
+ | `iface-map:` | "What implements IPaymentService?" |
95
+ | `type-index:` | "Where is Service defined?" |
96
+
97
+ **Regenerate:**
98
+ ```bash
99
+ npx flo-codemap # Incremental (skips if unchanged)
100
+ npx flo-codemap --force # Full rebuild
101
+ ```
102
+
103
+ ---
104
+
105
+ ## Database Schema
106
+
107
+ ```sql
108
+ memory_entries (
109
+ id TEXT PRIMARY KEY,
110
+ key TEXT NOT NULL, -- e.g., "chunk-guidance-core-0"
111
+ namespace TEXT, -- "guidance", "patterns", "default"
112
+ content TEXT, -- Full text content
113
+ embedding TEXT, -- JSON array of 384 floats
114
+ embedding_model TEXT, -- "Xenova/all-MiniLM-L6-v2" or "domain-aware-hash-v1"
115
+ embedding_dimensions INTEGER,-- 384
116
+ metadata TEXT, -- JSON: parentDoc, chunkTitle, prevChunk, nextChunk, siblings
117
+ tags TEXT, -- JSON array
118
+ status TEXT, -- "active"
119
+ created_at INTEGER,
120
+ updated_at INTEGER
121
+ )
122
+ ```
123
+
124
+ ---
125
+
126
+ ## RAG Linking (metadata fields)
127
+
128
+ Each chunk includes navigation metadata:
129
+
130
+ | Field | Purpose |
131
+ |-------|---------|
132
+ | `parentDoc` | Key of full document (e.g., `doc-guidance-core`) |
133
+ | `prevChunk` | Previous chunk key for sequential reading |
134
+ | `nextChunk` | Next chunk key |
135
+ | `siblings` | All chunk keys from same document |
136
+ | `hierarchicalParent` | H2 parent for H3 chunks |
137
+ | `hierarchicalChildren` | H3 children for H2 chunks |
138
+ | `contextBefore` | Overlapping text from previous chunk (20%) |
139
+ | `contextAfter` | Overlapping text from next chunk (20%) |
140
+
141
+ ---
142
+
143
+ ## Namespaces
144
+
145
+ | Namespace | Content | Notes |
146
+ |-----------|---------|-------|
147
+ | `guidance` | Indexed guidance and docs | Largest — includes bundled moflo guidance |
148
+ | `code-map` | Structural codebase index (projects, directories, types, interfaces) | Search BEFORE Glob/Grep for navigation |
149
+ | `patterns` | Learned patterns from sessions | Grows over time |
150
+ | `default` | Misc stored data | Small |
151
+
152
+ ---
153
+
154
+ ## Session Start Indexing
155
+
156
+ On every session start, moflo automatically runs three background indexers:
157
+
158
+ | Indexer | Command | Namespace | What it does |
159
+ |---------|---------|-----------|--------------|
160
+ | Guidance | `npx flo-index` | `guidance` | Chunks markdown, builds RAG links, generates embeddings |
161
+ | Code Map | `npx flo-codemap` | `code-map` | Scans source for types, interfaces, directories |
162
+ | Learning | `npx flo-learn` | `patterns` | Pattern research on codebase |
163
+
164
+ These are configured in the `SessionStart` hook in `.claude/settings.json` (set up by `npx flo init`).
165
+
166
+ Indexing is incremental by default — files whose content hash hasn't changed are skipped. Use `--force` to reindex everything.
167
+
168
+ ---
169
+
170
+ ## Troubleshooting
171
+
172
+ | Symptom | Cause | Fix |
173
+ |---------|-------|-----|
174
+ | Search returns irrelevant results | Query/stored embedding model mismatch | Auto-detected now; verify with `--verbose` flag |
175
+ | Low similarity scores | Query doesn't match domain terms | Include domain keywords in query |
176
+ | "Vector: No" in list | Entry lacks embedding | Run `npx flo-index --force` |
177
+ | Entries not found after adding file | Indexer hasn't run yet | Run `npx flo-index` or restart session |
178
+ | Bundled moflo guidance not indexed | Not installed as dependency | Only indexes when `node_modules/moflo/.claude/guidance/` exists |
179
+
180
+ ---
181
+
182
+ ## Verification Commands
183
+
184
+ ```bash
185
+ # Test semantic search
186
+ npx flo memory search --query "database entity pattern" --namespace guidance
187
+
188
+ # Force reindex all guidance
189
+ npx flo-index --force
190
+
191
+ # Force rebuild embeddings
192
+ npx flo-index --force
193
+
194
+ # Check entry count (requires better-sqlite3 or sql.js)
195
+ npx flo memory list --namespace guidance --limit 0
196
+ ```
197
+
198
+ ---
199
+
200
+ ## See Also
201
+
202
+ - `.claude/guidance/guidance-memory-strategy.md` - RAG system tuning guide
203
+ - `.claude/guidance/agent-bootstrap.md` - Subagent bootstrap guide
204
+ - `.claude/guidance/moflo.md` - Full CLI/MCP reference