@antodevs/groundtruth 0.2.4 → 0.2.5
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 +7 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,12 +41,14 @@ Current-generation AI coding assistants (Claude Code, Antigravity, Cursor) suffe
|
|
|
41
41
|
|
|
42
42
|
**GroundTruth** acts as a transparent middleware layer that resolves this by dynamically injecting real-time, stack-specific documentation directly into the agent's context window prior to inference.
|
|
43
43
|
|
|
44
|
-
### The v0.2
|
|
44
|
+
### The v0.2 Engine: Global Cloud Intelligence
|
|
45
|
+
|
|
46
|
+
GroundTruth v0.2 introduces a paradigm shift in context quality and scalability:
|
|
47
|
+
- **Global Cloud Registry**: Bypasses search engines by querying a high-performance **Cloudflare Worker** registry. It covers the top ~200 frameworks with "Golden List" manual precision and over **10,000+ npm packages** via automated background indexing.
|
|
48
|
+
- **Jina Reader API Integration**: Seamlessly parses dynamic, JavaScript-rendered SPAs (like Vercel AI SDK, Next.js, and Svelte docs) into clean, LLM-optimized Markdown.
|
|
49
|
+
- **Automated "Gentle" Indexer**: A remote bot periodically synchronizes the latest documentation URLs from the npm ecosystem directly to the cloud registry, ensuring your context is never stale.
|
|
50
|
+
- **Zero-Config Resilience**: Operates locally with a strictly enforced 1.5s cloud timeout. If the registry is unreachable, it silently falls back to local Readability extraction or search.
|
|
45
51
|
|
|
46
|
-
GroundTruth v0.2.0 introduces a massive upgrade to content quality:
|
|
47
|
-
- **Jina Reader API Integration**: Parses dynamic, JavaScript-rendered SPAs (like Vercel AI SDK, Next.js, and Svelte docs) into clean, LLM-optimized Markdown.
|
|
48
|
-
- **Smart Source Registry**: Automatically bypasses search engines for the top 20+ frameworks (React, Svelte, Vue, Astro, etc.) and fetches their official documentation directly.
|
|
49
|
-
- **Readability Fallback**: Ensures reliable extraction even if the primary engine fails.
|
|
50
52
|
|
|
51
53
|
---
|
|
52
54
|
|
package/package.json
CHANGED