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:
Ajax Davis 2026-01-15 06:17:37 +10:00
parent 4d265cd24d
commit 54d39c38fa
2 changed files with 2 additions and 2 deletions

View file

@ -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": [

View file

@ -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: {