@stjbrown/agent-knowledge 0.1.0-beta.5 → 0.1.0-beta.7
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 +14 -1
- package/dist/{chunk-EBMACGJV.js → chunk-GR2RFQE4.js} +1236 -36
- package/dist/chunk-GR2RFQE4.js.map +1 -0
- package/dist/{chunk-GWV4DABI.js → chunk-LQOMGCIP.js} +2 -2
- package/dist/{chunk-PUTDZMUI.js → chunk-PRZR6RDP.js} +2 -2
- package/dist/headless.js +2 -2
- package/dist/index.js +2 -2
- package/dist/main.js +4 -4
- package/dist/{tui-6F3IBI3J.js → tui-QMMAC7W7.js} +7 -3
- package/dist/{tui-6F3IBI3J.js.map → tui-QMMAC7W7.js.map} +1 -1
- package/package.json +9 -1
- package/skills/kb-ingest/SKILL.md +6 -3
- package/dist/chunk-EBMACGJV.js.map +0 -1
- /package/dist/{chunk-GWV4DABI.js.map → chunk-LQOMGCIP.js.map} +0 -0
- /package/dist/{chunk-PUTDZMUI.js.map → chunk-PRZR6RDP.js.map} +0 -0
package/README.md
CHANGED
|
@@ -121,6 +121,17 @@ Janet is built on [Mastra](https://mastra.ai) and lives in
|
|
|
121
121
|
(published as `@stjbrown/agent-knowledge`, bins `janet` + `ding`). She also reports lifecycle state
|
|
122
122
|
natively to [Herdr](https://herdr.dev) when run inside a Herdr pane.
|
|
123
123
|
|
|
124
|
+
Janet reads local PDFs through a dedicated TypeScript extractor. Small documents return
|
|
125
|
+
page-delimited text directly; larger documents use a cached Markdown artifact read in bounded
|
|
126
|
+
chunks. Raw PDF bytes never enter model history. Visual/OCR fallback remains optional and is not
|
|
127
|
+
enabled yet.
|
|
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
|
+
|
|
124
135
|
---
|
|
125
136
|
|
|
126
137
|
## The skills
|
|
@@ -211,7 +222,7 @@ the interactive view. Start at
|
|
|
211
222
|
## Layout
|
|
212
223
|
|
|
213
224
|
```
|
|
214
|
-
skills/ # source of truth for
|
|
225
|
+
skills/ # source of truth for the portable skills.sh / plugin collection
|
|
215
226
|
kb/ # hub: SKILL.md + references/ (SPEC, glossary, trust-model) + templates/ + example-bundle/
|
|
216
227
|
kb-init/ kb-ingest/ kb-query/
|
|
217
228
|
kb-lint/ # + scripts/conformance.mjs (deterministic §9 check, zero-dep)
|
|
@@ -219,6 +230,8 @@ skills/ # source of truth for both Janet and the skills.sh / plu
|
|
|
219
230
|
knowledge/ # this project's own OKF bundle (self-documenting)
|
|
220
231
|
packages/
|
|
221
232
|
janet/ # the standalone agent (published as "agent-knowledge")
|
|
233
|
+
src/skills/ # Janet-only inline skills (not exposed to skills installers)
|
|
234
|
+
src/tools/ # Janet-only deterministic tools
|
|
222
235
|
kb-tools/ # deterministic TS conformance + graph (compiles the committed skill .mjs)
|
|
223
236
|
.claude-plugin/ # plugin manifest
|
|
224
237
|
```
|