@stjbrown/agent-knowledge 0.1.0-beta.6 → 0.1.0-beta.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/README.md +6 -0
- package/dist/{chunk-JYY7RNOT.js → chunk-3O3M2KG6.js} +2 -2
- package/dist/{chunk-2XPSIYWN.js → chunk-K2TO22OI.js} +838 -32
- package/dist/chunk-K2TO22OI.js.map +1 -0
- package/dist/{chunk-XWSZZDL3.js → chunk-UIDPQHJI.js} +3 -2
- package/dist/chunk-UIDPQHJI.js.map +1 -0
- package/dist/headless.js +2 -2
- package/dist/index.js +2 -2
- package/dist/main.js +4 -4
- package/dist/{tui-F6OQNA7T.js → tui-WYFA6QZ2.js} +7 -3
- package/dist/{tui-F6OQNA7T.js.map → tui-WYFA6QZ2.js.map} +1 -1
- package/package.json +11 -4
- package/dist/chunk-2XPSIYWN.js.map +0 -1
- package/dist/chunk-XWSZZDL3.js.map +0 -1
- /package/dist/{chunk-JYY7RNOT.js.map → chunk-3O3M2KG6.js.map} +0 -0
package/README.md
CHANGED
|
@@ -126,6 +126,12 @@ page-delimited text directly; larger documents use a cached Markdown artifact re
|
|
|
126
126
|
chunks. Raw PDF bytes never enter model history. Visual/OCR fallback remains optional and is not
|
|
127
127
|
enabled yet.
|
|
128
128
|
|
|
129
|
+
Janet also fetches known public HTTP(S) URLs through a provider-neutral local reader. It validates
|
|
130
|
+
every redirect, blocks private and metadata networks, never executes page JavaScript, and returns
|
|
131
|
+
readable Markdown through the same bounded artifact/chunk pattern. This baseline needs no API key.
|
|
132
|
+
Web search providers (such as Tavily, Firecrawl, or Exa) and interactive browser automation remain
|
|
133
|
+
separate, optional capabilities and are not enabled yet.
|
|
134
|
+
|
|
129
135
|
---
|
|
130
136
|
|
|
131
137
|
## The skills
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
bootJanet,
|
|
6
6
|
messageText,
|
|
7
7
|
messageToolNames
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-K2TO22OI.js";
|
|
9
9
|
|
|
10
10
|
// src/headless/run.ts
|
|
11
11
|
async function runHeadless(opts) {
|
|
@@ -124,4 +124,4 @@ Janet hit a snag: ${err.message}
|
|
|
124
124
|
export {
|
|
125
125
|
runHeadless
|
|
126
126
|
};
|
|
127
|
-
//# sourceMappingURL=chunk-
|
|
127
|
+
//# sourceMappingURL=chunk-3O3M2KG6.js.map
|