td_read_project_file
Extract and read specific files from Treasure Data project archives to examine SQL queries, workflow definitions, and other project content without fully extracting the archive.
Instructions
Read the contents of a specific file from a project archive.
This tool extracts and reads a specific file from a project archive,
returning its contents. This allows examining SQL queries, workflow
definitions, and other files without fully extracting the archive.
Args:
archive_path: The path to the downloaded project archive (.tar.gz file)
file_path: The path of the file within the archive to read
Input Schema
Name | Required | Description | Default |
---|---|---|---|
archive_path | Yes | ||
file_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"archive_path": {
"title": "Archive Path",
"type": "string"
},
"file_path": {
"title": "File Path",
"type": "string"
}
},
"required": [
"archive_path",
"file_path"
],
"type": "object"
}