LoopLoop

Goals

List and track goals using the loop CLI.

Goals

The goals command group lets you view goals and their progress. Goals are measurable success indicators attached to projects, providing strategic direction for the system and its agents.

loop goals list

List all goals with optional status filtering and pagination.

loop goals list [options]

Options

FlagDefaultDescription
--status <status>allFilter by status (active, achieved, abandoned)
--limit <n>50Maximum number of results
--offset <n>0Pagination offset

Examples

List all goals:

loop goals list

Filter by status:

loop goals list --status active

Output as JSON:

loop goals list --json

Sample output

┌─────────────────────────────┬──────────┬──────────────┬──────────┬─────────────────┬──────────┬──────────┐
│ TITLE                       │ STATUS   │ METRIC       │ PROGRESS │ BAR             │ PROJECT  │ CREATED  │
├─────────────────────────────┼──────────┼──────────────┼──────────┼─────────────────┼──────────┼──────────┤
│ Increase sign-up conversion │ active   │ conversion   │ 3.2/4%   │ ████████████░░░ 80% │ clx1ab.. │ 5d ago   │
│ Reduce P99 latency          │ active   │ latency_ms   │ 180/150ms│ ████████░░░░░░░ 53% │ clx2bc.. │ 7d ago   │
│ Zero critical errors        │ achieved │ error_count  │ 0/0      │ ███████████████ 100%│ clx3cd.. │ 10d ago  │
└─────────────────────────────┴──────────┴──────────────┴──────────┴─────────────────┴──────────┴──────────┘
Showing 3 of 3 goals

The progress bar uses color coding:

ColorCondition
Green75% or above
Yellow25% to 74%
RedBelow 25%

Goal statuses

StatusDescription
activeCurrently being tracked and worked toward
achievedGoal has been met
abandonedGoal is no longer being pursued

How goals work

Goals provide strategic context for issue prioritization. When an issue is linked to a project that has an active goal, the dispatch queue gives it a bonus score. This means goal-aligned work is prioritized over unlinked work.

For more on how goals affect dispatch scoring, see Dispatch.