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
8 changes: 8 additions & 0 deletions .changeset/remove-think-tool.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"create-expert": patch
---

Remove non-existent `think` tool from Expert templates

The `think` tool was referenced in pick lists but doesn't exist in @perstack/base.
This removes `think` from all Expert templates (Main, Demo, Setup, Doctor).
8 changes: 4 additions & 4 deletions apps/create-expert/src/lib/create-expert-toml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Your role and capabilities...
type = "mcpStdioSkill"
command = "npx"
packageName = "@perstack/base"
pick = ["readTextFile", "think", "attemptCompletion"]
pick = ["readTextFile", "attemptCompletion"]
\`\`\`

### Demo Expert Template
Expand Down Expand Up @@ -162,7 +162,7 @@ Provide a realistic demonstration that helps users understand:
type = "mcpStdioSkill"
command = "npx"
packageName = "@perstack/base"
pick = ["think", "attemptCompletion"]
pick = ["attemptCompletion"]
\`\`\`

### Setup Expert Template (only if external deps exist)
Expand Down Expand Up @@ -206,7 +206,7 @@ Output: "✓ Setup complete! Try: npx perstack run <name> \\"your query\\""
type = "mcpStdioSkill"
command = "npx"
packageName = "@perstack/base"
pick = ["readTextFile", "editTextFile", "exec", "think", "attemptCompletion"]
pick = ["readTextFile", "editTextFile", "exec", "attemptCompletion"]
\`\`\`

### Doctor Expert Template (only if external deps exist)
Expand Down Expand Up @@ -253,7 +253,7 @@ If no issues found:
type = "mcpStdioSkill"
command = "npx"
packageName = "@perstack/base"
pick = ["readTextFile", "exec", "think", "attemptCompletion"]
pick = ["readTextFile", "exec", "attemptCompletion"]
\`\`\`

## Design Principles
Expand Down