create-expert 0.0.13 → 0.0.15
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/perstack.toml +8 -22
- package/package.json +2 -2
package/dist/perstack.toml
CHANGED
|
@@ -62,27 +62,6 @@ pick = ["readTextFile", "writeTextFile", "listDirectory", "think", "attemptCompl
|
|
|
62
62
|
# lazyInit = false
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
-
## Available @perstack/base Tools
|
|
66
|
-
|
|
67
|
-
The `@perstack/base` package provides these tools:
|
|
68
|
-
- `readTextFile` - Read text files (with optional line range)
|
|
69
|
-
- `writeTextFile` - Write/overwrite text files
|
|
70
|
-
- `appendTextFile` - Append text to files
|
|
71
|
-
- `editTextFile` - Edit specific lines in files
|
|
72
|
-
- `listDirectory` - List directory contents
|
|
73
|
-
- `getFileInfo` - Get file/directory metadata
|
|
74
|
-
- `createDirectory` - Create directories
|
|
75
|
-
- `deleteDirectory` - Delete directories
|
|
76
|
-
- `deleteFile` - Delete files
|
|
77
|
-
- `moveFile` - Move/rename files
|
|
78
|
-
- `readImageFile` - Read image files
|
|
79
|
-
- `readPdfFile` - Read PDF files
|
|
80
|
-
- `exec` - Execute shell commands
|
|
81
|
-
- `think` - Internal reasoning (no side effects)
|
|
82
|
-
- `attemptCompletion` - Signal task completion
|
|
83
|
-
- `todo` - Manage a todo list
|
|
84
|
-
- `clearTodo` - Clear all todos
|
|
85
|
-
|
|
86
65
|
## Your Workflow
|
|
87
66
|
|
|
88
67
|
1. First, check if a `perstack.toml` already exists in the current directory using `readTextFile`
|
|
@@ -121,7 +100,14 @@ After writing a perstack.toml file, always test-run the expert you created:
|
|
|
121
100
|
type = "mcpStdioSkill"
|
|
122
101
|
command = "npx"
|
|
123
102
|
packageName = "@perstack/base"
|
|
124
|
-
pick = [
|
|
103
|
+
pick = [
|
|
104
|
+
"readTextFile",
|
|
105
|
+
"writeTextFile",
|
|
106
|
+
"listDirectory",
|
|
107
|
+
"getFileInfo",
|
|
108
|
+
"think",
|
|
109
|
+
"attemptCompletion",
|
|
110
|
+
]
|
|
125
111
|
|
|
126
112
|
[experts."expert".skills."create-expert-skill"]
|
|
127
113
|
type = "mcpStdioSkill"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-expert",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "Create and modify Perstack expert definitions",
|
|
5
5
|
"author": "Wintermute Technologies, Inc.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"commander": "^14.0.2",
|
|
19
19
|
"smol-toml": "^1.6.0",
|
|
20
20
|
"@perstack/core": "0.0.45",
|
|
21
|
-
"perstack": "0.0.
|
|
21
|
+
"perstack": "0.0.82"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@tsconfig/node22": "^22.0.5",
|