docs(sprites-exec): add port 8080 convention note to description
Updated tool description to mention that web servers must listen on port 8080 as per Sprites convention for public URLs.
This commit is contained in:
parent
4d265cd24d
commit
54d39c38fa
2 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@tpmjs/tools-sprites-exec",
|
||||
"version": "0.1.5",
|
||||
"version": "0.1.6",
|
||||
"description": "Execute a command inside a sprite and return the output with exit code",
|
||||
"type": "module",
|
||||
"keywords": [
|
||||
|
|
|
|||
|
|
@ -204,7 +204,7 @@ function parseBinaryResponse(buffer: Uint8Array): {
|
|||
|
||||
export const spritesExecTool = tool({
|
||||
description:
|
||||
'Execute a command inside a sprite and return the output. Supports stdin input for interactive commands. Returns exit code, stdout, stderr, and execution duration.',
|
||||
'Execute a command inside a sprite and return the output. Supports stdin input for interactive commands. Returns exit code, stdout, stderr, and execution duration. IMPORTANT: If starting a web server, it must listen on port 8080 - this is the Sprites convention for public URLs (use sprites-url-set to make it publicly accessible).',
|
||||
inputSchema: jsonSchema<SpritesExecInput>({
|
||||
type: 'object',
|
||||
properties: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue