td_list_projects
List workflow projects to discover data pipelines, scheduled jobs, and processing workflows. Shows project names and IDs for navigation or detailed exploration with verbose mode.
Instructions
List workflow projects to find data pipelines and scheduled jobs.
Shows all workflow projects containing Digdag workflows, SQL queries, and
Python scripts. Returns names/IDs for navigation or verbose=True for details.
Common scenarios:
- Discover available data processing workflows
- Find specific project by browsing names
- Get project IDs for detailed exploration
- Audit workflow projects in the account
- List user projects (exclude system with include_system=False)
Projects contain .dig files defining scheduled data pipelines.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
all_results | No | ||
include_system | No | ||
limit | No | ||
offset | No | ||
verbose | No |
Input Schema (JSON Schema)
{
"properties": {
"all_results": {
"default": false,
"title": "All Results",
"type": "boolean"
},
"include_system": {
"default": false,
"title": "Include System",
"type": "boolean"
},
"limit": {
"default": 30,
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
},
"verbose": {
"default": false,
"title": "Verbose",
"type": "boolean"
}
},
"type": "object"
}