@theokit/sdk 5.3.2 → 5.3.3
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 +14 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.3.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#624](https://github.com/usetheokit/theokit-sdk/pull/624) [`1ef64b0`](https://github.com/usetheokit/theokit-sdk/commit/1ef64b06f418d1194a699c2924286d87d5271b90) Thanks [@usetheodev](https://github.com/usetheodev)! - README: say that `.theokit/settings.json` is read, because it is
|
|
8
|
+
|
|
9
|
+
Docs only. The `## Hooks` section named `.theokit/hooks.json` and nothing else, and the only mention of `settings.json` / `settings.local.json` sat in the Claude Code compatibility table — which reads as being about `.claude/`.
|
|
10
|
+
|
|
11
|
+
So a reader asking *"what does this package read in `.theokit/`?"* got `hooks.json`, full stop. That answer is wrong: `hookConfigCandidates` reads `hooks.json`, `settings.json` and `settings.local.json` from **every** config root, and `theokitConfigRoot` is always one of them.
|
|
12
|
+
|
|
13
|
+
This is not an omission that merely leaves someone uninformed — it returns the wrong answer to the person doing the right thing. Measured in 2026-09: a consumer put its own configuration in `.theokit/settings.json` with a `hooks` array of its own shape, and hit a hard refusal on **every turn**. The file parsed perfectly for the product that wrote it; the collision was one of shape, not of location, and nothing in this README would have warned them.
|
|
14
|
+
|
|
15
|
+
The section now names all three files and states the consequence: `.theokit/` is this package's filebase, so a `hooks` key there is read and validated here, whatever else wrote the file.
|
|
16
|
+
|
|
3
17
|
## 5.3.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED