github

github is a skill for Claude Code, Codex from emanueleielo/ciana-parrot. It costs 23 tokens per session (680 once invoked), scanned A, original, MIT.

A tool for managing GitHub repositories, the online homes for source code and collaborative development. It works with issues, pull requests, and automated checks.

In plain words
What is it for?
Listing or creating issues, reviewing pull requests, checking continuous-integration results, and commenting on issues or pull requests.
Why use it?
It brings common repository tasks into the coding workflow, so you can inspect work and track problems without opening GitHub for each action.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/emanueleielo/ciana-parrot/github
Any agent
npx skills add emanueleielo/ciana-parrot --skill github
Clone the repo
git clone --depth 1 https://github.com/emanueleielo/ciana-parrot

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 github

README.md
[![agentmods](https://agentmods.dev/badge/skills/emanueleielo/ciana-parrot/github.svg)](https://agentmods.dev/skills/emanueleielo/ciana-parrot/github)
Your own site
<a href="https://agentmods.dev/skills/emanueleielo/ciana-parrot/github"><img src="https://agentmods.dev/badge/skills/emanueleielo/ciana-parrot/github.svg" alt="Measured on agentmods" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 680 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00023 $0.00680
Opus 5 $0.00012 $0.00340
Sonnet 5 $0.00005 $0.00136
Haiku 4.5 $0.00002 $0.00068

Measured 5d ago against content hash bcce21b808b8, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

github scanned grade A with 1 finding 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 5d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s "https://api.github.com/repos/OWNER/REPO/issues?state=open&per_page=10" \
skills/github/SKILL.md · 97 lines

How it starts

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

GitHub

Manage repositories, issues, pull requests, and CI workflows on GitHub.

When to Use

  • "Check my GitHub issues"
  • "Create an issue for [bug]"
  • "What's the status of PR #42?"
  • "List open PRs on [repo]"

Auth

All requests require:

Authorization: Bearer $GH_TOKEN
Accept: application/vnd.github+json

Key Endpoints

Base URL: https://api.github.com

List Issues

curl -s "https://api.github.com/repos/OWNER/REPO/issues?state=open&per_page=10" \
  -H "Authorization: Bearer $GH_TOKEN" \
  -H "Accept: application/vnd.github+json"

Create an Issue

curl -s -X POST "https://api.github.com/repos/OWNER/REPO/issues" \
  -H "Authorization: Bearer $GH_TOKEN" \
  -H "Accept: application/vnd.github+json" \
  -H "Content-Type: application/json" \
  -d '{"title": "Bug: ...", "body": "Description...", "labels": ["bug"]}'

List Pull Requests

curl -s "https://api.github.com/repos/OWNER/REPO/pulls?state=open&per_page=10" \
  -H "Authorization: Bearer $GH_TOKEN" \
  -H "Accept: application/vnd.github+json"

Comment on Issue/PR

curl -s -X POST "https://api.github.com/repos/OWNER/REPO/issues/NUMBER/comments" \
  -H "Authorization: Bearer $GH_TOKEN" \
  -H "Accept: application/vnd.github+json" \
  -H "Content-Type: application/json" \
  -d '{"body": "Comment text..."}'

Check CI Status

curl -s "https://api.github.com/repos/OWNER/REPO/commits/REF/check-runs" \
  -H "Authorization: Bearer $GH_TOKEN" \
  -H "Accept: application/vnd.github+json"

Search Issues/PRs

curl -s "https://api.github.com/search/issues?q=repo:OWNER/REPO+is:open+label:bug" \
  -H "Authorization: Bearer $GH_TOKEN" \
  -H "Accept: application/vnd.github+json"

List User's Repos

curl -s "https://api.github.com/user/repos?sort=updated&per_page=10" \
  -H "Authorization: Bearer $GH_TOKEN" \
  -H "Accept: application/vnd.github+json"

Notes

  • Rate limit: 5000 requests/hour with token
  • Use per_page and page for pagination
  • For private repos, the token needs repo scope
  • Get a token: https://github.com/settings/tokens

Read the full file on GitHub · 97 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. 5d ago First seen · 97 lines · 23 tokens per session scan A bcce21b808b8

Subscribe to this mod's changes

github is a skill published in the GitHub repository emanueleielo/ciana-parrot (76 stars, last pushed 4mo ago), licensed MIT. It adds 23 tokens to every session and 680 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

skill-generator

Generates AND modifies complete skills from natural language descriptions. Guides the user through need analysis and archetype selection, produces a skill package compliant with the agentskills.io standard, and imports it directly into the user's skills. Also adjusts, enriches or fixes an existing user skill by…

jgouviergmail/LIA-Assistant · 64 tokens

briefing-quotidien

Trigger ONLY when the user explicitly asks for a "briefing" or a complete overview of their WHOLE day. Generates the full daily briefing: agenda, tasks, weather, emails and reminders — always ALL sections together. A request about one specific category or item (appointments, meetings, events, emails, tasks, weather …

jgouviergmail/LIA-Assistant · 97 tokens

coaching-productivite

Provides productivity coaching with prioritization frameworks (Eisenhower, Pomodoro) and habit-building strategies. Use when the user asks for help organizing tasks, managing time, or improving productivity.

jgouviergmail/LIA-Assistant · 43 tokens

dice-roller

Rolls one or several dice with an animated 3D-like visual and a full breakdown of the result. Supports standard RPG notation (d4, d6, d8, d10, d12, d20, d100) and multiple dice (e.g. "2d6+3", "4d6kh3" for D&D stat rolls). Use when the user asks to roll dice, pick a random number, or decide something at random.

jgouviergmail/LIA-Assistant · 99 tokens

redaction-professionnelle

Provides expert guidance for writing professional emails, reports, and messages with appropriate tone, structure, and formulas. Use when drafting formal communications, cover letters, or business correspondence.

jgouviergmail/LIA-Assistant · 40 tokens

synthese-recherche

Guides structured web research with source cross-referencing and critical synthesis. Use when the user needs in-depth research, literature review, or comprehensive analysis of a topic.

jgouviergmail/LIA-Assistant · 39 tokens