create-theokit 2.0.0 → 3.0.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/package.json
CHANGED
|
@@ -14,13 +14,20 @@ tone instruction in this file quietly makes `usePersonality` do nothing. Tone be
|
|
|
14
14
|
|
|
15
15
|
## Why this file is here and not at the root
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
17
|
+
This project installs `@theokit/sdk@^5.3.0`, where **both** locations work: 5.x added a root
|
|
18
|
+
`THEO.md` (`usetheokit/theokit-sdk#531`) at priority 55, and `.theokit/THEO.md` at 60 still wins a
|
|
19
|
+
conflict. The scaffold keeps the file here because it wins, not because the root is unreadable.
|
|
20
|
+
|
|
21
|
+
That reason is new. This paragraph used to say the template pinned `^4.52.1` — where
|
|
22
|
+
`.theokit/THEO.md` was the **only** path read and a root copy was silently ignored — and that 5.x
|
|
23
|
+
was published on the `next` channel only, so moving the file would break the default install. Both
|
|
24
|
+
halves expired: 5.5.0 is `latest`, and the template's pin moved to `^5.3.0` because every `.claude`
|
|
25
|
+
parity surface this framework advertises is absent from 4.x. A scaffold that hands a new project an
|
|
26
|
+
SDK delivering none of that, with nothing saying so, is the defect the pin change closes.
|
|
27
|
+
|
|
28
|
+
The floor is 5.3 rather than 5.0 because the framework's persistence barrel re-exports six names that
|
|
29
|
+
5.0.0 does not have — measured with controls, 1 of 7 at 5.0.0 and 7 of 7 from 5.3.0 — so the range had
|
|
30
|
+
to name a version that can actually build it.
|
|
24
31
|
|
|
25
32
|
Two more things worth knowing if you do move it once 5.x is stable:
|
|
26
33
|
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"typecheck": "tsc --noEmit"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"theokit": "^0.
|
|
19
|
+
"theokit": "^0.68.0",
|
|
20
20
|
"@theokit/agents": "^12.1.0",
|
|
21
|
-
"@theokit/sdk": "^
|
|
21
|
+
"@theokit/sdk": "^5.3.0",
|
|
22
22
|
"@theokit/ui": "^1.1.0",
|
|
23
23
|
"@usetheo/ui": "^0.26.0",
|
|
24
24
|
"lucide-react": "^0.469.0",
|
|
@@ -11,9 +11,15 @@
|
|
|
11
11
|
allowBuilds:
|
|
12
12
|
# The bundler behind `theokit dev` and `theokit build`; ships a platform binary.
|
|
13
13
|
esbuild: true
|
|
14
|
-
# A native terminal
|
|
15
|
-
#
|
|
16
|
-
#
|
|
14
|
+
# A native terminal. Compiles or downloads a prebuild on install, so it is the one
|
|
15
|
+
# entry here that costs real time — and a scaffolded app does NOT install it.
|
|
16
|
+
# Measured 2026-09-20 on a scaffold generated from this template: 0 occurrences in
|
|
17
|
+
# the generated pnpm-lock.yaml, out of 453 resolved packages, and pnpm raised no
|
|
18
|
+
# ERR_PNPM_IGNORED_BUILDS. It arrives only if you add a package that depends on it.
|
|
19
|
+
# An earlier version of this comment said it was "reached through @theokit/agents";
|
|
20
|
+
# that package declares no pty dependency, so the line is corrected rather than
|
|
21
|
+
# deleted — a wrong reason for a right entry is what sent the last reader looking
|
|
22
|
+
# in the wrong place (usetheokit/theokit#25).
|
|
17
23
|
node-pty: true
|
|
18
24
|
# Present only if you add them; harmless entries otherwise, and here so the
|
|
19
25
|
# decision is already made the day you do.
|