-
-
Notifications
You must be signed in to change notification settings - Fork 303
Expand file tree
/
Copy pathplanify-cli.1
More file actions
174 lines (174 loc) · 3.93 KB
/
planify-cli.1
File metadata and controls
174 lines (174 loc) · 3.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
.TH PLANIFY-CLI 1 "April 2026" "planify-cli" "User Commands"
.SH NAME
planify-cli \- command-line interface for Planify task manager
.SH SYNOPSIS
.B planify-cli
<command> [OPTIONS]
.SH DESCRIPTION
.B planify-cli
is a command-line tool for managing tasks in Planify. It provides functionality to create, list, update tasks, and manage projects directly from the terminal.
.SH COMMANDS
.TP
.B add
Add a new task to Planify.
.sp
.B planify-cli add
[OPTIONS]
.TP
.B list
List tasks from a project.
.sp
.B planify-cli list
[OPTIONS]
.TP
.B update
Update an existing task. Only provided fields will be changed.
.sp
.B planify-cli update
[OPTIONS]
.TP
.B list-projects
List all projects.
.sp
.B planify-cli list-projects
.SH OPTIONS
.SS Global Options
.TP
.B \-h, \-\-help
Show help for the command.
.SS add command options:
.TP
.B \-c, \-\-content=CONTENT
Task content (required)
.TP
.B \-d, \-\-description=DESC
Task description
.TP
.B \-p, \-\-project=PROJECT
Project name (defaults to inbox)
.TP
.B \-i, \-\-project-id=ID
Project ID (preferred over name)
.TP
.B \-s, \-\-section=SECTION
Section name
.TP
.B \-S, \-\-section-id=ID
Section ID (preferred over name)
.TP
.B \-a, \-\-parent-id=ID
Parent task ID (creates a subtask)
.TP
.B \-P, \-\-priority=1-4
Priority: 1=high, 2=medium, 3=low, 4=none (default: 4)
.TP
.B \-D, \-\-due=DATE
Due date in YYYY-MM-DD format
.TP
.B \-l, \-\-labels=LABELS
Comma-separated list of label names
.TP
.B \-\-pin=true|false
Pin or unpin the task
.SS list command options:
.TP
.B \-p, \-\-project=PROJECT
Project name (defaults to inbox)
.TP
.B \-i, \-\-project-id=ID
Project ID (preferred over name)
.SS update command options:
.TP
.B \-t, \-\-task-id=ID
Task ID to update (required)
.TP
.B \-c, \-\-content=CONTENT
New task content
.TP
.B \-d, \-\-description=DESC
New task description
.TP
.B \-p, \-\-project=PROJECT
Move to project by name
.TP
.B \-i, \-\-project-id=ID
Move to project by ID (preferred over name)
.TP
.B \-s, \-\-section=SECTION
Section name
.TP
.B \-S, \-\-section-id=ID
Section ID (preferred over name)
.TP
.B \-a, \-\-parent-id=ID
New parent task ID
.TP
.B \-P, \-\-priority=1-4
Priority: 1=high, 2=medium, 3=low, 4=none
.TP
.B \-D, \-\-due=DATE
Due date in YYYY-MM-DD format
.TP
.B \-l, \-\-labels=LABELS
Comma-separated list of label names
.TP
.B \-\-complete=true|false
Mark task as complete or incomplete
.TP
.B \-\-pin=true|false
Pin or unpin the task
.SH EXAMPLES
.TP
.B 1. Get help for a specific command:
planify-cli add \-\-help
.br
planify-cli list \-\-help
.br
planify-cli update \-\-help
.TP
.B 2. Add a new high-priority task to the inbox:
planify-cli add \-c "Finish report" \-P 1
.TP
.B 3. Add a task with description and due date to a specific project:
planify-cli add \-c "Team meeting" \-d "Weekly sync" \-p "Work" \-D 2024-12-20
.TP
.B 4. List tasks from the inbox:
planify-cli list
.TP
.B 5. List tasks from a specific project:
planify-cli list \-p "Personal"
.TP
.B 6. Update a task's priority and mark as complete:
planify-cli update \-t TASK_ID \-P 2 \-\-complete=true
.TP
.B 7. List all projects:
planify-cli list-projects
.SH NOTES
• When both name and ID options are available (e.g., \-\-project and \-\-project-id), the ID option is preferred.
.br
• The update command only modifies fields that are explicitly provided.
.br
• Priority levels: 1 (highest) to 4 (none/lowest).
.br
• Date format must be YYYY-MM-DD for due dates.
.br
• Labels should be provided as a comma-separated list without spaces: label1,label2,label3.
.br
• You can find the official CLI documentation on https://useplanify.com/cli
.br
• Planify is primarily distributed via Flatpak and you can run its commands by:
.br
flatpak run --command=io.github.alainm23.planify.cli io.github.alainm23.planify <command>
.br
.SH SEE ALSO
.BR planify (1)
.BR planify-quick-add (1)
.SH BUGS
Report bugs to
.UR https://github.com/alainm23/planify/issues
the Planify issue tracker.
.UE
.SH AUTHOR
Planify Development Team
.SH COPYRIGHT
Copyright © 2023-2026 Alain M.