No description available.
Record Key
tid
Timestamp-based ID
Properties
code
string
Required
TS/JS source, must export default async function
maxLength: 100000 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Required
No description available.
maxLength: 1024 bytesinputSchema
unknown
Required
JSON Schema for tool input
lastUpdated
string
datetime
Optional
An RFC 3339 formatted timestamp.
name
string
Required
No description available.
maxLength: 64 bytesrequiredCommands
array
of
string
Optional
No description available.
requiredSecrets
array
of
string
Optional
No description available.
requiredTools
array
of
string
Optional
Tools this tool chains to (AT URIs or built-in names)
requiresNetwork
boolean
Optional
No description available.
requiresWorkspace
boolean
Optional
No description available.
version
integer
Optional
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"description",
"code",
"inputSchema",
"createdAt"
],
"properties": {
"code": {
"type": "string",
"maxLength": 100000,
"description": "TS/JS source, must export default async function"
},
"name": {
"type": "string",
"maxLength": 64
},
"version": {
"type": "integer"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 1024
},
"inputSchema": {
"type": "unknown",
"description": "JSON Schema for tool input"
},
"lastUpdated": {
"type": "string",
"format": "datetime"
},
"requiredTools": {
"type": "array",
"items": {
"type": "string"
},
"description": "Tools this tool chains to (AT URIs or built-in names)"
},
"requiredSecrets": {
"type": "array",
"items": {
"type": "string"
}
},
"requiresNetwork": {
"type": "boolean"
},
"requiredCommands": {
"type": "array",
"items": {
"type": "string"
}
},
"requiresWorkspace": {
"type": "boolean"
}
}
}
}