4 min read
abm-dev angles
Manage the research angles your org has saved, read their results for any enrichment, and resolve lazy angles on demand. The concept: see Research angles.
Commands
# List the org's saved angles
abm-dev angles list [--include-archived] [--json]
# Create one
abm-dev angles create \
--name growth_signal_summary \
--applies-to company \
--mode eager \
--instructions "Summarise growth signals in 2 sentences. Cite each claim." \
--evidence-method perplexity \
--evidence-method tavily \
--max-cost-usd 0.25
# Archive (soft delete)
abm-dev angles archive <angle-id>
# Read cached results for an enrichment
abm-dev angles results <enrichment-id> [--json]
# Resolve a lazy angle on demand
abm-dev angles resolve <enrichment-id> <angle-id>Modes at a glance
eager
Runs automatically on every enrichment that applies. Costs per enrichment.
lazy
Saved but doesn’t fire. Call abm-dev angles resolve when you want it.
inline
Passed in the enrichment request body, not saved. Use the REST API directly — the CLI runs saved angles only.