knodin 0.5.0 → 0.5.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # knodin
2
2
 
3
- <img src="docs/assets/knodin-favicon.svg" alt="knodin caret-beak logo" width="96" height="96">
3
+ <img src="https://cdn.jsdelivr.net/npm/knodin@latest/docs/assets/knodin-favicon.svg" alt="knodin caret-beak logo" width="96" height="96">
4
4
 
5
5
  > knodin remembers how your code is connected and shows what may move when it
6
6
  > changes.
@@ -121,7 +121,7 @@ npm install --global --ignore-scripts knodin
121
121
  After the Homebrew tap migration, the macOS or Linux path will be:
122
122
 
123
123
  ```bash
124
- brew install knowdin/tap/knodin
124
+ brew install knodin/tap/knodin
125
125
  ```
126
126
 
127
127
  pnpm, Bun, mise, Volta, nvm, fnm, and asdf behavior and verification status are
@@ -20,7 +20,7 @@ shells, Git hooks, and MCP clients.
20
20
  | Bun | `bun add --global --ignore-scripts knodin@<version>` | Executable gate provided; release verification requires the published version |
21
21
  | approved npm-compatible registry | use the npm command with approved registry configuration | Same artifact; registry authentication/promotion is organization-owned |
22
22
  | P&T GHES release asset | after migration, download the exact `.tgz` from `Enterprise-Apps/knodin`, verify SHA-256, then use the npm command with the local file | Planned knodin path; the legacy mirror remains authoritative until the external rename and release verification complete |
23
- | Homebrew | after migration, `brew install knowdin/tap/knodin` | Planned knodin path; the legacy tap remains authoritative until the external rename and formula gate complete |
23
+ | Homebrew | after migration, `brew install knodin/tap/knodin` | Planned knodin path; the legacy tap remains authoritative until the external rename and formula gate complete |
24
24
 
25
25
  “Guidance” is not a compatibility claim. The repository records the manager
26
26
  version, command, package version, platform, and result when a release gate is
@@ -159,16 +159,16 @@ After the external tap is renamed and certified, install from the public
159
159
  knodin tap:
160
160
 
161
161
  ```bash
162
- brew install knowdin/tap/knodin
162
+ brew install knodin/tap/knodin
163
163
  ```
164
164
 
165
165
  A version is not called Homebrew-supported until the corresponding published
166
166
  npm tarball passes version, MCP initialize/tools-list, `init`, `status`,
167
167
  `query`, `repair`, and uninstall smoke tests. The tap is
168
- `knowdin/homebrew-tap`; the formula and attached release evidence must
168
+ `knodin/homebrew-tap`; the formula and attached release evidence must
169
169
  identify the exact source commit and tarball digest.
170
170
 
171
- The planned knodin formula will be maintained in `knowdin/homebrew-tap`; that
171
+ The planned knodin formula will be maintained in `knodin/homebrew-tap`; that
172
172
  path is not represented as live by this code-only rename.
173
173
  The repository-local `packaging/homebrew/knodin.rb` is a historical
174
174
  candidate fixture and must not be promoted or used to certify a newer release.
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64" height="64">
2
+ <path d="M46,6 L4,32 L46,58 L46,44 L26,32 L46,20 Z" fill="#130032" />
3
+ <path d="M58,24 L58,40 L34,32 Z" fill="#4C00FF" />
4
+ </svg>
@@ -0,0 +1,17 @@
1
+ # knodin 0.5.1
2
+
3
+ knodin 0.5.1 makes the lowercase product name canonical across every public
4
+ distribution surface.
5
+
6
+ ## Canonical identity
7
+
8
+ - The GitHub organization and repository are `knodin/knodin`.
9
+ - Package metadata, release attestations, documentation, and planned Homebrew
10
+ paths no longer use the temporary `knowdin` organization spelling.
11
+
12
+ ## npm branding
13
+
14
+ - The caret-beak SVG is included in the published package.
15
+ - The README loads the logo through the public npm CDN, so it renders on npm
16
+ even while the source repository remains private.
17
+
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "knodin",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "knodin — source-evidenced local code intelligence with known bounds. Stable identity, fresh evidence, truthful budgets, and recoverable bounded views.",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "git+https://github.com/knowdin/knodin.git"
8
+ "url": "git+https://github.com/knodin/knodin.git"
9
9
  },
10
- "homepage": "https://github.com/knowdin/knodin#readme",
10
+ "homepage": "https://github.com/knodin/knodin#readme",
11
11
  "bugs": {
12
- "url": "https://github.com/knowdin/knodin/issues"
12
+ "url": "https://github.com/knodin/knodin/issues"
13
13
  },
14
14
  "publishConfig": {
15
15
  "access": "public",
@@ -39,6 +39,8 @@
39
39
  "docs/releases/0.4.2.md",
40
40
  "docs/releases/0.4.3.md",
41
41
  "docs/releases/0.5.0.md",
42
+ "docs/releases/0.5.1.md",
43
+ "docs/assets/knodin-favicon.svg",
42
44
  "docs/SYSTEMS-AND-RELATIONSHIPS.md",
43
45
  "docs/TELEMETRY.md",
44
46
  "schemas/release-attestation-v1.schema.json",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "$id": "https://raw.githubusercontent.com/knowdin/knodin/main/schemas/release-attestation-v1.schema.json",
3
+ "$id": "https://raw.githubusercontent.com/knodin/knodin/main/schemas/release-attestation-v1.schema.json",
4
4
  "title": "knodin release attestation",
5
5
  "type": "object",
6
6
  "additionalProperties": false,