@panaversity/ksor 0.0.24 → 0.0.25
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @panaversity/ksor
|
|
2
2
|
|
|
3
|
+
## 0.0.25
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ed2dce0: Fix the container serving the DEFAULT tool surface while the repository said
|
|
8
|
+
otherwise.
|
|
9
|
+
|
|
10
|
+
`.dockerignore` excluded all of `system/` — correct when that directory held only
|
|
11
|
+
the website, and wrong the moment the door's own registration moved into
|
|
12
|
+
`system/gateways/`. The file never reached the image, so a record that had
|
|
13
|
+
renamed its tools, dropped one, or written what it covers was deployed serving
|
|
14
|
+
none of it. Nothing went red: the door booted, `/health` was green, searches
|
|
15
|
+
returned cited hits, and only `tools/list` betrayed it.
|
|
16
|
+
|
|
17
|
+
It now excludes `system/site/`, and the Dockerfile copies the project rather than
|
|
18
|
+
naming files one at a time — which is how the door came to ship without the very
|
|
19
|
+
file that shapes its tool surface.
|
|
20
|
+
|
|
21
|
+
The container acceptance job now writes a customized registration before building
|
|
22
|
+
the image and asserts the served tool is the one that file names. Found by
|
|
23
|
+
deploying and looking at `tools/list`, which is the only thing that would have.
|
|
24
|
+
|
|
3
25
|
## 0.0.24
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@panaversity/ksor",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.25",
|
|
4
4
|
"description": "Knowledge System of Record — compile governed markdown into a static site for people and an MCP server for AI agents, with citations and measured abstention.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"abstention",
|
|
@@ -22,10 +22,12 @@ WORKDIR /app
|
|
|
22
22
|
COPY package.json ./
|
|
23
23
|
RUN npm install --omit=dev --no-audit --no-fund
|
|
24
24
|
|
|
25
|
-
# The record's identity
|
|
26
|
-
#
|
|
27
|
-
#
|
|
28
|
-
|
|
25
|
+
# The record's identity, configuration, and its MCP registration
|
|
26
|
+
# (system/gateways/). What is deliberately ABSENT is decided in .dockerignore —
|
|
27
|
+
# the corpus, the website and every secret — rather than by listing files here:
|
|
28
|
+
# naming them one at a time is how the door came to ship without the very file
|
|
29
|
+
# that shapes its tool surface (found live).
|
|
30
|
+
COPY . ./
|
|
29
31
|
|
|
30
32
|
# Most container hosts inject PORT; 80 is a sane default when nothing does.
|
|
31
33
|
ENV PORT=80
|
|
@@ -11,8 +11,11 @@
|
|
|
11
11
|
# suggest the container reads it. It does not.
|
|
12
12
|
knowledge/
|
|
13
13
|
|
|
14
|
-
# The website
|
|
15
|
-
system/
|
|
14
|
+
# The website — the OTHER surface, built and hosted separately. NOT all of
|
|
15
|
+
# system/: system/gateways/ holds this door's own registration, and excluding
|
|
16
|
+
# it made the container silently serve the default tool surface while the
|
|
17
|
+
# repository said otherwise (found live).
|
|
18
|
+
system/site/
|
|
16
19
|
|
|
17
20
|
# Build and tooling noise.
|
|
18
21
|
node_modules/
|