create-theokit 1.11.0 → 1.11.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-theokit",
3
- "version": "1.11.0",
3
+ "version": "1.11.1",
4
4
  "type": "module",
5
5
  "description": "Scaffold a new TheoKit project",
6
6
  "license": "Apache-2.0",
@@ -15,7 +15,6 @@
15
15
  "cross-spawn": "^7.0.6"
16
16
  },
17
17
  "publishConfig": {
18
- "provenance": false,
19
18
  "access": "public"
20
19
  },
21
20
  "engines": {
@@ -24,9 +24,6 @@ export default agent()
24
24
  .system(BASE_INSTRUCTIONS)
25
25
  .tool(weatherTool)
26
26
  .tool(currentTimeTool)
27
- // `.skills([...])` wires the code-defined skill in ONE call: the SDK lists its name + description in a
28
- // `<skills>` block every turn (cheap, so the model KNOWS it exists) AND auto-provisions a `skill_read`
29
- // tool the model calls to load the full body on demand (so a long procedure only enters the prompt
30
- // when needed). Pass a filesystem skill NAME (a string) here too; mix strings + createSkill freely.
27
+ // Skills the agent can consult on demand (hover `.skills` for how it works).
31
28
  .skills([dailyBriefingSkill])
32
29
  .build()
@@ -15,8 +15,8 @@
15
15
  "typecheck": "tsc --noEmit"
16
16
  },
17
17
  "dependencies": {
18
- "theokit": "^0.38.0",
19
- "@theokit/agents": "^0.38.0",
18
+ "theokit": "^0.39.1",
19
+ "@theokit/agents": "^0.38.1",
20
20
  "@theokit/sdk": "^2.25.0",
21
21
  "@theokit/ui": "^1.0.0",
22
22
  "@usetheo/ui": "^0.14.0",