Complete command reference for the Freddy Streamline CLI tool.
See CLI Installation for setup instructions.
Initialize a new Streamline automation project.
streamline init [project-name]Options:
--template <name>- Use a project template--git <url>- Initialize with Git repository
Example:
streamline init my-automation
streamline init my-automation --template basicDeploy automation to Freddy platform.
streamline deployOptions:
--env <environment>- Target environment (dev, staging, production)--watch- Watch for changes and auto-deploy
Example:
streamline deploy
streamline deploy --env productionRun automation locally for testing.
streamline run [entry-file]Options:
--params <json>- Pass parameters as JSON--debug- Enable debug mode
Example:
streamline run
streamline run main.py --params '{"key":"value"}'View automation execution logs.
streamline logs [automation-id]Options:
--follow- Follow log output--limit <n>- Limit number of log entries
Example:
streamline logs sauto_abc123
streamline logs sauto_abc123 --followList all automations in your organization.
streamline listOptions:
--org <org-id>- Filter by organization
Example:
streamline list
streamline list --org org_xyz789Delete an automation.
streamline delete <automation-id>Options:
--force- Skip confirmation prompt
Example:
streamline delete sauto_abc123
streamline delete sauto_abc123 --forceManage CLI configuration.
streamline config <key> [value]Example:
streamline config api_key $FREDDY_API_KEY
streamline config default_org org_xyz789Display help information.
streamline help [command]Example:
streamline help
streamline help deployAvailable for all commands:
--api-key <key>- Override API key--verbose- Enable verbose output--quiet- Suppress non-error output--version- Display CLI version
FREDDY_API_KEY- API authentication keySTREAMLINE_ORG_ID- Default organization IDSTREAMLINE_ENV- Default environment (dev, staging, production)
The CLI uses ~/.streamline/config.json for persistent configuration:
{
"api_key": "your-api-key",
"default_org": "org_xyz789",
"default_env": "production"
}0- Success1- General error2- Invalid arguments3- Authentication error4- Network error
- CLI Installation - Install and setup
- Getting Started - Create your first automation
- GitHub Deployment - Deploy from GitHub
- API Reference - REST API documentation