@panaversity/ksor 0.0.33 → 0.0.34
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 +24 -0
- package/docs/index.md +3 -3
- package/package.json +1 -1
- package/templates/scaffold/AGENTS.md +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @panaversity/ksor
|
|
2
2
|
|
|
3
|
+
## 0.0.34
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e18ea08: The second site shell is retired (decision 9 revision, owner). Nothing an
|
|
8
|
+
adopter runs changes: `ksor init` has always emitted Fumadocs and never offered
|
|
9
|
+
a selector.
|
|
10
|
+
|
|
11
|
+
The proof did its job. It was built to answer whether the shell is really a slot
|
|
12
|
+
or whether the surface contract was just a description of what Fumadocs happens
|
|
13
|
+
to do, and it kept that contract honest through the visibility model,
|
|
14
|
+
attachments and the staging lock. What it costs now exceeds that: every surface
|
|
15
|
+
the record grows — quizzes, decks, slides, code tabs — has to be built twice or
|
|
16
|
+
the conformance suite goes red, and the second build is one nobody ships.
|
|
17
|
+
Maintaining a shell no adopter runs, to prove a property no adopter exercises,
|
|
18
|
+
is the "code is liability" test failing.
|
|
19
|
+
|
|
20
|
+
The five-clause surface contract survives unchanged and is still asserted,
|
|
21
|
+
against one implementation. The other clauses decision 9 always leaned on —
|
|
22
|
+
adopter ownership of `system/site`, registry-distributed shells later — are what
|
|
23
|
+
carry replaceability now. The swap recipe lives in git history; an adopter
|
|
24
|
+
actually swapping a shell restores the property as something live rather than
|
|
25
|
+
hypothetical.
|
|
26
|
+
|
|
3
27
|
## 0.0.33
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/docs/index.md
CHANGED
|
@@ -68,9 +68,9 @@ instance declares an `audiences:` model, documents may carry a
|
|
|
68
68
|
`visibility:` key and per-audience builds (`KSOR_AUDIENCE=<tier> pnpm
|
|
69
69
|
build`) stage only what that tier may see — publication, not authorship:
|
|
70
70
|
anyone who can clone reads everything. The site shell
|
|
71
|
-
at `system/site/` is replaceable behind a five-clause surface contract
|
|
72
|
-
|
|
73
|
-
|
|
71
|
+
at `system/site/` is replaceable behind a five-clause surface contract — the
|
|
72
|
+
shell is a slot, and the contract (render the record, `llms.txt`, per-page md
|
|
73
|
+
artifacts, browser smoke, no authored content) is what a replacement must meet.
|
|
74
74
|
|
|
75
75
|
## Where truth lives
|
|
76
76
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@panaversity/ksor",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.34",
|
|
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",
|
|
@@ -708,8 +708,8 @@ You own `system/site/` outright — these are the seams, cheapest first:
|
|
|
708
708
|
documentation shell around it stay one palette.
|
|
709
709
|
- **Anything deeper** — edit the site like the Next.js app it is; the only
|
|
710
710
|
rule that survives customization is critical rule 1. The whole shell is
|
|
711
|
-
replaceable behind a five-clause contract
|
|
712
|
-
|
|
711
|
+
replaceable behind a five-clause contract: render the record, `llms.txt`,
|
|
712
|
+
per-page md artifacts, browser smoke, and no authored content.
|
|
713
713
|
|
|
714
714
|
## What this project owns
|
|
715
715
|
|