@hraness/kb 0.17.1 → 0.17.2
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 +20 -11
- package/package.json +5 -4
- package/skills/kb/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -3,12 +3,13 @@
|
|
|
3
3
|
|
|
4
4
|
[](https://skills.sh/hraness/kb)
|
|
5
5
|
|
|
6
|
-
a knowledge base for coding agents
|
|
6
|
+
a knowledge base for coding agents, built from Markdown, backlinks, semantic
|
|
7
|
+
search, and Git context.
|
|
7
8
|
|
|
8
9
|
## install
|
|
9
10
|
|
|
10
11
|
```sh
|
|
11
|
-
bun add --global @hraness/kb@0.17.
|
|
12
|
+
bun add --global @hraness/kb@0.17.2
|
|
12
13
|
```
|
|
13
14
|
|
|
14
15
|
## about
|
|
@@ -44,7 +45,9 @@ kb history search packages/parser --root . --repo .. --json
|
|
|
44
45
|
|
|
45
46
|
## links
|
|
46
47
|
|
|
47
|
-
[
|
|
48
|
+
[npm](https://www.npmjs.com/package/@hraness/kb) ·
|
|
49
|
+
[github](https://github.com/hraness/kb) ·
|
|
50
|
+
[overview](https://hraness.com/kb)
|
|
48
51
|
<!-- hraness:kb-landing:end -->
|
|
49
52
|
|
|
50
53
|
## A knowledge base for your coding agents
|
|
@@ -165,6 +168,12 @@ Start with a short inherited `AGENTS.md` path for rules whose omission would mak
|
|
|
165
168
|
|
|
166
169
|
Treat the knowledge base as repository-adjacent durable memory. Authored Markdown and Git are the record; catalogs, indexes, embeddings, and graph views are replaceable ways to find and inspect it. Checks can validate structure, captures can preserve a selected surface, and similarity can suggest candidates. None of those mechanisms proves that a source is trustworthy or an explanation is still true. People and agents must revise the knowledge as the repository changes.
|
|
167
170
|
|
|
171
|
+
## Upgrade to v0.17.2
|
|
172
|
+
|
|
173
|
+
Version 0.17.2 improves package discovery through focused npm keywords, a more
|
|
174
|
+
specific README opening, and direct links between npm, GitHub, and the project
|
|
175
|
+
overview. Runtime APIs and package behavior are unchanged.
|
|
176
|
+
|
|
168
177
|
## Upgrade to v0.17.1
|
|
169
178
|
|
|
170
179
|
Version 0.17.1 adds the public `@hraness/kb` npm installation path without
|
|
@@ -208,7 +217,7 @@ Copy this prompt into Codex, Claude Code, or another coding agent:
|
|
|
208
217
|
|
|
209
218
|
```text
|
|
210
219
|
Install the `kb` Agent Skill from hraness/kb with the standard skills CLI. Use
|
|
211
|
-
the skill's runtime instructions to install the exact `@hraness/kb@0.17.
|
|
220
|
+
the skill's runtime instructions to install the exact `@hraness/kb@0.17.2`
|
|
212
221
|
registry release only when the command is missing. Verify it with `kb doctor`
|
|
213
222
|
and `kb --help`, but do not initialize or modify a vault until I ask.
|
|
214
223
|
```
|
|
@@ -224,17 +233,17 @@ Both commands discover the same `kb` skill and install it into the selected
|
|
|
224
233
|
agent runner. Skill installation is inert: it does not initialize a vault,
|
|
225
234
|
refresh a catalog, or edit Markdown. When invoked, the skill uses an existing
|
|
226
235
|
`kb` command or, when the command is missing, checks for Bun and installs the
|
|
227
|
-
CLI from the immutable `@hraness/kb@0.17.
|
|
236
|
+
CLI from the immutable `@hraness/kb@0.17.2` npm version.
|
|
228
237
|
|
|
229
238
|
The public skills CLI reads `skills/kb/` from the repository. The immutable
|
|
230
|
-
`0.17.
|
|
239
|
+
`0.17.2` npm package includes the same tree under
|
|
231
240
|
`node_modules/@hraness/kb/skills/kb/`, and the package check verifies that the
|
|
232
241
|
installed skill is byte-identical to the repository source.
|
|
233
242
|
|
|
234
243
|
Install the two global commands with Bun:
|
|
235
244
|
|
|
236
245
|
```sh
|
|
237
|
-
bun add --global @hraness/kb@0.17.
|
|
246
|
+
bun add --global @hraness/kb@0.17.2
|
|
238
247
|
kb --help
|
|
239
248
|
kb-evaluation-builder --help
|
|
240
249
|
```
|
|
@@ -242,7 +251,7 @@ kb-evaluation-builder --help
|
|
|
242
251
|
The same registry package can be installed with npm:
|
|
243
252
|
|
|
244
253
|
```sh
|
|
245
|
-
npm install --global --ignore-scripts @hraness/kb@0.17.
|
|
254
|
+
npm install --global --ignore-scripts @hraness/kb@0.17.2
|
|
246
255
|
kb --help
|
|
247
256
|
```
|
|
248
257
|
|
|
@@ -255,7 +264,7 @@ reviewed and enabled; run `kb doctor` to inspect the resulting capabilities.
|
|
|
255
264
|
For programmatic use, add the exact npm version to a Bun project:
|
|
256
265
|
|
|
257
266
|
```sh
|
|
258
|
-
bun add --exact @hraness/kb@0.17.
|
|
267
|
+
bun add --exact @hraness/kb@0.17.2
|
|
259
268
|
```
|
|
260
269
|
|
|
261
270
|
The resulting dependency should remain exact:
|
|
@@ -263,12 +272,12 @@ The resulting dependency should remain exact:
|
|
|
263
272
|
```json
|
|
264
273
|
{
|
|
265
274
|
"dependencies": {
|
|
266
|
-
"@hraness/kb": "0.17.
|
|
275
|
+
"@hraness/kb": "0.17.2"
|
|
267
276
|
}
|
|
268
277
|
}
|
|
269
278
|
```
|
|
270
279
|
|
|
271
|
-
Version 0.17.
|
|
280
|
+
Version 0.17.2 retains two public GitHub dependencies:
|
|
272
281
|
`@steipete/sweet-cookie` at Hraness release `v0.4.2` for the cookie-scope safety
|
|
273
282
|
fork, and `@tobilu/qmd` at commit
|
|
274
283
|
`aa993dceb3ef8cfb71d470554ca437570f5a2b3c` for store-local model behavior. A
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hraness/kb",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.2",
|
|
4
4
|
"description": "A knowledge base for coding agents, built from Markdown, backlinks, semantic search, and Git context.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contentPolicy": {
|
|
@@ -72,15 +72,16 @@
|
|
|
72
72
|
},
|
|
73
73
|
"keywords": [
|
|
74
74
|
"knowledge-base",
|
|
75
|
+
"coding-agents",
|
|
76
|
+
"agent-memory",
|
|
77
|
+
"repository-context",
|
|
75
78
|
"markdown",
|
|
76
79
|
"obsidian",
|
|
80
|
+
"agents-md",
|
|
77
81
|
"web-clipper",
|
|
78
82
|
"backlinks",
|
|
79
83
|
"knowledge-graph",
|
|
80
84
|
"semantic-search",
|
|
81
|
-
"agent-memory",
|
|
82
|
-
"agents-md",
|
|
83
|
-
"context-engineering",
|
|
84
85
|
"local-first"
|
|
85
86
|
],
|
|
86
87
|
"exports": {
|