@rehpic/vcli 0.1.0-beta.10.1 → 0.1.0-beta.101.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 +25 -5
- package/dist/index.js +4634 -53
- 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/native/VectorMenuBar.app/Contents/_CodeSignature/CodeResources +139 -0
- package/package.json +16 -3
- package/scripts/build-menubar-app.js +141 -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
|
|
|
@@ -36,9 +42,12 @@ The app URL is required. `vcli` resolves it from:
|
|
|
36
42
|
- the saved profile session
|
|
37
43
|
- `NEXT_PUBLIC_APP_URL`
|
|
38
44
|
|
|
39
|
-
The Convex URL
|
|
45
|
+
The Convex URL resolves from:
|
|
40
46
|
|
|
41
|
-
-
|
|
47
|
+
- `--convex-url <url>`
|
|
48
|
+
- the saved profile session
|
|
49
|
+
- the app's `/api/config` endpoint
|
|
50
|
+
- `NEXT_PUBLIC_CONVEX_URL` or `CONVEX_URL` as local fallbacks when the app reports the default local URL
|
|
42
51
|
|
|
43
52
|
You can override either with flags:
|
|
44
53
|
|
|
@@ -118,6 +127,8 @@ vcli issue assignments API-1
|
|
|
118
127
|
vcli issue set-priority API-1 High
|
|
119
128
|
vcli issue replace-assignees API-1 "alice,bob"
|
|
120
129
|
vcli issue comment API-1 --body "Investigating now."
|
|
130
|
+
vcli issue link-github API-1 "https://github.com/acme/api/pull/123"
|
|
131
|
+
vcli issue link-github API-2 "https://github.com/acme/api/pull/123"
|
|
121
132
|
```
|
|
122
133
|
|
|
123
134
|
Invites and notifications:
|
|
@@ -181,12 +192,21 @@ Auth errors against the wrong app
|
|
|
181
192
|
|
|
182
193
|
Convex connection errors
|
|
183
194
|
|
|
184
|
-
-
|
|
195
|
+
- Make sure `--app-url` points at the right Vector app first, since `vcli` fetches the Convex URL from that app when possible.
|
|
196
|
+
- Otherwise set `--convex-url`, `NEXT_PUBLIC_CONVEX_URL`, or `CONVEX_URL`.
|
|
185
197
|
|
|
186
198
|
Validation errors when creating teams or projects
|
|
187
199
|
|
|
188
200
|
- Use short slug-like keys such as `eng`, `api`, or `mobile-platform`.
|
|
189
201
|
|
|
202
|
+
## AI Agent Skill
|
|
203
|
+
|
|
204
|
+
Install the Vector CLI skill for your AI coding agent:
|
|
205
|
+
|
|
206
|
+
```bash
|
|
207
|
+
npx skills add xrehpicx/vector-skill
|
|
208
|
+
```
|
|
209
|
+
|
|
190
210
|
## Help
|
|
191
211
|
|
|
192
212
|
Inspect command groups directly:
|