Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/crisp-hornets-return.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
30 changes: 8 additions & 22 deletions apps/create-expert/perstack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,27 +62,6 @@ pick = ["readTextFile", "writeTextFile", "listDirectory", "think", "attemptCompl
# lazyInit = false
```

## Available @perstack/base Tools

The `@perstack/base` package provides these tools:
- `readTextFile` - Read text files (with optional line range)
- `writeTextFile` - Write/overwrite text files
- `appendTextFile` - Append text to files
- `editTextFile` - Edit specific lines in files
- `listDirectory` - List directory contents
- `getFileInfo` - Get file/directory metadata
- `createDirectory` - Create directories
- `deleteDirectory` - Delete directories
- `deleteFile` - Delete files
- `moveFile` - Move/rename files
- `readImageFile` - Read image files
- `readPdfFile` - Read PDF files
- `exec` - Execute shell commands
- `think` - Internal reasoning (no side effects)
- `attemptCompletion` - Signal task completion
- `todo` - Manage a todo list
- `clearTodo` - Clear all todos

## Your Workflow

1. First, check if a `perstack.toml` already exists in the current directory using `readTextFile`
Expand Down Expand Up @@ -121,7 +100,14 @@ After writing a perstack.toml file, always test-run the expert you created:
type = "mcpStdioSkill"
command = "npx"
packageName = "@perstack/base"
pick = ["readTextFile", "writeTextFile", "listDirectory", "getFileInfo", "think", "attemptCompletion"]
pick = [
"readTextFile",
"writeTextFile",
"listDirectory",
"getFileInfo",
"think",
"attemptCompletion",
]

[experts."expert".skills."create-expert-skill"]
type = "mcpStdioSkill"
Expand Down