Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add serejaris/kimi-skills --skill glab-repogit clone --depth 1 https://github.com/serejaris/kimi-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/serejaris/kimi-skills/glab-repo)<a href="https://agentmods.dev/skills/serejaris/kimi-skills/glab-repo"><img src="https://agentmods.dev/badge/skills/serejaris/kimi-skills/glab-repo/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/serejaris/kimi-skills/glab-repo"><img src="https://agentmods.dev/badge/skills/serejaris/kimi-skills/glab-repo.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00093 | $0.01380 |
| Opus 5 | $0.00046 | $0.00690 |
| Sonnet 5 | $0.00019 | $0.00276 |
| Haiku 4.5 | $0.00009 | $0.00138 |
Grade A, and why
glab-repo scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 218 lines — stays where its author put it; the contents beside it link to each section on GitHub.
glab repo
管理 GitLab 仓库和项目。
快速入门
# Clone a repository
glab repo clone group/project
# Create new repository
glab repo create my-new-project --public
# Fork a repository
glab repo fork upstream/project
# View repository details
glab repo view
# Search for repositories
glab repo search "keyword"
常用工作流
创建新项目
-
创建仓库:
glab repo create my-project \ --public \ --description "My awesome project" -
克隆到本地:
glab repo clone my-username/my-project cd my-project -
初始化内容:
echo "# My Project" > README.md git add README.md git commit -m "Initial commit" git push -u origin main
Fork 工作流
-
Fork 上游仓库:
glab repo fork upstream-group/project -
克隆你的 Fork:
glab repo clone my-username/project cd project -
添加上游远程仓库:
git remote add upstream https://gitlab.com/upstream-group/project.git -
保持 Fork 同步:
git fetch upstream git merge upstream/main
自动同步:
使用同步脚本一键更新 Fork:
scripts/sync-fork.sh main
scripts/sync-fork.sh develop upstream
该脚本自动完成:拉取 → 合并 → 推送到 origin。
仓库管理
查看仓库信息:
glab repo view
glab repo view group/project # Specific repo
glab repo view --web # Open in browser
更新仓库设置:
glab repo update \
--description "Updated description" \
--default-branch develop
归档仓库:
glab repo archive download main # Downloads .tar.gz
glab repo archive download main --format zip
转移到新命名空间:
glab repo transfer my-project --target-namespace new-group
删除仓库:
glab repo delete group/project
成员管理
列出协作者:
glab repo members list
添加成员:
glab repo members add @username --access-level maintainer
移除成员:
glab repo members remove @username
更新成员权限:
glab repo members update @username --access-level developer
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 218 lines · 93 tokens per session scan A 5d6a230c7576
glab-repo is a skill published in the GitHub repository serejaris/kimi-skills (6 stars, last pushed 1mo ago), licensed MIT. It adds 93 tokens to every session and 1,380 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
resolve-pr-comments
Evaluate, fix, answer, and reply to GitHub pull request review comments and conversation comments. Handles both change requests (fix or skip) and reviewer questions (explain using reasoning recalled from past Claude Code transcripts). Use when the user asks to "resolve PR comments", "fix review comments", "address PR…
create-pr
Create a GitHub pull request with a drafted title and description. Use when the user asks to "create a PR", "create a pull request", "open a PR", or "submit a PR".
update-pr
Update an existing GitHub pull request's title and description to reflect the current state of the branch. Use when the user asks to "update the PR", "update PR description", "update PR title", "refresh PR description", or "sync PR with changes".
changelog-rules
Shared changelog conventions and formatting rules referenced by /create-changelog and /update-changelog. Not typically invoked directly.
fetch-pr-comments
Fetch and summarize review feedback and conversation from a GitHub PR (unresolved review threads, review bodies, and PR conversation comments) without making changes. Use when the user asks to "fetch PR comments", "show PR comments", "check PR for unresolved comments", "list review comments", "what comments are on the…
reply-to-pr-threads
Draft, confirm, and post replies to GitHub PR review threads. Handles per-category reply formatting, re-fetches thread resolution state so auto-resolved threads are skipped, and posts via GraphQL. Use when the user asks to "reply to PR threads", "post PR thread replies", or "draft PR reply messages".