iblai-api-invite

iblai-api-invite is a skill for Claude Code, Codex from iblai/api. It costs 49 tokens per session (669 once invoked), scanned A, original, MIT.

A skill for managing user invitations in an ibl.ai organization through its platform API. It can list accepted or pending invitations and send invitations individually or from CSV rows, with optional group assignment.

In plain words
What is it for?
Listing invitations, inviting one user, sending bulk invitations from CSV data, assigning users to groups, and using the required organization credentials.
Why use it?
It removes the need to construct the invitation API requests manually and supports repeating the process for many users.

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/iblai/api/iblai-api-invite
Any agent
npx skills add iblai/api --skill iblai-api-invite
Clone the repo
git clone --depth 1 https://github.com/iblai/api

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 iblai-api-invite

README.md
[![agentmods](https://agentmods.dev/badge/skills/iblai/api/iblai-api-invite.svg)](https://agentmods.dev/skills/iblai/api/iblai-api-invite)
Your own site
<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>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 669 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.00049 $0.00669
Opus 5 $0.00024 $0.00334
Sonnet 5 $0.00010 $0.00134
Haiku 4.5 $0.00005 $0.00067

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

Security

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 \
skills/iblai-api-invite/SKILL.md · 70 lines

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_KEY on every request.
  • Path vars: {org} = $IBLAI_ORG, {username} = $IBLAI_USERNAME.
  • The host is DM under /api/catalog/invitations/….
  • Not connected yet? Run /iblai-api-login first to populate IBLAI_ORG, IBLAI_USERNAME, and IBLAI_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; set user_group / user_group_owner_email to assign the invitee to a group.
  • The list is paginated — page through with page / page_size and sort=-id to see the newest invites first.

Read the full file on GitHub · 70 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. 4d ago First seen · 70 lines · 49 tokens per session scan A d19ccdef9bec

Subscribe to this mod's changes

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.

Related

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.

ulises-jeremias/agent-toolkit · 61 tokens

agreement

WHAT - Capture explicit agreements, terms, parties involved, dates, validity, and linked work items using the Agreement Document structure.

ulises-jeremias/agent-toolkit · 27 tokens

wechat-article-scraper

Batch download WeChat (微信公众号) articles as Markdown files with embedded images. Triggers: 下载公众号文章, 批量抓取微信文章, 保存公众号内容, download wechat articles, scrape wechat posts, save articles with images.

lililly123789/wechat-article-scraper · 56 tokens

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.

Sandgrouse/adobe-express-dev-skill · 43 tokens

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.

ulises-jeremias/agent-toolkit · 42 tokens

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.

ulises-jeremias/agent-toolkit · 54 tokens