cli.md

 1When MCP tools are unavailable, use `lune` CLI. Destructive actions are interactive unless supplied `--force`.
 2
 3## Showing task details
 4
 5```bash
 6lune task show ID
 7```
 8
 9Accepts UUID or `lunatask://` deep link. Due to encryption, name/note aren't visible—only metadata.
10
11## Updating status
12
13```bash
14lune task update ID -s STATUS
15```
16
17Valid statuses depend on the area's workflow (see `lune area list`).
18
19## Updating notes
20
21```bash
22lune task update ID -n "$(cat <<'EOF'
23Intro paragraph
24
25# Section
26
27Content
28
29---
30
31Appended content
32
33EOF
34)"
35```
36
37Notes are replaced entirely, so reproduce original content when appending.
38
39## Marking complete
40
41```bash
42lune done ID
43```