flowseeker 0.1.7 → 0.1.8
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/.env.example +7 -0
- package/CHANGELOG.md +131 -108
- package/README.md +288 -221
- package/dist/cli/flowCommand.js +175 -0
- package/dist/cli/main.js +1794 -0
- package/dist/cli/mcpServer.js +7 -1
- package/dist/cli/runEvaluation.js +178 -2
- package/dist/config/defaultConfig.js +11 -1
- package/dist/config/env.js +118 -0
- package/dist/config/loadConfig.js +18 -1
- package/dist/config/loadConfigFromPath.js +3 -1
- package/dist/extension.js +23 -0
- package/dist/gateway/embeddingProviders.js +852 -0
- package/dist/index/cacheStore.js +43 -0
- package/dist/index/configRouteDiscoveryProbe.js +288 -0
- package/dist/index/embeddingIndex.js +193 -0
- package/dist/index/graphIndex.js +460 -0
- package/dist/index/indexWatcher.js +86 -0
- package/dist/index/structuredExtractor.js +303 -12
- package/dist/index/treeSitterExtractor.js +264 -0
- package/dist/index/vectorStore.js +41 -0
- package/dist/index/workspaceIndex.js +591 -26
- package/dist/mcp/mcpTools.js +51 -0
- package/dist/pipeline/contextPack.js +3 -3
- package/dist/pipeline/deterministicReranker.js +358 -0
- package/dist/pipeline/evaluationMetrics.js +14 -2
- package/dist/pipeline/fileGroups.js +7 -1
- package/dist/pipeline/fileScanner.js +93 -11
- package/dist/pipeline/llmReranker.js +151 -0
- package/dist/pipeline/nodeScan.js +91 -12
- package/dist/pipeline/ranker.js +875 -16
- package/dist/pipeline/retrievalFusion.js +41 -0
- package/dist/pipeline/runHeadless.js +35 -0
- package/dist/pipeline/solvePacket.js +549 -42
- package/dist/pipeline/subsystem.js +21 -0
- package/docs/demo-screenshot-checklist.md +86 -0
- package/docs/marketplace-copy.md +92 -0
- package/docs/mcp-onboarding.md +191 -0
- package/package.json +633 -561
package/.env.example
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# FlowSeeker semantic retrieval API key.
|
|
2
|
+
# Copy this file to .env in the repo you want to scan.
|
|
3
|
+
# Semantic search is optional and OFF unless enabled in .flowseeker/config.json.
|
|
4
|
+
# Run: flowseeker semantic init --jina
|
|
5
|
+
# Then fill the key below.
|
|
6
|
+
|
|
7
|
+
FLOWSEEKER_EMBEDDING_API_KEY=
|
package/CHANGELOG.md
CHANGED
|
@@ -1,111 +1,134 @@
|
|
|
1
1
|
# FlowSeeker Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
4
|
-
|
|
5
|
-
-
|
|
6
|
-
-
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
- **Antigravity Native Chat note:** Documented current Antigravity behavior: selecting FlowSeeker may insert `@mcp:flowseeker:` without showing second-level command suggestions. FlowSeeker still works through natural language or direct tool names; autocomplete visibility is host-controlled.
|
|
26
|
-
- **npm MCP readiness:** Verified `flowseeker-mcp` builds from `dist/cli/mcpServer.js`, responds to `tools/list` and `prompts/list`, and is included by `npm pack --dry-run` for users who want MCP-only integration without installing the extension.
|
|
27
|
-
|
|
28
|
-
### 0.1.6 Files changed (vs 0.1.5 baseline)
|
|
29
|
-
`src/pipeline/evaluationMetrics.ts`, `src/cli/runEvaluation.ts`, `scripts/validate-eval-paths.js` (new), `scripts/render-icon.js` (new), `TODO-0.1.6.md` (new), `src/pipeline/taskUnderstanding.ts`, `src/pipeline/ranker.ts`, `src/pipeline/runPipeline.ts`, `src/cli/mcpServer.ts`, `src/mcp/mcpTools.ts`, `notes/Req5.txt`, `notes/mcp-config-paths.md`, `.gitignore`, `.vscodeignore`, `.npmignore` (new), `README.md`, `ARCHITECTURE.md`, `COMPATIBILITY.md`, `MARKETPLACE_DEMO.md`, `UPDATE_GUIDE.md`, `plan.md`
|
|
30
|
-
|
|
31
|
-
## 0.1.5 - Agent UX Stability, Cross-Host Compatibility, and MCP Server
|
|
32
|
-
|
|
33
|
-
- **MCP Server:** Added standalone MCP server (`flowseeker-mcp`) exposing FlowSeeker retrieval as MCP tools. Works with Cursor, Antigravity, Windsurf, Claude Desktop, and any MCP-compliant AI client.
|
|
34
|
-
- **MCP tools:** `flowseeker_retrieve` (full Solve Packet), `flowseeker_guide` (agent prompt), `flowseeker_files` (lightweight file list).
|
|
35
|
-
- **Cross-IDE notification:** FlowSeeker now detects Cursor, Antigravity, and Windsurf hosts at startup and shows a one-time guidance notification pointing users to the sidebar chat or MCP setup.
|
|
36
|
-
- **Headless agent prompt:** Added `agentPromptHeadless.ts` — agent solve prompt generator without VS Code dependency, used by MCP server and CLI.
|
|
37
|
-
- **Standalone CLI binary:** `flowseeker-mcp` bin for running the FlowSeeker MCP server outside of any IDE.
|
|
38
|
-
- **Host detection:** FlowSeeker now identifies the editor host at startup (VS Code, Cursor, Antigravity, Windsurf, VSCodium, Theia) and logs the identity + capabilities to the Output channel.
|
|
39
|
-
- **Runtime probing:** Beyond `typeof` checks, FlowSeeker now calls `vscode.lm.selectChatModels()` to count actual available models and vendors — a reliable signal of whether the host exposes usable AI models.
|
|
40
|
-
- **Tier table:** Single source of truth for host capabilities — `native-full` (VS Code/Insiders), `native-unverified` (Cursor, Antigravity, Windsurf — API exists but not confirmed to render), `sidebar-primary` (VSCodium, Theia — no API).
|
|
41
|
-
- **Shared command runner:** Core retrieve→ask flow extracted into `flowCommandRunner.ts` so both native chat and sidebar use the same logic.
|
|
42
|
-
- **Enhanced compatibility check:** `FlowSeeker: Check Host Compatibility` now shows host identity, tier, live model probe results, and offers human-in-the-loop verification for unverified hosts.
|
|
43
|
-
- **Status bar indicator:** Shows current tier mode (`FlowSeeker` for native, `FlowSeeker: Sidebar` for sidebar-only) with tooltip explaining why. Click opens compatibility report.
|
|
44
|
-
- **JSON prompt hardening:** Edit generation instruction moved to END of prompt (after context pack), strengthened wording, added `response_format: { type: "json_object" }` for OpenAI-compatible providers, improved JSON extraction from prose responses.
|
|
45
|
-
- **Per-file apply status:** Edits applied file-by-file with individual success/failure reporting including file name and reason.
|
|
46
|
-
- **Graded provider diagnosis:** `testProvider` classifies errors (401/403 credentials, 429 quota vs rate-limit, 5xx server, network, missing CLI) with actionable fix steps.
|
|
47
|
-
- **MCP server visibility:** Agent policy tooltip shows each MCP server name, type, and status (configured/disabled/misconfigured).
|
|
48
|
-
- **Feedback hardening:** Save confirmation includes file path and replay hint. CLI replay shows original top files for drift detection.
|
|
49
|
-
- Added `COMPATIBILITY.md` with detailed host compatibility matrix and model sharing explanation.
|
|
50
|
-
|
|
51
|
-
### 0.1.5 Files changed
|
|
52
|
-
`src/runtime/hostDetect.ts` (new), `src/runtime/hostTier.ts` (new), `src/runtime/statusBar.ts` (new), `src/agent/flowCommandRunner.ts` (new), `src/mcp/mcpTools.ts` (new), `src/pipeline/agentPromptHeadless.ts` (new), `src/cli/mcpServer.ts` (new), `src/commands/checkHostCompatibility.ts`, `src/extension.ts`, `src/ui/chatViewProvider.ts`, `src/gateway/aiGateway.ts`, `src/gateway/aiProviders.ts`, `src/gateway/agentPrompts.ts`, `src/gateway/editProposalStore.ts`, `src/cli/runReplay.ts`, `src/pipeline/tokenSavings.ts`, `package.json`, `COMPATIBILITY.md` (new)
|
|
53
|
-
|
|
54
|
-
## 0.1.4 - Token Proof Panel and Feedback Hardening
|
|
3
|
+
## 0.1.8 - Local Semantic, One-Command MCP, And Solve Packet UX
|
|
4
|
+
|
|
5
|
+
- Added full CLI entry points: `flowseeker`, `fs-guide`, `fs-auto`, `fs-files`, `fs-retrieve`, and `fs-mcp`.
|
|
6
|
+
- Added one-command MCP setup UX for Claude Code, Codex CLI, Cursor, and VS Code, with `flowseeker doctor --mcp` self-checks.
|
|
7
|
+
- Added optional local semantic embedding support through the lightweight core package plus the separate `flowseeker-local` model/runtime package path.
|
|
8
|
+
- Added provider-neutral hosted semantic setup with `flowseeker semantic init --openai-compatible` and `flowseeker semantic check --test`.
|
|
9
|
+
- Improved Solve Packet output with Retrieval Mode, First 3 Files To Open, Why These Files, Candidate Flow, Do Not Edit Yet, Missing Links, and Verification Command Hints.
|
|
10
|
+
- Hardened read-only/investigation Solve Packets so they use context labels instead of edit-surface labels.
|
|
11
|
+
- Added release-candidate proof gates for CLI/MCP output, golden precision, side-effect safety, package hygiene, local package hygiene, and semantic diagnostics.
|
|
12
|
+
- Accepted golden precision gates for 0.1.8: Top-1 6, Top-3 12, Top-5 14, Top-10 19, Expected edit primary hits 12, Expected read hits 2, must-not violations 0, semantic active 8/8 UMS tasks.
|
|
13
|
+
|
|
14
|
+
## 0.1.8 Public Proof, README, And MCP Onboarding
|
|
15
|
+
|
|
16
|
+
- Reworked README wording around evidence-backed capabilities and known limits.
|
|
17
|
+
- Added MCP onboarding snippets for Cursor, Antigravity, Windsurf, Claude Desktop, and VS Code/Copilot in `docs/mcp-onboarding.md`.
|
|
18
|
+
- Added demo/screenshot review checklist in `docs/demo-screenshot-checklist.md` so public assets stay aligned with current Solve Packet 3.0 output.
|
|
19
|
+
- Added marketplace/OpenVSX/NPM copy source in `docs/marketplace-copy.md`.
|
|
20
|
+
- Public proof commands:
|
|
21
|
+
- `npm.cmd run compile --silent`
|
|
22
|
+
- `npm.cmd run test:manifest`
|
|
23
|
+
- `node scripts/analyze-phase08-public-proof.js --out-md .flowseeker/reports/phase08-8a-public-proof.md --out-json .flowseeker/reports/phase08-8a-public-proof.json`
|
|
24
|
+
- Current public limits remain explicit: no sub-second guarantee, no default AI/LLM ranking, semantic search disabled by default, tree-sitter disabled by default for public benchmark claims, graph expansion disabled in production, and no monorepo/LSP/git-history guarantee.
|
|
55
25
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
-
|
|
59
|
-
-
|
|
60
|
-
-
|
|
61
|
-
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
-
|
|
71
|
-
-
|
|
72
|
-
-
|
|
73
|
-
-
|
|
74
|
-
-
|
|
75
|
-
-
|
|
76
|
-
-
|
|
77
|
-
-
|
|
78
|
-
-
|
|
79
|
-
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
-
|
|
87
|
-
-
|
|
88
|
-
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
-
|
|
93
|
-
-
|
|
94
|
-
-
|
|
95
|
-
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
- **
|
|
100
|
-
- **
|
|
101
|
-
- **
|
|
102
|
-
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
-
|
|
110
|
-
-
|
|
111
|
-
-
|
|
26
|
+
## 0.1.7 - Update Notice and Deterministic Accuracy
|
|
27
|
+
|
|
28
|
+
- **Update notice:** Extension checks npm for newer FlowSeeker versions at most once per day, shows a non-modal update notice, supports dismissing a specific version, and fails silently when offline.
|
|
29
|
+
- **MCP CLI version checks:** `flowseeker-mcp --version` prints the package version, and `flowseeker-mcp --check-updates` checks npm explicitly without running the MCP stdio server.
|
|
30
|
+
- **MCP protocol safety:** Normal MCP server startup does not perform passive network update checks and keeps stdout reserved for JSON-RPC only.
|
|
31
|
+
- **Caller/callee candidate expansion:** Workspace index now records extracted call names and uses symbol/call relationships to expand candidate files beyond imports.
|
|
32
|
+
- **Generated/noise downranking:** Generated folders, snapshots, mocks, protobuf/gRPC outputs, bundles, framework build folders, and similar noise paths are downranked without being excluded.
|
|
33
|
+
- **High-precision task terms:** Quoted literals and route-like paths are preserved as literal retrieval terms before broad keyword matching.
|
|
34
|
+
|
|
35
|
+
### 0.1.7 Files changed
|
|
36
|
+
`src/utils/updateChecker.ts` (new), `src/extension.ts`, `src/cli/mcpServer.ts`, `src/index/workspaceIndex.ts`, `src/pipeline/taskUnderstanding.ts`, `package.json`, `package-lock.json`, `CHANGELOG.md`, `README.md`, `COMPATIBILITY.md`
|
|
37
|
+
|
|
38
|
+
## 0.1.6 - Accuracy, MCP Native Chat, and Package Readiness
|
|
39
|
+
|
|
40
|
+
- **Quality Score:** Added single composite metric `computeQualityScore()` combining hit@10, context coverage, avoid-hit rate, MRR, and token reduction into one comparable number (Quality = 0.35·Hit@10 + 0.25·Coverage + 0.20·(1−AvoidHitRate) + 0.10·MRR + 0.10·TokenReduction). Printed in every headless evaluation summary line.
|
|
41
|
+
- **Benchmark expansion:** Wired up 22 fixture repos with 697 labeled cases (including 2 negative cases for AvoidHitRate) via `.flowseeker/eval-benchmark-mega.json`. Added `scripts/validate-eval-paths.js` — deterministic ground-truth checker that mirrors runtime path matching, with `--fix` mode to prune dead paths. Recorded baseline Quality Score at 0.741.
|
|
42
|
+
- **Negative term utilization:** Extended `detectNegativeTerms()` with `except` and `ngoại trừ` (Vietnamese exclusion) cues. Existing ranker penalty (-24 score + contrastContext) already wired via `applyTaskMetadata()`. Tested against the full benchmark; zero regression at the conservative pattern set.
|
|
43
|
+
- **Active file context boost:** Ranker now accepts optional `editorContext` (active file, directory siblings, recently opened tabs) and applies small score boosts (+15 active file, +5 sibling dir, +8 recent tabs). Editor context is purely optional — headless evaluation is completely unaffected.
|
|
44
|
+
- **Deterministic eval validator:** New `scripts/validate-eval-paths.js` validates every expected/avoid/group path resolves to a real fixture file. Mirrors runtime `pathMatches()` semantics (exact, suffix, substring). `--fix` mode prunes dead paths and drops unmeasurable cases.
|
|
45
|
+
- **MCP prompt discovery:** Standalone MCP server now advertises `prompts` capability and supports `prompts/list` + `prompts/get` for `retrieve`, `guide`, and `files`. These prompts map to the stable tools `flowseeker_retrieve`, `flowseeker_guide`, and `flowseeker_files` so Native Chat hosts can show short suggestions when their UI supports MCP prompt/tool autocomplete.
|
|
46
|
+
- **MCP metadata polish:** Tightened tool descriptions and input schema wording for truncated IDE suggestion UIs while keeping the stable tool names unchanged.
|
|
47
|
+
- **Cross-IDE config correctness:** Fixed MCP help/docs to use `mcpServers` for Cursor, Antigravity, Windsurf, Claude Desktop, and `servers` only for VS Code/Copilot `.vscode/mcp.json`.
|
|
48
|
+
- **Antigravity Native Chat note:** Documented current Antigravity behavior: selecting FlowSeeker may insert `@mcp:flowseeker:` without showing second-level command suggestions. FlowSeeker still works through natural language or direct tool names; autocomplete visibility is host-controlled.
|
|
49
|
+
- **npm MCP readiness:** Verified `flowseeker-mcp` builds from `dist/cli/mcpServer.js`, responds to `tools/list` and `prompts/list`, and is included by `npm pack --dry-run` for users who want MCP-only integration without installing the extension.
|
|
50
|
+
|
|
51
|
+
### 0.1.6 Files changed (vs 0.1.5 baseline)
|
|
52
|
+
`src/pipeline/evaluationMetrics.ts`, `src/cli/runEvaluation.ts`, `scripts/validate-eval-paths.js` (new), `scripts/render-icon.js` (new), `TODO-0.1.6.md` (new), `src/pipeline/taskUnderstanding.ts`, `src/pipeline/ranker.ts`, `src/pipeline/runPipeline.ts`, `src/cli/mcpServer.ts`, `src/mcp/mcpTools.ts`, `notes/Req5.txt`, `notes/mcp-config-paths.md`, `.gitignore`, `.vscodeignore`, `.npmignore` (new), `README.md`, `ARCHITECTURE.md`, `COMPATIBILITY.md`, `MARKETPLACE_DEMO.md`, `UPDATE_GUIDE.md`, `plan.md`
|
|
53
|
+
|
|
54
|
+
## 0.1.5 - Agent UX Stability, Cross-Host Compatibility, and MCP Server
|
|
55
|
+
|
|
56
|
+
- **MCP Server:** Added standalone MCP server (`flowseeker-mcp`) exposing FlowSeeker retrieval as MCP tools. Works with Cursor, Antigravity, Windsurf, Claude Desktop, and any MCP-compliant AI client.
|
|
57
|
+
- **MCP tools:** `flowseeker_retrieve` (full Solve Packet), `flowseeker_guide` (agent prompt), `flowseeker_files` (lightweight file list).
|
|
58
|
+
- **Cross-IDE notification:** FlowSeeker now detects Cursor, Antigravity, and Windsurf hosts at startup and shows a one-time guidance notification pointing users to the sidebar chat or MCP setup.
|
|
59
|
+
- **Headless agent prompt:** Added `agentPromptHeadless.ts` — agent solve prompt generator without VS Code dependency, used by MCP server and CLI.
|
|
60
|
+
- **Standalone CLI binary:** `flowseeker-mcp` bin for running the FlowSeeker MCP server outside of any IDE.
|
|
61
|
+
- **Host detection:** FlowSeeker now identifies the editor host at startup (VS Code, Cursor, Antigravity, Windsurf, VSCodium, Theia) and logs the identity + capabilities to the Output channel.
|
|
62
|
+
- **Runtime probing:** Beyond `typeof` checks, FlowSeeker now calls `vscode.lm.selectChatModels()` to count actual available models and vendors — a reliable signal of whether the host exposes usable AI models.
|
|
63
|
+
- **Tier table:** Single source of truth for host capabilities — `native-full` (VS Code/Insiders), `native-unverified` (Cursor, Antigravity, Windsurf — API exists but not confirmed to render), `sidebar-primary` (VSCodium, Theia — no API).
|
|
64
|
+
- **Shared command runner:** Core retrieve→ask flow extracted into `flowCommandRunner.ts` so both native chat and sidebar use the same logic.
|
|
65
|
+
- **Enhanced compatibility check:** `FlowSeeker: Check Host Compatibility` now shows host identity, tier, live model probe results, and offers human-in-the-loop verification for unverified hosts.
|
|
66
|
+
- **Status bar indicator:** Shows current tier mode (`FlowSeeker` for native, `FlowSeeker: Sidebar` for sidebar-only) with tooltip explaining why. Click opens compatibility report.
|
|
67
|
+
- **JSON prompt hardening:** Edit generation instruction moved to END of prompt (after context pack), strengthened wording, added `response_format: { type: "json_object" }` for OpenAI-compatible providers, improved JSON extraction from prose responses.
|
|
68
|
+
- **Per-file apply status:** Edits applied file-by-file with individual success/failure reporting including file name and reason.
|
|
69
|
+
- **Graded provider diagnosis:** `testProvider` classifies errors (401/403 credentials, 429 quota vs rate-limit, 5xx server, network, missing CLI) with actionable fix steps.
|
|
70
|
+
- **MCP server visibility:** Agent policy tooltip shows each MCP server name, type, and status (configured/disabled/misconfigured).
|
|
71
|
+
- **Feedback hardening:** Save confirmation includes file path and replay hint. CLI replay shows original top files for drift detection.
|
|
72
|
+
- Added `COMPATIBILITY.md` with detailed host compatibility matrix and model sharing explanation.
|
|
73
|
+
|
|
74
|
+
### 0.1.5 Files changed
|
|
75
|
+
`src/runtime/hostDetect.ts` (new), `src/runtime/hostTier.ts` (new), `src/runtime/statusBar.ts` (new), `src/agent/flowCommandRunner.ts` (new), `src/mcp/mcpTools.ts` (new), `src/pipeline/agentPromptHeadless.ts` (new), `src/cli/mcpServer.ts` (new), `src/commands/checkHostCompatibility.ts`, `src/extension.ts`, `src/ui/chatViewProvider.ts`, `src/gateway/aiGateway.ts`, `src/gateway/aiProviders.ts`, `src/gateway/agentPrompts.ts`, `src/gateway/editProposalStore.ts`, `src/cli/runReplay.ts`, `src/pipeline/tokenSavings.ts`, `package.json`, `COMPATIBILITY.md` (new)
|
|
76
|
+
|
|
77
|
+
## 0.1.4 - Token Proof Panel and Feedback Hardening
|
|
78
|
+
|
|
79
|
+
- Added sidebar proof panel showing token proof status (complete/partial/unavailable) with differentiated visual states per retrieval card.
|
|
80
|
+
- Added context coverage display in the proof panel showing found/missing required slots.
|
|
81
|
+
- Added proof warnings in the metric card for partial scans, capped evidence, and missing slots.
|
|
82
|
+
- Added one-click "Copy token proof" action that copies a formatted token savings summary including proof status, coverage, and warnings.
|
|
83
|
+
- Feedback save confirmation now includes the saved file path and a replay hint.
|
|
84
|
+
- CLI replay reports now show original top files from feedback snapshots alongside current top files for drift visibility.
|
|
85
|
+
|
|
86
|
+
## 0.1.3 - Token Savings Proof
|
|
87
|
+
|
|
88
|
+
- Added measured token savings to FlowSeeker results, comparing Solve Packet tokens against indexed workspace text tokens.
|
|
89
|
+
- Uses local BPE token counting with `cl100k_base` for headless, sidebar, and report metrics, with heuristic fallback only when tokenization fails.
|
|
90
|
+
- Counts the actual prompt through VS Code `LanguageModelChat.countTokens()` when the selected native chat model exposes token counting.
|
|
91
|
+
- Added generic Context Blueprint coverage so FlowSeeker checks required flow slots for each task shape instead of ranking only by keyword score.
|
|
92
|
+
- Updated Solve Packet generation to preserve required context slots, report missing links, and mark likely noise.
|
|
93
|
+
- Improved plan approval safety: responses that only ask to read more files are no longer treated as approvable plans.
|
|
94
|
+
- Added bounded context expansion and retry when the AI explains that the first Solve Packet is insufficient.
|
|
95
|
+
- Added structured-edit handling with diff preview, scope lock, apply actions, and verification command proposals.
|
|
96
|
+
- Added sidebar chat history, provider profiles, model switching, provider model fetch, and compact quota/usage status.
|
|
97
|
+
- Added agent controls for workspace edit approval, safe command proposals, MCP/tool proposals, and user-defined prompt rules.
|
|
98
|
+
- Added host compatibility reporting for Native Chat, Language Model, and MCP support across VS Code-compatible editors.
|
|
99
|
+
- Added sidebar feedback capture and real-world replay support so retrieval misses can become regression cases.
|
|
100
|
+
- Normalized feedback kinds from the sidebar and legacy records so replay metrics classify missing context consistently.
|
|
101
|
+
- Shows compact token reduction in native VS Code Chat after retrieval.
|
|
102
|
+
- Added a sidebar chat fallback for VS Code-compatible editors that do not expose the native VS Code Chat participant API.
|
|
103
|
+
- Added token savings and context coverage metrics to headless and VS Code evaluation reports alongside hit@K, MRR, and scan duration.
|
|
104
|
+
- Keeps token reduction wording technical, with retrieval quality measured separately.
|
|
105
|
+
|
|
106
|
+
## 0.1.2 - Scan UX and Logo Polish
|
|
107
|
+
|
|
108
|
+
- Refined the FlowSeeker logo assets for extension icon, activity bar, and native chat usage.
|
|
109
|
+
- Kept chat scan progress compact by updating status lines instead of flooding the conversation.
|
|
110
|
+
- Improved AI plan language behavior so generated plans follow the user's request language when set to auto.
|
|
111
|
+
- Tightened package excludes so Marketplace builds do not ship local caches, source maps, or reference raster assets.
|
|
112
|
+
|
|
113
|
+
## 0.1.1 - Large Repo Stabilization
|
|
114
|
+
|
|
115
|
+
- Added persistent workspace indexing and dependency expansion to reduce full-codebase scans.
|
|
116
|
+
- Added scan budgets for max files, bytes, duration, raw evidence, and indexed candidates.
|
|
117
|
+
- Improved Solve Packet output with clearer trace, context buckets, uncertainty notes, and agent guidance.
|
|
118
|
+
- Added headless evaluation support for repeatable retrieval tests across sample workspaces.
|
|
119
|
+
|
|
120
|
+
## 0.1.0 - Initial Release
|
|
121
|
+
|
|
122
|
+
- **Core retrieval pipeline**: task understanding, workspace indexing, universal text scan, evidence ranking, evidence graph with framework edges
|
|
123
|
+
- **Solve Packet v1**: structured reasoning context with flow buckets (entry/handler/service/schema/tests), problem hypothesis, noise risk detection, missing link identification, agent instructions
|
|
124
|
+
- **Native VS Code Chat participant**: `@flowseeker /guide`, `/auto`, `/apply` commands with plan-first editing guardrail
|
|
125
|
+
- **Framework adapters**: Laravel (PHP), NestJS (TypeScript), Express (JavaScript/TypeScript) - route->controller, event->listener, controller->service, view rendering, DI injection edges
|
|
126
|
+
- **Structured extraction**: regex-based code structure extraction for 11 languages (TS, JS, Python, PHP, Java, Go, C#, Ruby, Rust, Kotlin) - declarations, calls, string literals, comments
|
|
127
|
+
- **Scope lock**: edits are validated against approved plan scope before applying
|
|
128
|
+
- **Diff preview**: file-level change preview before applying structured edits
|
|
129
|
+
- **Verification loop**: auto-detection of test/lint/typecheck commands after edits, with pass/fail reporting
|
|
130
|
+
- **Headless evaluation**: repeatable retrieval benchmarking with hit@K, MRR, expected-path coverage
|
|
131
|
+
- **VS Code Language Model API integration**: works with the selected VS Code Chat model; AI Gateway fallback
|
|
132
|
+
- **Result sidebar**: ranked evidence tree with checkbox selection, context pack copy, agent prompt copy
|
|
133
|
+
- **Configuration**: `.flowseeker/config.json` workspace config + VS Code settings overrides
|
|
134
|
+
- **Scan budget safety**: max files, max bytes, max time limits prevent runaway scans on large repos
|