1When MCP tools are unavailable, use `lune` CLI. Destructive actions are interactive unless supplied `--force`.
2
3## Creating tasks
4
5```bash
6lune task add "Title" -a AREA_KEY -n "$(cat <<'EOF'
7Intro paragraph
8
9# Section
10
11Content
12
13EOF
14)"
15```
16
17<task_add_flags>
18-a --area Area key (required)
19-s --status Status (workflow-dependent)
20-n --note Task note (use - for stdin)
21-g --goal Goal key
22</task_add_flags>
23
24Output includes the task ID.
25
26## Updating notes
27
28```bash
29lune task update ID -n "$(cat <<'EOF'
30Intro paragraph
31
32# Section
33
34Content
35
36---
37
38Appended content
39
40EOF
41)"
42```
43
44Notes are replaced entirely, so reproduce original content when appending.
45
46## Listing
47
48```bash
49lune area list
50lune goal list -a projects # goals in area 'projects'
51```