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
5 changes: 5 additions & 0 deletions .changeset/fix-cli-shebang-node.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"perstack": patch
---

Change CLI shebang from `#!/usr/bin/env bun` to `#!/usr/bin/env node` so `npx perstack` works without bun installed.
6 changes: 6 additions & 0 deletions definitions/create-expert/perstack.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ delegates = ["@create-expert/planner", "@create-expert/skill-finder", "@create-e

[experts."create-expert".skills."@perstack/base"]
type = "mcpStdioSkill"
description = "File operations and task completion"
command = "npx"
packageName = "@perstack/base"
pick = ["exec", "attemptCompletion"]
Expand Down Expand Up @@ -128,6 +129,7 @@ After writing the file, attemptCompletion with the file path.

[experts."@create-expert/planner".skills."@perstack/base"]
type = "mcpStdioSkill"
description = "File operations, command execution, and task management"
command = "npx"
packageName = "@perstack/base"
pick = ["readTextFile", "writeTextFile", "exec", "todo", "attemptCompletion"]
Expand Down Expand Up @@ -185,12 +187,14 @@ After writing skill-report.md, attemptCompletion with the file path.

[experts."@create-expert/skill-finder".skills."@perstack/base"]
type = "mcpStdioSkill"
description = "File operations, command execution, and task management"
command = "npx"
packageName = "@perstack/base"
pick = ["readTextFile", "writeTextFile", "exec", "todo", "attemptCompletion"]

[experts."@create-expert/skill-finder".skills."@perstack/create-expert-skill"]
type = "mcpStdioSkill"
description = "Search and inspect MCP servers from the registry"
command = "npx"
packageName = "@perstack/create-expert-skill"
pick = ["searchMcpRegistry", "getMcpServerDetail"]
Expand Down Expand Up @@ -289,6 +293,7 @@ To incorporate MCP skills into the expert definition:

[experts."@create-expert/definition-writer".skills."@perstack/base"]
type = "mcpStdioSkill"
description = "File operations, command execution, and task management"
command = "npx"
packageName = "@perstack/base"
pick = ["readTextFile", "writeTextFile", "exec", "todo", "attemptCompletion"]
Expand Down Expand Up @@ -344,6 +349,7 @@ If issues found:

[experts."@create-expert/expert-tester".skills."@perstack/base"]
type = "mcpStdioSkill"
description = "File operations, command execution, delegation management, and task tracking"
command = "npx"
packageName = "@perstack/base"
pick = [
Expand Down