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 agentmods add skills/emanueleielo/ciana-parrot/githubnpx skills add emanueleielo/ciana-parrot --skill githubgit clone --depth 1 https://github.com/emanueleielo/ciana-parrotWrote 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/emanueleielo/ciana-parrot/github)<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>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 | $0.00023 | $0.00680 |
| Opus 5 | $0.00012 | $0.00340 |
| Sonnet 5 | $0.00005 | $0.00136 |
| Haiku 4.5 | $0.00002 | $0.00068 |
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" \ 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_pageandpagefor pagination - For private repos, the token needs
reposcope - Get a token: https://github.com/settings/tokens
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.
- 5d ago First seen · 97 lines · 23 tokens per session scan A bcce21b808b8
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.
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…
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 …
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.
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.
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.
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.