@panaversity/ksor 0.0.25 → 0.0.26

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.26
4
+
5
+ ### Patch Changes
6
+
7
+ - b90de22: Bound the container image: `.dockerignore` now denies everything and allows only
8
+ what the door needs.
9
+
10
+ The previous shape listed what to exclude, which cannot bound an image — it can
11
+ only exclude what someone thought of. A build output, a cache, a vendored
12
+ dependency or a backup directory in the project root all rode in, and the failure
13
+ arrived as a container registry rejecting the push (`PAYLOAD_TOO_LARGE`) rather
14
+ than as anything about the file that was added.
15
+
16
+ Now: `*`, then `!package.json`, `!instance.md`, and `system/gateways/` — this
17
+ door's own MCP registration. Everything else stays out, including the corpus (the
18
+ door serves from Postgres), the website (a separately hosted surface), and every
19
+ `.env` (a DSN baked into a layer is published to anyone who can pull the image).
20
+
21
+ The container acceptance job now reports the built image's size and fails past a
22
+ ceiling, so an allow-list that stops bounding it goes red here rather than at
23
+ someone's deploy.
24
+
3
25
  ## 0.0.25
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.25",
3
+ "version": "0.0.26",
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",
@@ -1,29 +1,32 @@
1
- # Keep the serving image to what serving needs.
1
+ # DENY EVERYTHING, then allow exactly what the door needs.
2
+ #
3
+ # The inverse — listing what to exclude — cannot bound the image, because it can
4
+ # only exclude what someone thought of. A build output, a cache, a backup
5
+ # directory or a vendored dependency in the project root all end up inside, and
6
+ # the failure arrives as a registry rejecting the push rather than as anything
7
+ # about the file you added (found live: PAYLOAD_TOO_LARGE).
8
+ #
9
+ # So: nothing ships unless it is named here.
10
+ *
2
11
 
3
- # Secrets. The image takes its configuration from the environment at RUN time;
4
- # baking a .env into a layer publishes it to anyone who can pull the image.
5
- .env
6
- .env.*
7
- !.env.example
12
+ # The manifest, which pins @panaversity/ksor and is what `npm install` reads.
13
+ !package.json
8
14
 
9
- # The corpus. The door serves from Postgres knowledge/ was published by
10
- # `ksor ingest` before this container ever started, and copying it in would
11
- # suggest the container reads it. It does not.
12
- knowledge/
15
+ # The record's identity and configuration. Its prose is the MCP server's
16
+ # instructions, so the door genuinely needs the file.
17
+ !instance.md
13
18
 
14
- # The websitethe 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/
19
+ # This door's own MCP registration what its tools are called, what it says it
20
+ # covers, and which of them exist. Excluding it makes the container serve the
21
+ # default surface while your repository says otherwise.
22
+ !system
23
+ system/*
24
+ !system/gateways
19
25
 
20
- # Build and tooling noise.
21
- node_modules/
22
- .git/
23
- .github/
24
- .agents/
25
- .claude/
26
- .gemini/
27
- *.log
28
- .DS_Store
29
- .ksor-denylist.json
26
+ # Deliberately NOT here, and each for a reason:
27
+ # .env configuration arrives from the environment at run time; a DSN
28
+ # baked into a layer is published to anyone who can pull it.
29
+ # knowledge/ the door serves from Postgres. Copying the corpus in would
30
+ # suggest the container reads it, and it never does.
31
+ # system/site/ the other surface, built and hosted separately.
32
+ # node_modules/ installed inside the image, from the manifest above.