@gmickel/gno 1.29.6 → 1.30.4
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/README.md +15 -5
- package/browser-extension/artifacts/gno-browser-clipper-v1.30.4.zip +0 -0
- package/browser-extension/artifacts/gno-browser-clipper-v1.30.4.zip.sha256 +1 -0
- package/browser-extension/dist/chunk-627emwpj.js +75 -0
- package/browser-extension/dist/manifest.json +1 -1
- package/browser-extension/dist/preview.html +1 -1
- package/browser-extension/dist/service-worker.js +47 -22
- package/package.json +42 -39
- package/src/converters/adapters/officeparser/adapter.ts +7 -3
- package/src/core/network-boundary-inventory.ts +51 -0
- package/src/core/project-profile.ts +2 -2
- package/src/publish/encrypted-export.ts +1 -1
- package/src/serve/AGENTS.md +5 -1
- package/src/serve/CLAUDE.md +5 -1
- package/src/serve/fn112-routes.ts +232 -0
- package/src/serve/pdfjs-assets.ts +391 -0
- package/src/serve/public/components/ai-elements/code-block.tsx +28 -10
- package/src/serve/public/components/pdf/PdfPageView.tsx +428 -0
- package/src/serve/public/components/pdf/PdfToolbar.tsx +384 -0
- package/src/serve/public/components/pdf/PdfViewer.tsx +539 -0
- package/src/serve/public/components/pdf/pdf-viewer-deps.tsx +94 -0
- package/src/serve/public/globals.built.css +2 -2
- package/src/serve/public/globals.css +113 -0
- package/src/serve/public/hooks/use-pdf-document.ts +199 -0
- package/src/serve/public/hooks/use-pdf-pages.ts +1197 -0
- package/src/serve/public/lib/doc-asset-url.ts +57 -0
- package/src/serve/public/lib/math-sum-precise.ts +34 -0
- package/src/serve/public/lib/pdf.ts +772 -0
- package/src/serve/public/pages/DocView.tsx +295 -39
- package/src/serve/public/pages/doc-pdf-viewer.tsx +7 -0
- package/src/serve/routes/api.ts +154 -14
- package/src/serve/server.ts +190 -37
- package/src/serve/spa-bundle-source.ts +99 -0
- package/browser-extension/artifacts/gno-browser-clipper-v1.29.6.zip +0 -0
- package/browser-extension/artifacts/gno-browser-clipper-v1.29.6.zip.sha256 +0 -1
- package/browser-extension/dist/chunk-b2zm0jjd.js +0 -50
package/README.md
CHANGED
|
@@ -20,13 +20,23 @@ gno mcp install --target cursor # or claude-code, claude-desktop, zed, ...
|
|
|
20
20
|
|
|
21
21
|
## What you get
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
**One local index across everything you have.** Markdown, PDFs, Office documents, plain text, source code, and portable mail, calendar and transcript exports. Point it at a folder that mixes all of them and it handles the mix.
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
**Three ways to search it.** Keyword (BM25), semantic (vector), and hybrid — fused, reranked, and explainable, with structured intent controls and metadata filters. Ask for "how we handle retries" and find the paragraph about exponential backoff that never uses the word.
|
|
26
|
+
|
|
27
|
+
**A workspace, not a search box.** Cross-collection folder tree, per-tab browse context, a markdown editor, provenance-carrying quick capture, and a navigable knowledge graph.
|
|
28
|
+
|
|
29
|
+
**Answers with citations.** Ask a question in natural language and get an answer built from your own documents, with citations that resolve to the source passage.
|
|
30
|
+
|
|
31
|
+
**Six interfaces on one index.** A fast CLI, a web UI, a REST API, a TypeScript SDK, an MCP server, and a headless daemon — plus one-command install into ten agent clients. Nothing drifts between them.
|
|
32
|
+
|
|
33
|
+
**Optional hosted publishing** at [gno.sh](https://gno.sh) when a slice needs a URL.
|
|
34
|
+
|
|
35
|
+
No GPU required, no account required, no telemetry. Free and MIT licensed.
|
|
26
36
|
|
|
27
37
|
## Why not just another local RAG tool
|
|
28
38
|
|
|
29
|
-
|
|
39
|
+
The above is most of what people use day to day. Beyond it, four things here are different, and each one is measurable rather than adjectival:
|
|
30
40
|
|
|
31
41
|
| | What it does | Why it matters |
|
|
32
42
|
| :----------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
@@ -37,7 +47,7 @@ Most retrieval tools return a ranked list and leave the rest to optimism. Four t
|
|
|
37
47
|
|
|
38
48
|
Everything runs on your machine. Zero telemetry. The three network boundaries are explicit: downloading a model, configuring an HTTP inference endpoint, and uploading an artifact you exported for publishing.
|
|
39
49
|
|
|
40
|
-
**And
|
|
50
|
+
**And the receipts ship too.** Every benchmark behind these numbers is committed to the repository against a pinned corpus, with its limitations stated alongside the result, so you can replay it rather than take it on trust.
|
|
41
51
|
|
|
42
52
|
## Use it when
|
|
43
53
|
|
|
@@ -107,7 +117,7 @@ gno daemon --detach # headless indexing + resident MCP gateway
|
|
|
107
117
|
|
|
108
118
|
<!-- public-truth:current-version -->
|
|
109
119
|
|
|
110
|
-
> Current release: **v1.
|
|
120
|
+
> Current release: **v1.30.4** — see [CHANGELOG.md](./CHANGELOG.md)
|
|
111
121
|
|
|
112
122
|
<!-- /public-truth -->
|
|
113
123
|
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
306591bd80b19de1578e718299e03d524572dc156b3d97f4ea451b9ab3604d2e gno-browser-clipper-v1.30.4.zip
|