AI agent skill for the Vector CLI (vcli) — a command-line interface for Vector, an open-source project management platform.
npx skills add xrehpicx/vector-skill# npm
npm install -g @rehpic/vcli
# pnpm
pnpm add -g @rehpic/vcli
# yarn
yarn global add @rehpic/vcli
# bun
bun add -g @rehpic/vcliRequires Node.js >= 20.19.0.
This skill teaches AI agents how to use vcli. It covers:
- Authentication — signup, login, logout, session management, profiles
- Organizations — create, manage members, invites, roles
- Teams & Projects — CRUD, member management, leads
- Issues — create, assign, comment, priorities, states, time estimates, sub-issues
- Documents & Folders — create, update, move, organize
- Roles (RBAC) — custom roles, permissions, assignment
- Notifications — inbox, preferences, push subscriptions
- Workspace Discovery — reference data, global search, permission checks
- Activity Feeds — per project, team, issue, or document
- Issue States, Priorities, Project Statuses — customize metadata
- Platform Admin — branding, signup policies
- Scripting — JSON output, profiles, automation patterns
- Troubleshooting — common errors and fixes
vcli --app-url http://localhost:3000 auth signup \
--email you@example.com --username you --password 'secret'
vcli org create --name "Acme" --slug acme
vcli org use acme
vcli team create --key eng --name "Engineering"
vcli project create --key api --name "API" --team eng
vcli issue create --title "First issue" --project api --team eng