Install
openclaw skills install gitverseGitVerse API integration for working with repositories, issues, and pull requests. Use when Codex needs to interact with GitVerse (gitverse.ru) for operation...
openclaw skills install gitverseOpenClaw skill for GitVerse API integration.
Use this skill when you need to:
cd ~/.nvm/versions/node/v22.12.0/lib/node_modules/openclaw/skills/gitverse
npm install
npm run build
Set environment variable:
export GITVERSE_TOKEN=your_token_here
Or create .env file in the skill directory:
GITVERSE_TOKEN=your_token_here
Run commands via node:
node ~/.nvm/versions/node/v22.12.0/lib/node_modules/openclaw/skills/gitverse/dist/index.js <command>
# List your repositories
node dist/index.js repos list
# List organization repositories
node dist/index.js repos list --org <org>
# Get repository info
node dist/index.js repos info --owner <owner> --repo <repo>
# List issues
node dist/index.js issues list --owner <owner> --repo <repo>
node dist/index.js issues list --owner <owner> --repo <repo> --state open
# View issue
node dist/index.js issues view --owner <owner> --repo <repo> --number <number>
# List issue comments
node dist/index.js issues comments --owner <owner> --repo <repo> --number <number>
# List pull requests
node dist/index.js pulls list --owner <owner> --repo <repo>
node dist/index.js pulls list --owner <owner> --repo <repo> --state open
# View pull request
node dist/index.js pulls view --owner <owner> --repo <repo> --number <number>
# Create pull request
node dist/index.js pulls create --owner <owner> --repo <repo> --title "Title" --head feature --base main
# List PR commits
node dist/index.js pulls commits --owner <owner> --repo <repo> --number <number>
# List PR files
node dist/index.js pulls files --owner <owner> --repo <repo> --number <number>
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
This skill is published on ClawHub.
To install:
clawhub install gitverse
Source code available on GitVerse.
MIT-0