create-expert 0.0.29 → 0.0.31
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/dist/bin/cli.js +474 -493
- package/dist/bin/cli.js.map +1 -1
- package/dist/perstack.toml +0 -2
- package/package.json +5 -5
package/dist/perstack.toml
CHANGED
|
@@ -59,7 +59,6 @@ pick = ["readTextFile", "writeTextFile", "listDirectory", "think", "attemptCompl
|
|
|
59
59
|
# args = ["-y", "some-mcp-server"]
|
|
60
60
|
# requiredEnv = ["API_KEY"]
|
|
61
61
|
# rule = "Instructions for using this skill"
|
|
62
|
-
# lazyInit = false
|
|
63
62
|
```
|
|
64
63
|
|
|
65
64
|
## Your Workflow
|
|
@@ -115,5 +114,4 @@ description = "Test-run expert definitions to verify they work correctly"
|
|
|
115
114
|
command = "npx"
|
|
116
115
|
packageName = "@perstack/create-expert-skill"
|
|
117
116
|
requiredEnv = ["PROVIDER_API_KEY"]
|
|
118
|
-
lazyInit = true
|
|
119
117
|
rule = "After creating or modifying an expert in perstack.toml, use runExpert to test it with a simple query. Review the activities to verify correctness."
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-expert",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.31",
|
|
4
4
|
"description": "Create and modify Perstack expert definitions",
|
|
5
5
|
"author": "Wintermute Technologies, Inc.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -16,16 +16,16 @@
|
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"commander": "^14.0.3",
|
|
19
|
-
"@perstack/core": "0.0.
|
|
20
|
-
"@perstack/perstack-toml": "0.0.
|
|
21
|
-
"@perstack/runtime": "0.0.
|
|
19
|
+
"@perstack/core": "0.0.48",
|
|
20
|
+
"@perstack/perstack-toml": "0.0.4",
|
|
21
|
+
"@perstack/runtime": "0.0.102"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@tsconfig/node22": "^22.0.5",
|
|
25
25
|
"@types/node": "^25.2.3",
|
|
26
26
|
"tsup": "^8.5.1",
|
|
27
27
|
"typescript": "^5.9.3",
|
|
28
|
-
"@perstack/tui": "0.0.
|
|
28
|
+
"@perstack/tui": "0.0.6"
|
|
29
29
|
},
|
|
30
30
|
"engines": {
|
|
31
31
|
"node": ">=22.0.0"
|