credentials
Analyze credential requirements for workflows without exposing actual values, generate environment templates, or display setup instructions for secure workflow configuration.
Instructions
Analyze credential requirements for workflows (secure - never exposes actual values)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Action to perform: analyze requirements, show setup instructions, or generate .env.example |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Action to perform: analyze requirements, show setup instructions, or generate .env.example",
"enum": [
"analyze",
"instructions",
"generate-env"
],
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}