read_skill_env
Lists environment variable keys configured for a skill to verify required credentials and API keys are properly set up before running scripts.
Instructions
Read and list all environment variable keys defined in a skill's .env file.
This tool helps you understand what environment variables are configured for a skill:
Lists only the KEY names (values are hidden for security)
Shows whether a .env file exists for the skill
Returns an empty message if no variables are set
PARAMETERS:
skill_name: The name of the skill directory
USE CASES:
Check what environment variables a skill needs before running scripts
Verify that required credentials or API keys are configured
Understand the expected configuration for a skill
Debug missing environment variables
SECURITY NOTE:
Environment variable VALUES are intentionally hidden and not returned
This prevents accidental exposure of secrets or credentials
To set or update variables, use update_skill_env tool
RETURNS: A list of environment variable key names (e.g., API_KEY, DATABASE_URL)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
skill_name | Yes | Name of the skill |