@rehpic/vcli 0.1.0-beta.6.1 → 0.1.0-beta.61.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 +17 -2
- package/dist/index.js +3393 -106
- package/dist/index.js.map +1 -1
- package/native/VectorMenuBar.app/Contents/Info.plist +26 -0
- package/native/VectorMenuBar.app/Contents/MacOS/VectorMenuBar +0 -0
- package/native/VectorMenuBar.app/Contents/Resources/vector-menubar.png +0 -0
- package/native/VectorMenuBar.app/Contents/Resources/vector-menubar@2x.png +0 -0
- package/package.json +5 -2
- package/scripts/build-menubar-app.js +117 -0
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
|
|
|
@@ -118,6 +124,7 @@ vcli issue assignments API-1
|
|
|
118
124
|
vcli issue set-priority API-1 High
|
|
119
125
|
vcli issue replace-assignees API-1 "alice,bob"
|
|
120
126
|
vcli issue comment API-1 --body "Investigating now."
|
|
127
|
+
vcli issue link-github API-1 "https://github.com/acme/api/pull/123"
|
|
121
128
|
```
|
|
122
129
|
|
|
123
130
|
Invites and notifications:
|
|
@@ -187,6 +194,14 @@ Validation errors when creating teams or projects
|
|
|
187
194
|
|
|
188
195
|
- Use short slug-like keys such as `eng`, `api`, or `mobile-platform`.
|
|
189
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
|
+
|
|
190
205
|
## Help
|
|
191
206
|
|
|
192
207
|
Inspect command groups directly:
|