dev-guide-repo-watch

dev-guide-repo-watch is a skill for Claude Code, Codex from Lingtai-AI/lingtai. It costs 83 tokens per session (1,096 once invoked), scanned A, original, Apache-2.0.

A read-only workflow for reviewing the Lingtai-AI GitHub organization, which is a group of repositories. It collects open issues, open pull requests, repository changes, and recent activity into a health summary.

In plain words
What is it for?
Use it to list repositories, review open issues and pull requests, monitor recent organization activity, and produce a timestamped digest with source links.
Why use it?
It gives developers one concise view of work across many repositories without changing GitHub data. It can also avoid repeated alerts by tracking what has already been reported.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to list repositories, review open issues and pull requests, monitor recent organization activity, and produce a timestamped digest with source links.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lingtai-ai/lingtai/repo-watch
Install

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.

Any agent
npx skills add Lingtai-AI/lingtai --skill repo-watch
Clone the repo
git clone --depth 1 https://github.com/Lingtai-AI/lingtai

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for dev-guide-repo-watch

README.md
[![agentmods](https://agentmods.dev/badge/skills/lingtai-ai/lingtai/repo-watch/github.svg)](https://agentmods.dev/skills/lingtai-ai/lingtai/repo-watch)
Your own site
<a href="https://agentmods.dev/skills/lingtai-ai/lingtai/repo-watch"><img src="https://agentmods.dev/badge/skills/lingtai-ai/lingtai/repo-watch/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.

agentmods 80×15 button for dev-guide-repo-watch

Your own site · 80×15
<a href="https://agentmods.dev/skills/lingtai-ai/lingtai/repo-watch"><img src="https://agentmods.dev/badge/skills/lingtai-ai/lingtai/repo-watch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 83 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,096 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 92
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00083 $0.01096
Opus 5 $0.00042 $0.00548
Sonnet 5 $0.00017 $0.00219
Haiku 4.5 $0.00008 $0.00110

Measured 13d ago against content hash 7bab783be3c4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

dev-guide-repo-watch 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 13d 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.

tui/internal/preset/skills/lingtai-dev-guide/reference/repo-watch/SKILL.md · 108 lines

How it starts

The opening of the file, as written. The whole thing — 108 lines — stays where its author put it; the contents beside it link to each section on GitHub.

LingTai Repo Watch

This nested lingtai-dev-guide reference is a read-only developer workflow for sweeping the Lingtai-AI GitHub org. It lives here because it is LingTai-project-specific; it should not be installed as a kernel intrinsic capability for every agent.

Boundaries

  • Read-only by default: do not comment, label, assign, close, merge, or edit GitHub state unless the human explicitly asks for that side effect.
  • Report facts with source URLs and timestamps.
  • Prefer one concise digest over piecemeal alerts unless the human requested a live monitor.
  • If automating, store state locally and alert only on changes to avoid spam.

One-shot org sweep

Use gh from a clean shell with GitHub auth already configured.

gh repo list Lingtai-AI --limit 100 \
  --json name,visibility,isArchived,pushedAt,url

gh search issues --owner Lingtai-AI --state open --limit 200 \
  --json number,title,repository,state,createdAt,updatedAt,author,labels,assignees,url

gh search prs --owner Lingtai-AI --state open --limit 200 \
  --json number,title,repository,state,isDraft,createdAt,updatedAt,author,labels,url

gh search prs --json does not support reviewDecision on all installed gh versions. If review-decision status is needed, fetch it separately for a small set of PRs with a command/API that supports that field; do not put reviewDecision in the broad gh search prs field list unless you have verified that local gh supports it.

Optional filters

For "non-self" monitoring, filter after fetching rather than hard-coding a single human into this workflow. Example for Jason's machine:

# Conceptual filter after JSON fetch, not a GitHub write:
author.login != "huangzesen"

Digest shape

Group output in this order:

  1. New or updated open PRs — ready vs draft, author, repo, age, URL.
  2. Open issues — repo, title, author, labels, stale/updated time, URL.
  3. Recently merged/closed items if the caller asked for recent activity.
  4. Stale or blocked items — old open PRs, no assignee, labels implying bug or release blocker.
  5. No-action footer — say explicitly that no GitHub state was changed.

Read the full file on GitHub · 108 lines

Changes

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.

  1. 13d ago First seen · 108 lines · 83 tokens per session scan A 7bab783be3c4

Subscribe to this mod's changes

dev-guide-repo-watch is a skill published in the GitHub repository Lingtai-AI/lingtai (677 stars, last pushed yesterday), licensed Apache-2.0. It adds 83 tokens to every session and 1,096 once invoked, about $0.0004 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-08-30.