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: 2 additions & 6 deletions agent-bases/js.AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c
"title": "<INPUT-SCHEMA-TITLE>",
"type": "object",
"schemaVersion": 1,
"properties": {
/* define input fields here */

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We probably don't want this collapsed right?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it does not really matter much for the agents.

Just for a record, this was the issue failing the tests. The older version of prettier (root level) kept it spread, but the newer versions of prettier (template level) marked it as incorrect formatting.
Now both root and template level are at versions that collapse it.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can use // comment if you want force it expanded

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @fisker, I was considering it as a possible solution, but decided to not clutter the md files if not really necessary. As these are supposed to be read mainly by agents, the one-liner is not really an issue.

},
"properties": {/* define input fields here */},
"required": []
}
```
Expand Down Expand Up @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st
{
"actorOutputSchemaVersion": 1,
"title": "<OUTPUT-SCHEMA-TITLE>",
"properties": {
/* define your outputs here */
}
"properties": {/* define your outputs here */}
}
```

Expand Down
8 changes: 2 additions & 6 deletions agent-bases/python.AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c
"title": "<INPUT-SCHEMA-TITLE>",
"type": "object",
"schemaVersion": 1,
"properties": {
/* define input fields here */
},
"properties": {/* define input fields here */},
"required": []
}
```
Expand Down Expand Up @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st
{
"actorOutputSchemaVersion": 1,
"title": "<OUTPUT-SCHEMA-TITLE>",
"properties": {
/* define your outputs here */
}
"properties": {/* define your outputs here */}
}
```

Expand Down
8 changes: 2 additions & 6 deletions agent-bases/ts.AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c
"title": "<INPUT-SCHEMA-TITLE>",
"type": "object",
"schemaVersion": 1,
"properties": {
/* define input fields here */
},
"properties": {/* define input fields here */},
"required": []
}
```
Expand Down Expand Up @@ -289,9 +287,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st
{
"actorOutputSchemaVersion": 1,
"title": "<OUTPUT-SCHEMA-TITLE>",
"properties": {
/* define your outputs here */
}
"properties": {/* define your outputs here */}
}
```

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 2 additions & 6 deletions templates/js-bootstrap-cheerio-crawler/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c
"title": "<INPUT-SCHEMA-TITLE>",
"type": "object",
"schemaVersion": 1,
"properties": {
/* define input fields here */
},
"properties": {/* define input fields here */},
"required": []
}
```
Expand Down Expand Up @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st
{
"actorOutputSchemaVersion": 1,
"title": "<OUTPUT-SCHEMA-TITLE>",
"properties": {
/* define your outputs here */
}
"properties": {/* define your outputs here */}
}
```

Expand Down
8 changes: 2 additions & 6 deletions templates/js-crawlee-cheerio/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c
"title": "<INPUT-SCHEMA-TITLE>",
"type": "object",
"schemaVersion": 1,
"properties": {
/* define input fields here */
},
"properties": {/* define input fields here */},
"required": []
}
```
Expand Down Expand Up @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st
{
"actorOutputSchemaVersion": 1,
"title": "<OUTPUT-SCHEMA-TITLE>",
"properties": {
/* define your outputs here */
}
"properties": {/* define your outputs here */}
}
```

Expand Down
8 changes: 2 additions & 6 deletions templates/js-crawlee-playwright-camoufox/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c
"title": "<INPUT-SCHEMA-TITLE>",
"type": "object",
"schemaVersion": 1,
"properties": {
/* define input fields here */
},
"properties": {/* define input fields here */},
"required": []
}
```
Expand Down Expand Up @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st
{
"actorOutputSchemaVersion": 1,
"title": "<OUTPUT-SCHEMA-TITLE>",
"properties": {
/* define your outputs here */
}
"properties": {/* define your outputs here */}
}
```

Expand Down
8 changes: 2 additions & 6 deletions templates/js-crawlee-playwright-chrome/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c
"title": "<INPUT-SCHEMA-TITLE>",
"type": "object",
"schemaVersion": 1,
"properties": {
/* define input fields here */
},
"properties": {/* define input fields here */},
"required": []
}
```
Expand Down Expand Up @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st
{
"actorOutputSchemaVersion": 1,
"title": "<OUTPUT-SCHEMA-TITLE>",
"properties": {
/* define your outputs here */
}
"properties": {/* define your outputs here */}
}
```

Expand Down
8 changes: 2 additions & 6 deletions templates/js-crawlee-puppeteer-chrome/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c
"title": "<INPUT-SCHEMA-TITLE>",
"type": "object",
"schemaVersion": 1,
"properties": {
/* define input fields here */
},
"properties": {/* define input fields here */},
"required": []
}
```
Expand Down Expand Up @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st
{
"actorOutputSchemaVersion": 1,
"title": "<OUTPUT-SCHEMA-TITLE>",
"properties": {
/* define your outputs here */
}
"properties": {/* define your outputs here */}
}
```

Expand Down
8 changes: 2 additions & 6 deletions templates/js-cypress/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c
"title": "<INPUT-SCHEMA-TITLE>",
"type": "object",
"schemaVersion": 1,
"properties": {
/* define input fields here */
},
"properties": {/* define input fields here */},
"required": []
}
```
Expand Down Expand Up @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st
{
"actorOutputSchemaVersion": 1,
"title": "<OUTPUT-SCHEMA-TITLE>",
"properties": {
/* define your outputs here */
}
"properties": {/* define your outputs here */}
}
```

Expand Down
8 changes: 2 additions & 6 deletions templates/js-empty/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c
"title": "<INPUT-SCHEMA-TITLE>",
"type": "object",
"schemaVersion": 1,
"properties": {
/* define input fields here */
},
"properties": {/* define input fields here */},
"required": []
}
```
Expand Down Expand Up @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st
{
"actorOutputSchemaVersion": 1,
"title": "<OUTPUT-SCHEMA-TITLE>",
"properties": {
/* define your outputs here */
}
"properties": {/* define your outputs here */}
}
```

Expand Down
8 changes: 2 additions & 6 deletions templates/js-langchain/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c
"title": "<INPUT-SCHEMA-TITLE>",
"type": "object",
"schemaVersion": 1,
"properties": {
/* define input fields here */
},
"properties": {/* define input fields here */},
"required": []
}
```
Expand Down Expand Up @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st
{
"actorOutputSchemaVersion": 1,
"title": "<OUTPUT-SCHEMA-TITLE>",
"properties": {
/* define your outputs here */
}
"properties": {/* define your outputs here */}
}
```

Expand Down
8 changes: 2 additions & 6 deletions templates/js-langgraph-agent/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c
"title": "<INPUT-SCHEMA-TITLE>",
"type": "object",
"schemaVersion": 1,
"properties": {
/* define input fields here */
},
"properties": {/* define input fields here */},
"required": []
}
```
Expand Down Expand Up @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st
{
"actorOutputSchemaVersion": 1,
"title": "<OUTPUT-SCHEMA-TITLE>",
"properties": {
/* define your outputs here */
}
"properties": {/* define your outputs here */}
}
```

Expand Down
8 changes: 2 additions & 6 deletions templates/js-standby/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c
"title": "<INPUT-SCHEMA-TITLE>",
"type": "object",
"schemaVersion": 1,
"properties": {
/* define input fields here */
},
"properties": {/* define input fields here */},
"required": []
}
```
Expand Down Expand Up @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st
{
"actorOutputSchemaVersion": 1,
"title": "<OUTPUT-SCHEMA-TITLE>",
"properties": {
/* define your outputs here */
}
"properties": {/* define your outputs here */}
}
```

Expand Down
8 changes: 2 additions & 6 deletions templates/js-start/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c
"title": "<INPUT-SCHEMA-TITLE>",
"type": "object",
"schemaVersion": 1,
"properties": {
/* define input fields here */
},
"properties": {/* define input fields here */},
"required": []
}
```
Expand Down Expand Up @@ -286,9 +284,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st
{
"actorOutputSchemaVersion": 1,
"title": "<OUTPUT-SCHEMA-TITLE>",
"properties": {
/* define your outputs here */
}
"properties": {/* define your outputs here */}
}
```

Expand Down
8 changes: 2 additions & 6 deletions templates/python-beautifulsoup/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c
"title": "<INPUT-SCHEMA-TITLE>",
"type": "object",
"schemaVersion": 1,
"properties": {
/* define input fields here */
},
"properties": {/* define input fields here */},
"required": []
}
```
Expand Down Expand Up @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st
{
"actorOutputSchemaVersion": 1,
"title": "<OUTPUT-SCHEMA-TITLE>",
"properties": {
/* define your outputs here */
}
"properties": {/* define your outputs here */}
}
```

Expand Down
8 changes: 2 additions & 6 deletions templates/python-crawlee-beautifulsoup/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,7 @@ The input schema defines the input parameters for an Actor. It's a JSON object c
"title": "<INPUT-SCHEMA-TITLE>",
"type": "object",
"schemaVersion": 1,
"properties": {
/* define input fields here */
},
"properties": {/* define input fields here */},
"required": []
}
```
Expand Down Expand Up @@ -288,9 +286,7 @@ The Actor output schema builds upon the schemas for the dataset and key-value st
{
"actorOutputSchemaVersion": 1,
"title": "<OUTPUT-SCHEMA-TITLE>",
"properties": {
/* define your outputs here */
}
"properties": {/* define your outputs here */}
}
```

Expand Down
Loading
Loading