@apmantza/greedysearch-pi 1.7.0 → 1.7.3
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/CHANGELOG.md +23 -0
- package/LICENSE +21 -21
- package/README.md +35 -224
- package/{cdp.mjs → bin/cdp.mjs} +1004 -1004
- package/{coding-task.mjs → bin/coding-task.mjs} +392 -392
- package/{launch.mjs → bin/launch.mjs} +288 -288
- package/{search.mjs → bin/search.mjs} +1550 -1504
- package/extractors/bing-copilot.mjs +167 -167
- package/extractors/common.mjs +237 -237
- package/extractors/consent.mjs +273 -273
- package/extractors/google-ai.mjs +156 -156
- package/extractors/perplexity.mjs +141 -141
- package/extractors/selectors.mjs +52 -52
- package/index.ts +9 -9
- package/package.json +2 -5
- package/skills/greedy-search/SKILL.md +117 -117
- package/src/fetcher.mjs +589 -589
- package/src/formatters/coding.ts +68 -68
- package/src/formatters/sources.ts +116 -116
- package/src/formatters/synthesis.ts +91 -91
- package/src/github.mjs +323 -323
- package/src/utils/content.mjs +56 -56
- package/src/utils/helpers.ts +40 -40
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v1.7.3 (2026-04-10)
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
- **Force English in Google AI results** — Added `hl=en` query parameter to Google AI Mode search URL so responses are always returned in English, regardless of the user's IP-based region (fixes #1).
|
|
7
|
+
|
|
8
|
+
## v1.7.2 (2026-04-08)
|
|
9
|
+
|
|
10
|
+
### Release
|
|
11
|
+
- **Patch release** — version bump and npm package verification for the `bin/` runtime layout (`bin/search.mjs`, `bin/launch.mjs`, `bin/cdp.mjs`, `bin/coding-task.mjs`).
|
|
12
|
+
|
|
13
|
+
## v1.7.1 (2026-04-08)
|
|
14
|
+
|
|
15
|
+
### Performance
|
|
16
|
+
- **Bounded source-fetch concurrency** — source fetching now uses a small worker pool (default `2`, configurable via `GREEDY_FETCH_CONCURRENCY`) to reduce burstiness while keeping deep-research fast.
|
|
17
|
+
|
|
18
|
+
### Project structure
|
|
19
|
+
- **Runtime scripts moved to `bin/`** — `search.mjs`, `launch.mjs`, `cdp.mjs`, and `coding-task.mjs` now live under `bin/` for a cleaner repository root.
|
|
20
|
+
- **Path references updated** — extension runtime, tests, extractor shared utilities, and docs now point to `bin/*` paths.
|
|
21
|
+
|
|
22
|
+
### Packaging & docs
|
|
23
|
+
- **Package file list updated** — npm package now includes `bin/` directly instead of root script entries.
|
|
24
|
+
- **README simplified** — rewritten into a shorter, concise format with quick install, usage, and layout guidance.
|
|
25
|
+
|
|
3
26
|
## v1.6.5 (2026-04-04)
|
|
4
27
|
|
|
5
28
|
### Security
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
# GreedySearch for Pi
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Multi-engine AI web search for Pi via browser automation.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
Forked from [GreedySearch-claude](https://github.com/apmantza/GreedySearch-claude).
|
|
5
|
+
- No API keys
|
|
6
|
+
- Real browser results (Perplexity, Bing Copilot, Google AI)
|
|
7
|
+
- Optional Gemini synthesis with source grounding
|
|
10
8
|
|
|
11
9
|
## Install
|
|
12
10
|
|
|
@@ -14,248 +12,61 @@ Forked from [GreedySearch-claude](https://github.com/apmantza/GreedySearch-claud
|
|
|
14
12
|
pi install npm:@apmantza/greedysearch-pi
|
|
15
13
|
```
|
|
16
14
|
|
|
17
|
-
Or
|
|
15
|
+
Or from git:
|
|
18
16
|
|
|
19
17
|
```bash
|
|
20
18
|
pi install git:github.com/apmantza/GreedySearch-pi
|
|
21
19
|
```
|
|
22
20
|
|
|
23
|
-
##
|
|
24
|
-
|
|
25
|
-
Once installed, Pi gains a `greedy_search` tool with two modes.
|
|
26
|
-
|
|
27
|
-
```javascript
|
|
28
|
-
// Default: multi-engine + source fetch + synthesis
|
|
29
|
-
Greedy_search({ query: "What's new in React 19?" })
|
|
30
|
-
|
|
31
|
-
// Fast: single engine, no synthesis
|
|
32
|
-
greedy_search({ query: "What's new in React 19?", depth: "fast", engine: "perplexity" })
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
## Parameters
|
|
36
|
-
|
|
37
|
-
| Parameter | Type | Default | Description |
|
|
38
|
-
|-----------|------|---------|-------------|
|
|
39
|
-
| `query` | string | required | The search question |
|
|
40
|
-
| `engine` | string | `"all"` | `all`, `perplexity`, `bing`, `google`, `gemini` |
|
|
41
|
-
| `depth` | string | `"standard"` | `fast` (1 engine, no fetch), `standard` (3 engines + fetch + synthesis) |
|
|
42
|
-
| `fullAnswer` | boolean | `false` | Return complete answer (~3000+ chars) vs truncated preview (~300 chars) |
|
|
43
|
-
|
|
44
|
-
## Depth Levels
|
|
45
|
-
|
|
46
|
-
| Depth | Engines | Synthesis | Source Fetch | Time | Best For |
|
|
47
|
-
|-------|---------|-----------|--------------|------|----------|
|
|
48
|
-
| `fast` | 1 | no | no | 10-30s | Quick lookup, single perspective |
|
|
49
|
-
| `standard` | 3 | yes | yes (top 5) | 15-30s | **Default** -- balanced, grounded answers |
|
|
50
|
-
|
|
51
|
-
**Standard mode** (default for `engine: "all"`): Queries 3 engines, fetches content from top 5 sources via HTTP (with Readability extraction), synthesizes grounded answer with citations.
|
|
52
|
-
|
|
53
|
-
**Fast mode**: Single engine, no source fetching or synthesis. Good for quick checks.
|
|
54
|
-
|
|
55
|
-
## Engines
|
|
56
|
-
|
|
57
|
-
| Engine | Alias | Best for |
|
|
58
|
-
|--------|-------|----------|
|
|
59
|
-
| `all` | - | **Default** -- all 3 engines with synthesis + source fetch |
|
|
60
|
-
| `perplexity` | `p` | Technical Q&A, code explanations, documentation |
|
|
61
|
-
| `bing` | `b` | Recent news, Microsoft ecosystem |
|
|
62
|
-
| `google` | `g` | Broad coverage, multiple perspectives |
|
|
63
|
-
| `gemini` | `gem` | Google's AI with different training data |
|
|
64
|
-
|
|
65
|
-
## Streaming Progress
|
|
66
|
-
|
|
67
|
-
When using `engine: "all"`, the tool streams progress as each engine completes:
|
|
68
|
-
|
|
69
|
-
```
|
|
70
|
-
**Searching...** pending: perplexity, bing, google
|
|
71
|
-
**Searching...** done: perplexity, pending: bing, google
|
|
72
|
-
**Searching...** done: perplexity, done: bing, pending: google
|
|
73
|
-
**Searching...** done: perplexity, done: bing, done: google
|
|
74
|
-
**Synthesizing...** with Gemini
|
|
75
|
-
```
|
|
76
|
-
|
|
77
|
-
## Source Fetching (HTTP-First)
|
|
78
|
-
|
|
79
|
-
GreedySearch now uses **HTTP-first source fetching** with Mozilla Readability for content extraction:
|
|
80
|
-
|
|
81
|
-
- **HTTP**: Fast (~200-800ms), parallel, structured markdown output
|
|
82
|
-
- **Browser fallback**: Only when HTTP fails (bot protection, JS-heavy sites)
|
|
83
|
-
- **Typical success rate**: 90%+ of documentation sites work via HTTP
|
|
84
|
-
- **Speed improvement**: ~3x faster than browser-only fetching (15-30s vs 60-180s)
|
|
85
|
-
|
|
86
|
-
The old regex-based HTML stripping has been replaced with professional-grade content extraction that preserves document structure, code blocks, and headings.
|
|
87
|
-
|
|
88
|
-
## Smart Source Ranking
|
|
89
|
-
|
|
90
|
-
Sources are now ranked using query-aware domain boosting:
|
|
91
|
-
|
|
92
|
-
- **Query keywords** boost official docs (e.g., "react" → react.dev +10 points)
|
|
93
|
-
- **Consensus**: Sources found by multiple engines rank higher
|
|
94
|
-
- **Source type**: Official docs > repos > blogs > community
|
|
95
|
-
- **URL patterns**: `/docs/`, `/api/`, `/reference/` get extra boost
|
|
96
|
-
|
|
97
|
-
40+ tech stacks have preferred domain mappings including React, Node.js, Python, Rust, Go, Prisma, Supabase, and more.
|
|
98
|
-
|
|
99
|
-
## GitHub Content Extraction
|
|
100
|
-
|
|
101
|
-
GreedySearch handles GitHub URLs intelligently:
|
|
102
|
-
|
|
103
|
-
- **Blob URLs** (`/blob/`) — Automatically rewritten to `raw.githubusercontent.com` for instant raw file access
|
|
104
|
-
- **Tree/Root URLs** — Clones repo locally with `git clone --depth 1`, returns README preview + file tree for agent exploration
|
|
105
|
-
- **Benefits**: Real file contents (not rendered HTML), accurate line numbers, works with private repos via `gh` CLI auth
|
|
106
|
-
|
|
107
|
-
## Security
|
|
108
|
-
|
|
109
|
-
- **Private URL blocking** — Requests to localhost, RFC1918 addresses (10.x, 192.168.x), and .local/.internal domains are automatically blocked
|
|
110
|
-
- **Cross-host redirect detection** — Detects redirects to authentication/login pages and falls back to browser extraction
|
|
111
|
-
- **File protocol blocking** — `file://` URLs are rejected
|
|
112
|
-
|
|
113
|
-
## Examples
|
|
114
|
-
|
|
115
|
-
**Default research (multi-engine + sources + synthesis):**
|
|
116
|
-
|
|
117
|
-
```javascript
|
|
118
|
-
greedy_search({ query: "Best practices for monorepo structure" })
|
|
119
|
-
```
|
|
120
|
-
|
|
121
|
-
**Quick lookup (fast):**
|
|
122
|
-
|
|
123
|
-
```javascript
|
|
124
|
-
greedy_search({ query: "How to use async await in Python", depth: "fast", engine: "perplexity" })
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
**Compare tools:**
|
|
128
|
-
|
|
129
|
-
```javascript
|
|
130
|
-
greedy_search({ query: "Prisma vs Drizzle in 2026" })
|
|
131
|
-
```
|
|
132
|
-
|
|
133
|
-
**Debug an error:**
|
|
134
|
-
|
|
135
|
-
```javascript
|
|
136
|
-
greedy_search({ query: "Error: Cannot find module 'react-dom/client' Next.js 15" })
|
|
137
|
-
```
|
|
21
|
+
## Tools
|
|
138
22
|
|
|
139
|
-
|
|
23
|
+
- `greedy_search` - fast or grounded multi-engine search
|
|
24
|
+
- `coding_task` - browser-routed Gemini/Copilot coding assistance
|
|
140
25
|
|
|
141
|
-
|
|
26
|
+
## Quick usage
|
|
142
27
|
|
|
143
|
-
```
|
|
144
|
-
greedy_search({ query: "
|
|
28
|
+
```js
|
|
29
|
+
greedy_search({ query: "React 19 changes" })
|
|
30
|
+
greedy_search({ query: "Prisma vs Drizzle", engine: "all", depth: "fast" })
|
|
31
|
+
greedy_search({ query: "Best auth architecture 2026", engine: "all", depth: "deep" })
|
|
145
32
|
```
|
|
146
33
|
|
|
147
|
-
##
|
|
34
|
+
## Parameters (`greedy_search`)
|
|
148
35
|
|
|
149
|
-
-
|
|
150
|
-
-
|
|
36
|
+
- `query` (required)
|
|
37
|
+
- `engine`: `all` (default), `perplexity`, `bing`, `google`, `gemini`
|
|
38
|
+
- `depth`: `standard` (default), `fast`, `deep`
|
|
39
|
+
- `fullAnswer`: return full single-engine output instead of preview
|
|
151
40
|
|
|
152
|
-
##
|
|
41
|
+
## Depth modes
|
|
153
42
|
|
|
154
|
-
|
|
43
|
+
- `fast` - quickest, no synthesis/source fetching
|
|
44
|
+
- `standard` - balanced default for `engine: "all"` (synthesis + fetched sources)
|
|
45
|
+
- `deep` - strongest grounding and confidence metadata
|
|
155
46
|
|
|
156
|
-
|
|
157
|
-
node ~/.pi/agent/git/GreedySearch-pi/launch.mjs
|
|
158
|
-
```
|
|
159
|
-
|
|
160
|
-
Stop it when done:
|
|
47
|
+
## Runtime commands
|
|
161
48
|
|
|
162
49
|
```bash
|
|
163
|
-
node ~/.pi/agent/git/GreedySearch-pi/launch.mjs
|
|
50
|
+
node ~/.pi/agent/git/GreedySearch-pi/bin/launch.mjs
|
|
51
|
+
node ~/.pi/agent/git/GreedySearch-pi/bin/launch.mjs --status
|
|
52
|
+
node ~/.pi/agent/git/GreedySearch-pi/bin/launch.mjs --kill
|
|
164
53
|
```
|
|
165
54
|
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
```bash
|
|
169
|
-
node ~/.pi/agent/git/GreedySearch-pi/launch.mjs --status
|
|
170
|
-
```
|
|
171
|
-
|
|
172
|
-
## Troubleshooting
|
|
173
|
-
|
|
174
|
-
### "Chrome not found"
|
|
175
|
-
|
|
176
|
-
Set the path explicitly:
|
|
177
|
-
|
|
178
|
-
```bash
|
|
179
|
-
export CHROME_PATH="/path/to/chrome"
|
|
180
|
-
```
|
|
181
|
-
|
|
182
|
-
### "CDP timeout" or "Chrome may have crashed"
|
|
183
|
-
|
|
184
|
-
Restart GreedySearch Chrome:
|
|
185
|
-
|
|
186
|
-
```bash
|
|
187
|
-
node ~/.pi/agent/git/GreedySearch-pi/launch.mjs --kill
|
|
188
|
-
node ~/.pi/agent/git/GreedySearch-pi/launch.mjs
|
|
189
|
-
```
|
|
190
|
-
|
|
191
|
-
### Google / Bing "verify you're human"
|
|
192
|
-
|
|
193
|
-
The extension auto-clicks verification buttons and Cloudflare Turnstile challenges using broad keyword matching -- resilient to variations like "Verify you are human" or localised button text. For hard CAPTCHAs (image puzzles), solve manually in the Chrome window that opens.
|
|
194
|
-
|
|
195
|
-
### Parallel searches failing
|
|
196
|
-
|
|
197
|
-
Each search creates a fresh isolated browser tab that is closed after completion, allowing safe parallel execution without tab state conflicts.
|
|
198
|
-
|
|
199
|
-
### Search hangs
|
|
200
|
-
|
|
201
|
-
Chrome may be unresponsive. Restart it with `launch.mjs --kill` then `launch.mjs`.
|
|
202
|
-
|
|
203
|
-
### Sources are empty or junk links
|
|
55
|
+
## Requirements
|
|
204
56
|
|
|
205
|
-
|
|
57
|
+
- Chrome
|
|
58
|
+
- Node.js 22+
|
|
206
59
|
|
|
207
|
-
##
|
|
60
|
+
## Project layout
|
|
208
61
|
|
|
209
|
-
- `
|
|
210
|
-
- `
|
|
211
|
-
- `
|
|
212
|
-
- `
|
|
213
|
-
- `cdp.mjs` -- Chrome DevTools Protocol CLI for browser automation
|
|
214
|
-
- `skills/greedy-search/SKILL.md` -- skill file that guides the model on when/how to use greedy_search
|
|
62
|
+
- `bin/` - runtime CLIs (`search.mjs`, `launch.mjs`, `cdp.mjs`, `coding-task.mjs`)
|
|
63
|
+
- `extractors/` - engine-specific automation
|
|
64
|
+
- `src/` - ranking/fetching/formatting internals
|
|
65
|
+
- `skills/` - Pi skill metadata
|
|
215
66
|
|
|
216
67
|
## Changelog
|
|
217
68
|
|
|
218
|
-
|
|
219
|
-
- **Single-engine full answers by default** -- `engine: "google"` (or any single engine) now returns complete answers instead of truncated previews. Multi-engine (`all`) still truncates to save tokens during synthesis.
|
|
220
|
-
- **Codebase refactored** -- extracted 438 lines from `index.ts` into modular formatters (`src/formatters/`) reducing cognitive complexity from 360 to ~60 and maintainability index from 11.2 to ~40+
|
|
221
|
-
- **Removed codebase search confusion** -- clarified that `greedy_search` is WEB SEARCH ONLY (not for searching local code)
|
|
222
|
-
|
|
223
|
-
### v1.6.0 (2026-03-29)
|
|
224
|
-
- **Merged deep_research into greedy_search** -- new `depth` parameter: `fast` (1 engine), `standard` (3 engines + synthesis), `deep` (3 engines + fetch + synthesis + confidence)
|
|
225
|
-
- **Simpler API** -- one tool with clear speed/quality tradeoffs instead of separate tools with overlapping flags
|
|
226
|
-
- **Backward compatible** -- `deep_research` still works as alias, `--synthesize` and `--deep-research` flags still function
|
|
227
|
-
- **Updated documentation** -- README and skill docs now use `depth` parameter throughout
|
|
228
|
-
|
|
229
|
-
### v1.5.1 (2026-03-29)
|
|
230
|
-
- Fixed npm package -- added `.pi-lens/` and test files to `.npmignore`
|
|
231
|
-
|
|
232
|
-
### v1.5.0 (2026-03-29)
|
|
233
|
-
|
|
234
|
-
- **Code extraction fixed** -- `coding_task` now uses clipboard interception to preserve markdown code blocks (was losing them via DOM scraping)
|
|
235
|
-
- **Chrome targeting hardened** -- all tools now consistently target the dedicated GreedySearch Chrome via `CDP_PROFILE_DIR`, preventing fallback to user's main Chrome session
|
|
236
|
-
- **Shared utilities** -- extracted ~220 lines of duplicate code from extractors into `common.mjs` (cdp wrapper, tab management, clipboard interception)
|
|
237
|
-
- **Documentation leaner** -- skill documentation reduced 61% (180 -> 70 lines) while preserving all decision-making info
|
|
238
|
-
- **NO API KEYS** -- updated messaging to emphasize this works via browser automation, no API keys needed
|
|
239
|
-
|
|
240
|
-
### v1.4.2 (2026-03-25)
|
|
241
|
-
|
|
242
|
-
- **Fresh isolated tabs** -- each search now always creates a new `about:blank` tab via `Target.createTarget` and refreshes the CDP page cache immediately after, preventing SPA navigation failures and stale DOM state from prior queries
|
|
243
|
-
- **Regex-based citation extraction** -- all extractors (Perplexity, Bing, Gemini) now parse sources from clipboard Markdown links (`[title](url)`) instead of DOM selectors that break on UI updates
|
|
244
|
-
- **Relaxed verification detection** -- `consent.mjs` now uses broad keyword matching (`includes('verify')`, `includes('human')`) instead of anchored regexes, correctly catching button text variants like "Verify you are human" across Cloudflare, Microsoft, and generic modals
|
|
245
|
-
|
|
246
|
-
---
|
|
247
|
-
|
|
248
|
-
### v1.4.1
|
|
249
|
-
|
|
250
|
-
- **Fixed parallel synthesis** -- multiple `greedy_search` calls with `synthesize: true` now run safely in parallel. Each search creates a fresh Gemini tab that gets cleaned up after synthesis, preventing tab conflicts and "Uncaught" errors.
|
|
251
|
-
|
|
252
|
-
### v1.4.0
|
|
253
|
-
|
|
254
|
-
- **Grounded synthesis** -- Gemini now receives a normalized source registry with stable source IDs, agreement summaries, caveats, and cited claims
|
|
255
|
-
- **Real deep research** -- top sources are fetched before synthesis so deep research answers are grounded in fetched evidence, not just engine summaries
|
|
256
|
-
- **Richer source metadata** -- source output now includes canonical URLs, domains, source types, per-engine attribution, and confidence metadata
|
|
257
|
-
- **Cleaner tab lifecycle** -- temporary Perplexity, Bing, and Google tabs are closed after each fan-out search, and synthesis finishes on the Gemini tab
|
|
258
|
-
- **Isolated Chrome targeting** -- GreedySearch now refuses to fall back to your normal Chrome session, preventing stray remote-debugging prompts
|
|
69
|
+
See `CHANGELOG.md`.
|
|
259
70
|
|
|
260
71
|
## License
|
|
261
72
|
|