When MCP tools are unavailable, use `lune` CLI. Destructive actions are interactive unless supplied `--force`.

**Try `lune` directly first**—it integrates with the system keyring. Only fall back to the `resolving-secrets` skill if the user isn't using keyring-based credential storage.

## Showing task details

```bash
lune task show ID
```

Accepts UUID or `lunatask://` deep link. Due to encryption, name/note aren't visible—only metadata.

## Updating status

```bash
lune task update ID -s STATUS
```

Valid statuses depend on the area's workflow (see `lune area list`).

## Updating notes

```bash
lune task update ID -n "$(cat <<'EOF'
Intro paragraph

# Section

Content

---

Appended content

EOF
)"
```

Notes are replaced entirely, so reproduce original content when appending.

## Marking complete

```bash
lune done ID
```
