/install gitverse
GitVerse Skill
OpenClaw skill for GitVerse API integration.
When to Use
Use this skill when you need to:
- List or view repositories
- List or view issues
- List, view, or create pull requests
- View repository information
Installation
cd ~/.nvm/versions/node/v22.12.0/lib/node_modules/openclaw/skills/gitverse
npm install
npm run build
Configuration
Set environment variable:
export GITVERSE_TOKEN=your_token_here
Or create .env file in the skill directory:
GITVERSE_TOKEN=your_token_here
Usage
Run commands via node:
node ~/.nvm/versions/node/v22.12.0/lib/node_modules/openclaw/skills/gitverse/dist/index.js \x3Ccommand>
Commands
Repositories
# List your repositories
node dist/index.js repos list
# List organization repositories
node dist/index.js repos list --org \x3Corg>
# Get repository info
node dist/index.js repos info --owner \x3Cowner> --repo \x3Crepo>
Issues
# List issues
node dist/index.js issues list --owner \x3Cowner> --repo \x3Crepo>
node dist/index.js issues list --owner \x3Cowner> --repo \x3Crepo> --state open
# View issue
node dist/index.js issues view --owner \x3Cowner> --repo \x3Crepo> --number \x3Cnumber>
# List issue comments
node dist/index.js issues comments --owner \x3Cowner> --repo \x3Crepo> --number \x3Cnumber>
Pull Requests
# List pull requests
node dist/index.js pulls list --owner \x3Cowner> --repo \x3Crepo>
node dist/index.js pulls list --owner \x3Cowner> --repo \x3Crepo> --state open
# View pull request
node dist/index.js pulls view --owner \x3Cowner> --repo \x3Crepo> --number \x3Cnumber>
# Create pull request
node dist/index.js pulls create --owner \x3Cowner> --repo \x3Crepo> --title "Title" --head feature --base main
# List PR commits
node dist/index.js pulls commits --owner \x3Cowner> --repo \x3Crepo> --number \x3Cnumber>
# List PR files
node dist/index.js pulls files --owner \x3Cowner> --repo \x3Crepo> --number \x3Cnumber>
Usage with OpenClaw
When you ask me to work with GitVerse, I will use this skill:
"Покажи мои репозитории"
→ node dist/index.js repos list
"Покажи issues в saic/ai_minister"
→ node dist/index.js issues list --owner saic --repo ai_minister
"Создай PR в saic/chatbot"
→ node dist/index.js pulls create --owner saic --repo chatbot --title "..." --head feature --base main
Notes
- Requires GITVERSE_TOKEN environment variable
- API base URL: https://api.gitverse.ru
- Rate limits are handled by the SDK
- All commands output JSON
Publishing to ClawHub
This skill is published on ClawHub.
To install:
clawhub install gitverse
Repository
Source code available on GitVerse.
License
MIT-0
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install gitverse - After installation, invoke the skill by name or use
/gitverse - Provide required inputs per the skill's parameter spec and get structured output
What is GitVerse API?
GitVerse API integration for working with repositories, issues, and pull requests. Use when Codex needs to interact with GitVerse (gitverse.ru) for operation... It is an AI Agent Skill for Claude Code / OpenClaw, with 332 downloads so far.
How do I install GitVerse API?
Run "/install gitverse" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is GitVerse API free?
Yes, GitVerse API is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does GitVerse API support?
GitVerse API is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created GitVerse API?
It is built and maintained by Vasiliy (@webchi); the current version is v1.0.0.