azdo-cli 0.2.0 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +122 -26
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,31 +1,143 @@
|
|
|
1
1
|
# azdo-cli
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Azure DevOps CLI focused on work item read/write workflows.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/azdo-cli)
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
[](https://sonarcloud.io/summary/new_code?id=alkampfergit_azdo-cli)
|
|
8
8
|
|
|
9
|
+
## Features
|
|
10
|
+
|
|
11
|
+
- Retrieve work items with readable output (`get-item`)
|
|
12
|
+
- Update work item state (`set-state`)
|
|
13
|
+
- Assign and unassign work items (`assign`)
|
|
14
|
+
- Set any work item field by reference name (`set-field`)
|
|
15
|
+
- Read rich-text fields as markdown (`get-md-field`)
|
|
16
|
+
- Set rich-text fields as markdown from inline text, file, or stdin (`set-md-field`)
|
|
17
|
+
- Persist org/project/default fields in local config (`config`)
|
|
18
|
+
- Store PAT in OS credential store (or use `AZDO_PAT`)
|
|
19
|
+
|
|
9
20
|
## Installation
|
|
10
21
|
|
|
11
22
|
```bash
|
|
12
23
|
npm install -g azdo-cli
|
|
13
24
|
```
|
|
14
25
|
|
|
15
|
-
##
|
|
26
|
+
## Authentication and Context Resolution
|
|
27
|
+
|
|
28
|
+
PAT resolution order:
|
|
29
|
+
1. `AZDO_PAT` environment variable
|
|
30
|
+
2. Stored credential from OS keyring
|
|
31
|
+
3. Interactive PAT prompt (then stored for next runs)
|
|
32
|
+
|
|
33
|
+
Org/project resolution order:
|
|
34
|
+
1. `--org` + `--project` flags
|
|
35
|
+
2. Saved config (`azdo config set org ...`, `azdo config set project ...`)
|
|
36
|
+
3. Azure DevOps `origin` git remote auto-detection
|
|
37
|
+
|
|
38
|
+
## Quick Start
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
# 1) Configure defaults once
|
|
42
|
+
azdo config set org myorg
|
|
43
|
+
azdo config set project myproject
|
|
44
|
+
|
|
45
|
+
# 2) Read a work item
|
|
46
|
+
azdo get-item 12345
|
|
47
|
+
|
|
48
|
+
# 3) Update state
|
|
49
|
+
azdo set-state 12345 "Active"
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Command Cheat Sheet
|
|
53
|
+
|
|
54
|
+
| Command | Purpose | Common Flags |
|
|
55
|
+
| --- | --- | --- |
|
|
56
|
+
| `azdo get-item <id>` | Read a work item | `--short`, `--fields`, `--org`, `--project` |
|
|
57
|
+
| `azdo set-state <id> <state>` | Change work item state | `--json`, `--org`, `--project` |
|
|
58
|
+
| `azdo assign <id> [name]` | Assign or unassign owner | `--unassign`, `--json`, `--org`, `--project` |
|
|
59
|
+
| `azdo set-field <id> <field> <value>` | Update any field | `--json`, `--org`, `--project` |
|
|
60
|
+
| `azdo get-md-field <id> <field>` | Get field as markdown | `--org`, `--project` |
|
|
61
|
+
| `azdo set-md-field <id> <field> [content]` | Set markdown field | `--file`, `--json`, `--org`, `--project` |
|
|
62
|
+
| `azdo config <subcommand>` | Manage saved settings | `set`, `get`, `list`, `unset`, `wizard`, `--json` |
|
|
63
|
+
| `azdo clear-pat` | Remove stored PAT | none |
|
|
64
|
+
|
|
65
|
+
## Command Reference
|
|
66
|
+
|
|
67
|
+
### Core
|
|
16
68
|
|
|
17
69
|
```bash
|
|
18
|
-
#
|
|
19
|
-
azdo
|
|
70
|
+
# Get full work item
|
|
71
|
+
azdo get-item 12345
|
|
20
72
|
|
|
21
|
-
#
|
|
22
|
-
azdo --
|
|
23
|
-
|
|
73
|
+
# Get short view
|
|
74
|
+
azdo get-item 12345 --short
|
|
75
|
+
|
|
76
|
+
# Include extra fields for this call
|
|
77
|
+
azdo get-item 12345 --fields "System.Tags,Microsoft.VSTS.Common.Priority"
|
|
24
78
|
```
|
|
25
79
|
|
|
26
|
-
|
|
80
|
+
```bash
|
|
81
|
+
# Set state
|
|
82
|
+
azdo set-state 12345 "Closed"
|
|
83
|
+
|
|
84
|
+
# Assign / unassign
|
|
85
|
+
azdo assign 12345 "someone@company.com"
|
|
86
|
+
azdo assign 12345 --unassign
|
|
87
|
+
|
|
88
|
+
# Set generic field
|
|
89
|
+
azdo set-field 12345 System.Title "Updated title"
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
### Markdown Field Commands
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
# Read field and auto-convert HTML -> markdown
|
|
96
|
+
azdo get-md-field 12345 System.Description
|
|
27
97
|
|
|
28
|
-
|
|
98
|
+
# Set markdown inline
|
|
99
|
+
azdo set-md-field 12345 System.Description "# Title\n\nSome **bold** text"
|
|
100
|
+
|
|
101
|
+
# Set markdown from file
|
|
102
|
+
azdo set-md-field 12345 System.Description --file ./description.md
|
|
103
|
+
|
|
104
|
+
# Set markdown from stdin
|
|
105
|
+
cat description.md | azdo set-md-field 12345 System.Description
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
### Configuration
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
# List settings
|
|
112
|
+
azdo config list
|
|
113
|
+
|
|
114
|
+
# Interactive setup
|
|
115
|
+
azdo config wizard
|
|
116
|
+
|
|
117
|
+
# Set/get/unset values
|
|
118
|
+
azdo config set fields "System.Tags,Custom.Priority"
|
|
119
|
+
azdo config get fields
|
|
120
|
+
azdo config unset fields
|
|
121
|
+
|
|
122
|
+
# JSON output
|
|
123
|
+
azdo config list --json
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
### Credential Management
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
# Remove stored PAT from keyring
|
|
130
|
+
azdo clear-pat
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
## JSON Output
|
|
134
|
+
|
|
135
|
+
These commands support `--json` for machine-readable output:
|
|
136
|
+
- `set-state`
|
|
137
|
+
- `assign`
|
|
138
|
+
- `set-field`
|
|
139
|
+
- `set-md-field`
|
|
140
|
+
- `config set|get|list|unset`
|
|
29
141
|
|
|
30
142
|
## Development
|
|
31
143
|
|
|
@@ -47,27 +159,11 @@ npm install
|
|
|
47
159
|
| Command | Description |
|
|
48
160
|
| --- | --- |
|
|
49
161
|
| `npm run build` | Build the CLI with tsup |
|
|
50
|
-
| `npm test` |
|
|
162
|
+
| `npm test` | Build and run tests with vitest |
|
|
51
163
|
| `npm run lint` | Lint source files with ESLint |
|
|
52
164
|
| `npm run typecheck` | Type-check with tsc (no emit) |
|
|
53
165
|
| `npm run format` | Check formatting with Prettier |
|
|
54
166
|
|
|
55
|
-
### Tech Stack
|
|
56
|
-
|
|
57
|
-
- **TypeScript 5.x** (strict mode, ES modules)
|
|
58
|
-
- **commander.js** — CLI framework
|
|
59
|
-
- **tsup** — Bundler (single-file ESM output)
|
|
60
|
-
- **vitest** — Test runner
|
|
61
|
-
- **ESLint + Prettier** — Linting and formatting
|
|
62
|
-
|
|
63
|
-
### Branch Strategy
|
|
64
|
-
|
|
65
|
-
This project follows **GitFlow**:
|
|
66
|
-
|
|
67
|
-
- `master` — stable releases
|
|
68
|
-
- `develop` — integration branch
|
|
69
|
-
- `feature/*` — feature branches off `develop`
|
|
70
|
-
|
|
71
167
|
## License
|
|
72
168
|
|
|
73
169
|
[MIT](LICENSE)
|