Skip to content

Commit 04937da

Browse files
committed
docs: update readme to include new commands
1 parent c91fbcd commit 04937da

File tree

1 file changed

+20
-4
lines changed

1 file changed

+20
-4
lines changed

README.md

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,20 @@ brew install --formula asana
4444
```
4545
3. Follow the prompts to paste your token and select your default workspace.
4646

47+
To check the current status of your authentication and the Asana API:
48+
```shell
49+
asana auth status
50+
```
51+
4752
## Configuration
4853

4954
Set or get your default workspace:
5055

5156
```shell
52-
asana config set default-workspace # or the shorter alias
57+
asana config set default-workspace
5358
asana config set dw
5459

55-
asana config get default-workspace # or the shorter alias
60+
asana config get default-workspace
5661
asana config get dw
5762
```
5863

@@ -62,15 +67,26 @@ View your tasks:
6267

6368
```shell
6469
asana tasks list # List all your tasks
70+
asana tasks list --sort due-desc # Sort tasks by descending due date
6571
asana tasks view # Interactive task viewer with details
6672
asana tasks update # Interactive task updater
6773
```
6874

69-
## Advanced Usage
75+
View the projects in your workspace:
76+
```shell
77+
asana projects list # List all the projects
78+
asana projects list -l 25 --sort desc # List with options
79+
```
80+
81+
View the users in your workspace:
82+
```shell
83+
asana users list # List all the users
84+
asana users list -l 25 --sort desc # List with options
85+
```
7086

87+
For more usage:
7188
```shell
7289
asana help # Show all available commands
73-
asana workspaces list # List all workspaces
7490
```
7591

7692
# Contributing

0 commit comments

Comments
 (0)