GitLab projects, MRs, and CI/CD operations
编程
gitverse-skill
试用Own GitVerse (gitverse.ru) skill: repos, issues, PRs via REST API with a dependency-free Python CLI.
它能做什么
Own GitVerse (gitverse.ru) skill: repos, issues, PRs via REST API with a dependency-free Python CLI.
技能文档
gitverse-skill — свой навык для GitVerse
Собственный навык для работы с GitVerse через REST API. Без внешних зависимостей — чистый Python (urllib).
Setup
# Токен: https://gitverse.ru/settings/tokens
export GITVERSE_TOKEN="..." # или положить в ~/.gitverse_token (chmod 600)
Скрипт: scripts/gitverse.py (или установить в PATH как gitverse-skill).
Usage
# Репозитории
python3 scripts/gitverse.py repos list # свои репозитории
python3 scripts/gitverse.py repos list --org ORG # репозитории организации
python3 scripts/gitverse.py repos info --owner O --repo R # инфо о репозитории
# Issues
python3 scripts/gitverse.py issues list --owner O --repo R [--state open|closed|all]
python3 scripts/gitverse.py issues view --owner O --repo R --number N
python3 scripts/gitverse.py issues create --owner O --repo R --title "..." [--body "..."]
python3 scripts/gitverse.py issues comment --owner O --repo R --number N --body "..."
python3 scripts/gitverse.py issues close --owner O --repo R --number N
# Pull Requests
python3 scripts/gitverse.py pulls list --owner O --repo R [--state open|closed|all]
python3 scripts/gitverse.py pulls view --owner O --repo R --number N
python3 scripts/gitverse.py pulls create --owner O --repo R --title "..." --head BRANCH --base BRANCH [--body "..."]
python3 scripts/gitverse.py pulls merge --owner O --repo R --number N
Notes
- Base URL по умолчанию:
https://api.gitverse.ru, переопределяется черезGITVERSE_BASE_URL - Заголовок
Accept: application/vnd.gitverse.object+json;version=1 - Авторизация:
Authorization: Bearer - Все команды выводят JSON
- Перед созданием/закрытием/мержем — подтверждать у пользователя, если операция массовая или необратимая
相关技能
Smart Git workflows and secret scanning
Git Security Scanner & Repo Health Auditor — entropy-based secret detection, composite health scoring, commit quality analysis, stale branch cleanup, and dep...
GitHub & developer data for AI agents — repo metadata (stars, language, license), repo audits & risk scoring, user profiles, recent releases, and gist conten...
GitHub (github.com). Use this skill for ANY GitHub request — reading, creating, updating, and deleting data. Whenever a task involves GitHub, use this skill instead of calling the API directly.
GitLab (gitlab.com). Use this skill for ANY GitLab request — reading, creating, updating, and deleting data. Whenever a task involves GitLab, use this skill instead of calling the API directly.