From bd7ed861705073bfcd5af828f65b1576a4db6b1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Hanu=C5=A1?= Date: Mon, 29 Jun 2026 22:54:45 +0200 Subject: [PATCH] build: move repo to prettier 3.9.x to fix template format:check drift MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The per-template `format:check` (run in CI by the Node template test jobs) was failing because the repo root and the templates ran different prettier versions: - the repo root pins prettier 3.8.3 via pnpm-lock.yaml (range `^3.7.4`), so it never drifted; - each template declares prettier as an open `^` range with NO lockfile, so a fresh `npm install` floats to the newest available — 3.9.x. Prettier 3.9.0 (2026-06-27) reformats the comment-only objects in the AGENTS.md input/output schema snippets, so the templates' 3.9.x considered the committed files mis-formatted while the root's 3.8.3 considered them fine — a version disagreement, not a real formatting problem. Move the repo root onto the latest prettier and reformat, so the root and the templates' floating installs agree: - bump prettier to 3.9.1 (3.9.2/3.9.3 are blocked by the repo's 24h `minimumReleaseAge` policy; the templates' npm install floats to 3.9.3, which produces identical output for these files — verified); - reformat with it. The ONLY content change is the AGENTS.md schema snippets collapsing onto one line (`"properties": {/* ... */}`); no other files change. Co-Authored-By: Claude Opus 4.8 (1M context) --- agent-bases/js.AGENTS.md | 8 ++------ agent-bases/python.AGENTS.md | 8 ++------ agent-bases/ts.AGENTS.md | 8 ++------ package.json | 2 +- pnpm-lock.yaml | 10 +++++----- templates/js-bootstrap-cheerio-crawler/AGENTS.md | 8 ++------ templates/js-crawlee-cheerio/AGENTS.md | 8 ++------ templates/js-crawlee-playwright-camoufox/AGENTS.md | 8 ++------ templates/js-crawlee-playwright-chrome/AGENTS.md | 8 ++------ templates/js-crawlee-puppeteer-chrome/AGENTS.md | 8 ++------ templates/js-cypress/AGENTS.md | 8 ++------ templates/js-empty/AGENTS.md | 8 ++------ templates/js-langchain/AGENTS.md | 8 ++------ templates/js-langgraph-agent/AGENTS.md | 8 ++------ templates/js-standby/AGENTS.md | 8 ++------ templates/js-start/AGENTS.md | 8 ++------ templates/python-beautifulsoup/AGENTS.md | 8 ++------ templates/python-crawlee-beautifulsoup/AGENTS.md | 8 ++------ templates/python-crawlee-parsel/AGENTS.md | 8 ++------ templates/python-crawlee-playwright-camoufox/AGENTS.md | 8 ++------ templates/python-crawlee-playwright/AGENTS.md | 8 ++------ templates/python-crewai/AGENTS.md | 8 ++------ templates/python-empty/AGENTS.md | 8 ++------ templates/python-langgraph/AGENTS.md | 8 ++------ templates/python-llamaindex-agent/AGENTS.md | 8 ++------ templates/python-mcp-empty/AGENTS.md | 8 ++------ templates/python-mcp-proxy/AGENTS.md | 8 ++------ templates/python-playwright/AGENTS.md | 8 ++------ templates/python-pydanticai/AGENTS.md | 8 ++------ templates/python-scrapy/AGENTS.md | 8 ++------ templates/python-selenium/AGENTS.md | 8 ++------ templates/python-smolagents/AGENTS.md | 8 ++------ templates/python-standby/AGENTS.md | 8 ++------ templates/python-start/AGENTS.md | 8 ++------ templates/ts-beeai-agent/AGENTS.md | 8 ++------ templates/ts-bootstrap-cheerio-crawler/AGENTS.md | 8 ++------ templates/ts-crawlee-cheerio/AGENTS.md | 8 ++------ templates/ts-crawlee-playwright-camoufox/AGENTS.md | 8 ++------ templates/ts-crawlee-playwright-chrome/AGENTS.md | 8 ++------ templates/ts-crawlee-puppeteer-chrome/AGENTS.md | 8 ++------ templates/ts-empty/AGENTS.md | 8 ++------ templates/ts-mastraai/AGENTS.md | 8 ++------ templates/ts-mcp-empty/AGENTS.md | 8 ++------ templates/ts-mcp-proxy/AGENTS.md | 8 ++------ templates/ts-playwright-test-runner/AGENTS.md | 8 ++------ templates/ts-standby/AGENTS.md | 8 ++------ templates/ts-start-bun/AGENTS.md | 8 ++------ templates/ts-start/AGENTS.md | 8 ++------ 48 files changed, 98 insertions(+), 282 deletions(-) diff --git a/agent-bases/js.AGENTS.md b/agent-bases/js.AGENTS.md index 003cd8a42..f06e81362 100644 --- a/agent-bases/js.AGENTS.md +++ b/agent-bases/js.AGENTS.md @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/agent-bases/python.AGENTS.md b/agent-bases/python.AGENTS.md index 1797ae695..17b9548ef 100644 --- a/agent-bases/python.AGENTS.md +++ b/agent-bases/python.AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/agent-bases/ts.AGENTS.md b/agent-bases/ts.AGENTS.md index de8e3e29f..f3173126a 100644 --- a/agent-bases/ts.AGENTS.md +++ b/agent-bases/ts.AGENTS.md @@ -223,9 +223,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -289,9 +287,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/package.json b/package.json index 8e28676dc..ee5cd3c86 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "json5": "^2.2.3", "mustache": "^4.2.0", "playwright": "1.60.0", - "prettier": "^3.7.4", + "prettier": "^3.9.1", "puppeteer": "24.43.1", "semver": "^7.7.2", "typescript": "^6.0.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1ea0acf3e..5459f1208 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -253,8 +253,8 @@ importers: specifier: 1.60.0 version: 1.60.0 prettier: - specifier: ^3.7.4 - version: 3.8.3 + specifier: ^3.9.1 + version: 3.9.1 puppeteer: specifier: 24.43.1 version: 24.43.1(typescript@6.0.3) @@ -2887,8 +2887,8 @@ packages: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} - prettier@3.8.3: - resolution: {integrity: sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==} + prettier@3.9.1: + resolution: {integrity: sha512-ppiDo2CSwexck1eyZUwJHg/N3nf1+6IRCv7W/VJ5vaLnVCmB7+3CdRfMwoCHBBX6xTrREDTksZ4OZl5SSf4zXA==} engines: {node: '>=14'} hasBin: true @@ -6781,7 +6781,7 @@ snapshots: prelude-ls@1.2.1: {} - prettier@3.8.3: {} + prettier@3.9.1: {} pretty-format@30.4.1: dependencies: diff --git a/templates/js-bootstrap-cheerio-crawler/AGENTS.md b/templates/js-bootstrap-cheerio-crawler/AGENTS.md index 003cd8a42..f06e81362 100644 --- a/templates/js-bootstrap-cheerio-crawler/AGENTS.md +++ b/templates/js-bootstrap-cheerio-crawler/AGENTS.md @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/js-crawlee-cheerio/AGENTS.md b/templates/js-crawlee-cheerio/AGENTS.md index 003cd8a42..f06e81362 100644 --- a/templates/js-crawlee-cheerio/AGENTS.md +++ b/templates/js-crawlee-cheerio/AGENTS.md @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/js-crawlee-playwright-camoufox/AGENTS.md b/templates/js-crawlee-playwright-camoufox/AGENTS.md index 003cd8a42..f06e81362 100644 --- a/templates/js-crawlee-playwright-camoufox/AGENTS.md +++ b/templates/js-crawlee-playwright-camoufox/AGENTS.md @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/js-crawlee-playwright-chrome/AGENTS.md b/templates/js-crawlee-playwright-chrome/AGENTS.md index 003cd8a42..f06e81362 100644 --- a/templates/js-crawlee-playwright-chrome/AGENTS.md +++ b/templates/js-crawlee-playwright-chrome/AGENTS.md @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/js-crawlee-puppeteer-chrome/AGENTS.md b/templates/js-crawlee-puppeteer-chrome/AGENTS.md index 003cd8a42..f06e81362 100644 --- a/templates/js-crawlee-puppeteer-chrome/AGENTS.md +++ b/templates/js-crawlee-puppeteer-chrome/AGENTS.md @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/js-cypress/AGENTS.md b/templates/js-cypress/AGENTS.md index 003cd8a42..f06e81362 100644 --- a/templates/js-cypress/AGENTS.md +++ b/templates/js-cypress/AGENTS.md @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/js-empty/AGENTS.md b/templates/js-empty/AGENTS.md index 003cd8a42..f06e81362 100644 --- a/templates/js-empty/AGENTS.md +++ b/templates/js-empty/AGENTS.md @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/js-langchain/AGENTS.md b/templates/js-langchain/AGENTS.md index 003cd8a42..f06e81362 100644 --- a/templates/js-langchain/AGENTS.md +++ b/templates/js-langchain/AGENTS.md @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/js-langgraph-agent/AGENTS.md b/templates/js-langgraph-agent/AGENTS.md index 003cd8a42..f06e81362 100644 --- a/templates/js-langgraph-agent/AGENTS.md +++ b/templates/js-langgraph-agent/AGENTS.md @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/js-standby/AGENTS.md b/templates/js-standby/AGENTS.md index 003cd8a42..f06e81362 100644 --- a/templates/js-standby/AGENTS.md +++ b/templates/js-standby/AGENTS.md @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/js-start/AGENTS.md b/templates/js-start/AGENTS.md index 003cd8a42..f06e81362 100644 --- a/templates/js-start/AGENTS.md +++ b/templates/js-start/AGENTS.md @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-beautifulsoup/AGENTS.md b/templates/python-beautifulsoup/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-beautifulsoup/AGENTS.md +++ b/templates/python-beautifulsoup/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-crawlee-beautifulsoup/AGENTS.md b/templates/python-crawlee-beautifulsoup/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-crawlee-beautifulsoup/AGENTS.md +++ b/templates/python-crawlee-beautifulsoup/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-crawlee-parsel/AGENTS.md b/templates/python-crawlee-parsel/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-crawlee-parsel/AGENTS.md +++ b/templates/python-crawlee-parsel/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-crawlee-playwright-camoufox/AGENTS.md b/templates/python-crawlee-playwright-camoufox/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-crawlee-playwright-camoufox/AGENTS.md +++ b/templates/python-crawlee-playwright-camoufox/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-crawlee-playwright/AGENTS.md b/templates/python-crawlee-playwright/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-crawlee-playwright/AGENTS.md +++ b/templates/python-crawlee-playwright/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-crewai/AGENTS.md b/templates/python-crewai/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-crewai/AGENTS.md +++ b/templates/python-crewai/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-empty/AGENTS.md b/templates/python-empty/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-empty/AGENTS.md +++ b/templates/python-empty/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-langgraph/AGENTS.md b/templates/python-langgraph/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-langgraph/AGENTS.md +++ b/templates/python-langgraph/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-llamaindex-agent/AGENTS.md b/templates/python-llamaindex-agent/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-llamaindex-agent/AGENTS.md +++ b/templates/python-llamaindex-agent/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-mcp-empty/AGENTS.md b/templates/python-mcp-empty/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-mcp-empty/AGENTS.md +++ b/templates/python-mcp-empty/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-mcp-proxy/AGENTS.md b/templates/python-mcp-proxy/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-mcp-proxy/AGENTS.md +++ b/templates/python-mcp-proxy/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-playwright/AGENTS.md b/templates/python-playwright/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-playwright/AGENTS.md +++ b/templates/python-playwright/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-pydanticai/AGENTS.md b/templates/python-pydanticai/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-pydanticai/AGENTS.md +++ b/templates/python-pydanticai/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-scrapy/AGENTS.md b/templates/python-scrapy/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-scrapy/AGENTS.md +++ b/templates/python-scrapy/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-selenium/AGENTS.md b/templates/python-selenium/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-selenium/AGENTS.md +++ b/templates/python-selenium/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-smolagents/AGENTS.md b/templates/python-smolagents/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-smolagents/AGENTS.md +++ b/templates/python-smolagents/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-standby/AGENTS.md b/templates/python-standby/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-standby/AGENTS.md +++ b/templates/python-standby/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/python-start/AGENTS.md b/templates/python-start/AGENTS.md index 1797ae695..17b9548ef 100644 --- a/templates/python-start/AGENTS.md +++ b/templates/python-start/AGENTS.md @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/ts-beeai-agent/AGENTS.md b/templates/ts-beeai-agent/AGENTS.md index de8e3e29f..f3173126a 100644 --- a/templates/ts-beeai-agent/AGENTS.md +++ b/templates/ts-beeai-agent/AGENTS.md @@ -223,9 +223,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -289,9 +287,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/ts-bootstrap-cheerio-crawler/AGENTS.md b/templates/ts-bootstrap-cheerio-crawler/AGENTS.md index de8e3e29f..f3173126a 100644 --- a/templates/ts-bootstrap-cheerio-crawler/AGENTS.md +++ b/templates/ts-bootstrap-cheerio-crawler/AGENTS.md @@ -223,9 +223,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -289,9 +287,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/ts-crawlee-cheerio/AGENTS.md b/templates/ts-crawlee-cheerio/AGENTS.md index de8e3e29f..f3173126a 100644 --- a/templates/ts-crawlee-cheerio/AGENTS.md +++ b/templates/ts-crawlee-cheerio/AGENTS.md @@ -223,9 +223,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -289,9 +287,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/ts-crawlee-playwright-camoufox/AGENTS.md b/templates/ts-crawlee-playwright-camoufox/AGENTS.md index de8e3e29f..f3173126a 100644 --- a/templates/ts-crawlee-playwright-camoufox/AGENTS.md +++ b/templates/ts-crawlee-playwright-camoufox/AGENTS.md @@ -223,9 +223,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -289,9 +287,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/ts-crawlee-playwright-chrome/AGENTS.md b/templates/ts-crawlee-playwright-chrome/AGENTS.md index de8e3e29f..f3173126a 100644 --- a/templates/ts-crawlee-playwright-chrome/AGENTS.md +++ b/templates/ts-crawlee-playwright-chrome/AGENTS.md @@ -223,9 +223,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -289,9 +287,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/ts-crawlee-puppeteer-chrome/AGENTS.md b/templates/ts-crawlee-puppeteer-chrome/AGENTS.md index de8e3e29f..f3173126a 100644 --- a/templates/ts-crawlee-puppeteer-chrome/AGENTS.md +++ b/templates/ts-crawlee-puppeteer-chrome/AGENTS.md @@ -223,9 +223,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -289,9 +287,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/ts-empty/AGENTS.md b/templates/ts-empty/AGENTS.md index de8e3e29f..f3173126a 100644 --- a/templates/ts-empty/AGENTS.md +++ b/templates/ts-empty/AGENTS.md @@ -223,9 +223,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -289,9 +287,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/ts-mastraai/AGENTS.md b/templates/ts-mastraai/AGENTS.md index de8e3e29f..f3173126a 100644 --- a/templates/ts-mastraai/AGENTS.md +++ b/templates/ts-mastraai/AGENTS.md @@ -223,9 +223,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -289,9 +287,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/ts-mcp-empty/AGENTS.md b/templates/ts-mcp-empty/AGENTS.md index de8e3e29f..f3173126a 100644 --- a/templates/ts-mcp-empty/AGENTS.md +++ b/templates/ts-mcp-empty/AGENTS.md @@ -223,9 +223,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -289,9 +287,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/ts-mcp-proxy/AGENTS.md b/templates/ts-mcp-proxy/AGENTS.md index de8e3e29f..f3173126a 100644 --- a/templates/ts-mcp-proxy/AGENTS.md +++ b/templates/ts-mcp-proxy/AGENTS.md @@ -223,9 +223,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -289,9 +287,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/ts-playwright-test-runner/AGENTS.md b/templates/ts-playwright-test-runner/AGENTS.md index de8e3e29f..f3173126a 100644 --- a/templates/ts-playwright-test-runner/AGENTS.md +++ b/templates/ts-playwright-test-runner/AGENTS.md @@ -223,9 +223,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -289,9 +287,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/ts-standby/AGENTS.md b/templates/ts-standby/AGENTS.md index de8e3e29f..f3173126a 100644 --- a/templates/ts-standby/AGENTS.md +++ b/templates/ts-standby/AGENTS.md @@ -223,9 +223,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -289,9 +287,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/ts-start-bun/AGENTS.md b/templates/ts-start-bun/AGENTS.md index de8e3e29f..f3173126a 100644 --- a/templates/ts-start-bun/AGENTS.md +++ b/templates/ts-start-bun/AGENTS.md @@ -223,9 +223,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -289,9 +287,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ``` diff --git a/templates/ts-start/AGENTS.md b/templates/ts-start/AGENTS.md index de8e3e29f..f3173126a 100644 --- a/templates/ts-start/AGENTS.md +++ b/templates/ts-start/AGENTS.md @@ -223,9 +223,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c "title": "", "type": "object", "schemaVersion": 1, - "properties": { - /* define input fields here */ - }, + "properties": {/* define input fields here */}, "required": [] } ``` @@ -289,9 +287,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st { "actorOutputSchemaVersion": 1, "title": "", - "properties": { - /* define your outputs here */ - } + "properties": {/* define your outputs here */} } ```