@rehpic/vcli 0.1.0-beta.5.1 → 0.1.0-beta.50.1
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 +20 -2
- package/dist/index.js +1967 -38
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<picture>
|
|
3
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/xrehpicx/vector/main/public/icons/vector-wordmark-dark.png">
|
|
4
|
+
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/xrehpicx/vector/main/public/icons/vector-wordmark.png">
|
|
5
|
+
<img alt="Vector" src="https://raw.githubusercontent.com/xrehpicx/vector/main/public/icons/vector-wordmark.png" width="220">
|
|
6
|
+
</picture>
|
|
7
|
+
</p>
|
|
2
8
|
|
|
3
|
-
CLI for interacting with a Vector workspace from the terminal
|
|
9
|
+
<p align="center">CLI for interacting with a Vector workspace from the terminal.</p>
|
|
4
10
|
|
|
5
11
|
This package wraps the same auth and Convex-backed workflows used by the app, so you can manage orgs, roles, teams, projects, issues, documents, notifications, and admin settings without opening the UI.
|
|
6
12
|
|
|
@@ -8,6 +14,9 @@ This package wraps the same auth and Convex-backed workflows used by the app, so
|
|
|
8
14
|
|
|
9
15
|
```bash
|
|
10
16
|
npm install -g @rehpic/vcli
|
|
17
|
+
yarn global add @rehpic/vcli
|
|
18
|
+
pnpm add -g @rehpic/vcli
|
|
19
|
+
bun add -g @rehpic/vcli
|
|
11
20
|
```
|
|
12
21
|
|
|
13
22
|
Then verify the install:
|
|
@@ -115,6 +124,7 @@ vcli issue assignments API-1
|
|
|
115
124
|
vcli issue set-priority API-1 High
|
|
116
125
|
vcli issue replace-assignees API-1 "alice,bob"
|
|
117
126
|
vcli issue comment API-1 --body "Investigating now."
|
|
127
|
+
vcli issue link-github API-1 "https://github.com/acme/api/pull/123"
|
|
118
128
|
```
|
|
119
129
|
|
|
120
130
|
Invites and notifications:
|
|
@@ -184,6 +194,14 @@ Validation errors when creating teams or projects
|
|
|
184
194
|
|
|
185
195
|
- Use short slug-like keys such as `eng`, `api`, or `mobile-platform`.
|
|
186
196
|
|
|
197
|
+
## AI Agent Skill
|
|
198
|
+
|
|
199
|
+
Install the Vector CLI skill for your AI coding agent:
|
|
200
|
+
|
|
201
|
+
```bash
|
|
202
|
+
npx skills add xrehpicx/vector-skill
|
|
203
|
+
```
|
|
204
|
+
|
|
187
205
|
## Help
|
|
188
206
|
|
|
189
207
|
Inspect command groups directly:
|