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/iblai/api/iblai-api-invitenpx skills add iblai/api --skill iblai-api-invitegit clone --depth 1 https://github.com/iblai/apiWrote 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/iblai/api/iblai-api-invite)<a href="https://agentmods.dev/skills/iblai/api/iblai-api-invite"><img src="https://agentmods.dev/badge/skills/iblai/api/iblai-api-invite.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.00049 | $0.00669 |
| Opus 5 | $0.00024 | $0.00334 |
| Sonnet 5 | $0.00010 | $0.00134 |
| Haiku 4.5 | $0.00005 | $0.00067 |
Grade A, and why
iblai-api-invite 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 4d 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 -X POST \ How it starts
The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.
iblai-api-invite
Manage an organization's user invitations via the API: list invites (accepted or pending) and send invitations one at a time or in bulk from CSV rows, with optional user-group assignment. Use when inviting users into an organization.
Auth & conventions
- Base URL:
https://api.iblai.app - Header:
Authorization: Api-Token $IBLAI_API_KEYon every request. - Path vars:
{org}=$IBLAI_ORG,{username}=$IBLAI_USERNAME. - The host is DM under
/api/catalog/invitations/…. - Not connected yet? Run
/iblai-api-loginfirst to populateIBLAI_ORG,IBLAI_USERNAME, andIBLAI_API_KEY.
Reads
- GET
…/invitations/platform/?platform_key={org}&page={n}&page_size=5&sort=-id— list invites (accepted / pending).
Writes
- POST
…/invitations/platform/— send an invite (call once per CSV row for bulk):{ "email": "string", "platform_key": "string (required)", "redirect_to": "uri", "source": "username", "active": true, "company_name": "string (CSV)", "first_name": "string (CSV)", "last_name": "string (CSV)", "user_group": "string (CSV)", "user_group_owner_email": "email (CSV)" }
Example
Send a single invite to a new user, redirecting them to the organization after they accept:
curl -X POST \
"https://api.iblai.app/dm/api/catalog/invitations/platform/" \
-H "Authorization: Api-Token $IBLAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"email": "[email protected]",
"platform_key": "'"$IBLAI_ORG"'",
"redirect_to": "https://login.iblai.app/me",
"source": "'"$IBLAI_USERNAME"'",
"active": true
}'
Notes
- Sending invites emails real people — confirm the recipient list with the user before posting, especially on bulk runs that POST once per row.
- The CSV-only fields (
company_name,first_name,last_name,user_group,user_group_owner_email) come from the bulk CSV columns; setuser_group/user_group_owner_emailto assign the invitee to a group. - The list is paginated — page through with
page/page_sizeandsort=-idto see the newest invites first.
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.
- 4d ago First seen · 70 lines · 49 tokens per session scan A d19ccdef9bec
iblai-api-invite is a skill published in the GitHub repository iblai/api (15 stars, last pushed 2d ago), licensed MIT. It adds 49 tokens to every session and 669 once invoked, about $0.0002 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
architecture-diagram
WHAT — Create polished dark-themed architecture diagrams as self-contained HTML+SVG files (inline SVG, CSS styling, PNG/PDF export toolbar). Use when the user asks for system, infrastructure, cloud, security, or network topology diagrams rendered as a shareable visual artifact rather than code.
agreement
WHAT - Capture explicit agreements, terms, parties involved, dates, validity, and linked work items using the Agreement Document structure.
wechat-article-scraper
Batch download WeChat (微信公众号) articles as Markdown files with embedded images. Triggers: 下载公众号文章, 批量抓取微信文章, 保存公众号内容, download wechat articles, scrape wechat posts, save articles with images.
adobe-express-document-manipulation
Create and modify document content in Adobe Express add-ons using Document SDK. Use when planning document operations, inserting shapes/text/media, sequencing sandbox commands, or troubleshooting document edits.
jira-search-jql
Find issues by criteria (status, assignee, priority, etc.) using JQL. Create filters, export results to CSV/JSON, bulk update. Ideal for reporting and automation.
prd
WHAT — Draft and review a Product Requirements Document (PRD) using the template. Business-level requirements, acceptance criteria, and traceability. Does not replace the product owner. English for tickets, PRs, and client-facing text unless the user asks otherwise.