get_file
Retrieve a specific Penpot design file using its unique ID and cache it for programmatic access. Facilitates automated workflows by enabling AI models to interact with design files directly.
Instructions
Retrieve a Penpot file by its ID and cache it. Don't use this tool for code generation, use 'get_object_tree' instead.
Args:
file_id: The ID of the Penpot file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"file_id": {
"title": "File Id",
"type": "string"
}
},
"required": [
"file_id"
],
"title": "get_fileArguments",
"type": "object"
}