Skip to content

Latest commit

 

History

History
93 lines (69 loc) · 2.42 KB

File metadata and controls

93 lines (69 loc) · 2.42 KB

CLI Reference

The aether CLI provides terminal access to all features.

Server

aether serve [--reload]          # Start the API server

Entity Discovery

aether discover                    # Run full entity discovery
aether discover --domain light     # Discover specific domain
aether discover --force            # Force re-discovery
aether entities                    # List all entities
aether entities --domain sensor    # Filter by domain

Devices & Areas

aether devices                     # List discovered devices
aether areas                       # List discovered areas

Chat

aether chat                        # Interactive chat session
aether chat --continue <id>        # Continue existing conversation

Automation Proposals

aether proposals list              # List proposals
aether proposals show <id>         # Show proposal details
aether proposals approve <id>      # Approve a proposal
aether proposals reject <id>       # Reject a proposal
aether proposals deploy <id>       # Deploy approved proposal to HA
aether proposals rollback <id>     # Rollback deployed proposal

Analysis

aether analyze energy --days 7     # Run energy analysis
aether analyze behavior            # Run behavioral analysis
aether analyze health              # Run health analysis
aether optimize behavior           # Run optimization analysis

Insights

aether insights                    # List generated insights
aether insight <id>                # Show insight details

HA Registry

aether automations                 # List HA automations
aether scripts                     # List HA scripts
aether scenes                      # List HA scenes
aether services                    # List known services
aether seed-services               # Seed common services into DB

Evaluation

aether evaluate                    # Evaluate recent agent traces
aether evaluate --traces 50        # Evaluate last 50 traces
aether evaluate --hours 48         # Evaluate traces from last 48 hours

System

aether status                      # Show system status
aether version                     # Show version info
aether ha-gaps                     # Show MCP capability gaps

See Also