invite-team

invite-team is a skill for Claude Code from Aicoo-Team/AICOO-Skills. It costs 88 tokens per session (1,297 once invoked), scanned A, original, MIT.

A teammate-invitation tool for Aicoo that creates either a copy-and-paste setup prompt or a team invite link.

In plain words
What is it for?
Use it to onboard technical teammates with a prompt or add account holders to a Team plan with an invite link.
Why use it?
It removes the manual work of explaining setup and connecting coworkers to an Aicoo team.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths; mentions Claude Code; mentions Codex.

Part of the Aicoo Agent Skills plugin — 21 skills shipped together

Good fit Use it to onboard technical teammates with a prompt or add account holders to a Team plan with an invite link.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aicoo-team/aicoo-skills/invite-team
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 Aicoo-Team/AICOO-Skills --skill invite-team
Clone the repo
git clone --depth 1 https://github.com/Aicoo-Team/AICOO-Skills

Made for: Claude Code.

Or install Aicoo Agent Skills, the plugin that ships this one along with the rest of its 21 skills.

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 invite-team

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/aicoo-team/aicoo-skills/invite-team"><img src="https://agentmods.dev/badge/skills/aicoo-team/aicoo-skills/invite-team.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 88 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,297 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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: 3 findings, 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 MCP Rug Pull · line 42
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium Data Exfiltration · line 76
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
  • medium Data Exfiltration · line 85
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.00088 $0.01297
Opus 5 $0.00044 $0.00648
Sonnet 5 $0.00018 $0.00259
Haiku 4.5 $0.00009 $0.00130

Measured 11d ago against content hash 329ed48e429f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

invite-team 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 11d 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://www.aicoo.io/api/v1/identity" \
skills/invite-team/SKILL.md · 117 lines

How it starts

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

Invite Team — Two Ways To Bring People In

Offer both and let the user pick per person:

  • Copy-paste onboarding prompt — best for technical teammates. A block they paste into their own Claude Code / Codex / agent runtime that installs the skills, signs them in, builds their memory, and connects them back. Works for anyone, needs no Team plan.
  • Invite link — best for anyone with (or willing to make) an Aicoo account. Adds them to your Team plan's seats. Requires you to own/admin a Team plan and the os.team:write scope.

Requires being signed in (onboarding skill). Resolve the token with the pack's scripts/aicoo-auth.sh: export AICOO_API_KEY="$(bash /path/to/aicoo-skills/scripts/aicoo-auth.sh)".


A) Copy-paste onboarding prompt (always available)

Get the inviter's username, then hand the user a ready-to-share block.

curl -s "https://www.aicoo.io/api/v1/identity" \
  -H "Authorization: Bearer $AICOO_API_KEY" | jq -r '.identity.username // .profile.username'

Present exactly this (substitute <username>; if you also made an invite link in section B, add it as an optional line):

Send this to your teammate — they paste it into their AI agent (Claude Code, Codex, …):

---
Set me up on Aicoo and connect me to my teammate.

1. Install the Aicoo skills:
   npx skills add Aicoo-Team/AICOO-Skills
   (or: git clone https://github.com/Aicoo-Team/AICOO-Skills.git ~/.claude/plugins/aicoo-skills)
2. Sign in with Aicoo:
   node ~/.claude/plugins/aicoo-skills/scripts/aicoo-login.mjs
3. Run the Aicoo onboarding skill to build my agent memory and share my agent.
4. Connect me to @<username> on Aicoo (accept their team invite if I have one).
---

The teammate's agent does the install → sign-in → onboarding → connect end to end. Nothing else needed from you.

B1. Check team status first

curl -s "https://www.aicoo.io/api/v1/os/team" \
  -H "Authorization: Bearer $AICOO_API_KEY" \
  | jq '{hasTeam, role, canInvite, seatsAvailable: .team.seatsAvailable, members: (.members|length), pendingInvites}'

Read the full file on GitHub · 117 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. 11d ago First seen · 117 lines · 88 tokens per session scan A 329ed48e429f

Subscribe to this mod's changes

invite-team is a skill published in the GitHub repository Aicoo-Team/AICOO-Skills (35 stars, last pushed 1mo ago), licensed MIT. It adds 88 tokens to every session and 1,297 once invoked, about $0.0004 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

pipeline-conductor

Operating procedure for the kirocrew-pipeline-conductor agent - run one issue/PR pipeline on one repository as a supervised fleet. Auto-pick items, preflight every candidate to one deterministic claim verdict, stand up one worker session per item in a dedicated folder, probe them each cycle with one script call…

kirodotdev/KiroCrew · 142 tokens

babysit

Same-session monitoring loop for PRs, CI runs, tickets, and deployments using the monitorstart / monitorupdate / autonudgestop MCP tools. The loop re-injects your check instructions into THIS session on an idle interval — same context, same tools — and works from dashboard chat, Slack threads, and Discord DMs. Use…

kirodotdev/KiroCrew · 137 tokens

goal-ledger-conductor

Own a long-horizon goal end to end while tracking it in the work ledger - decompose it into items, stand up one session per item, read each worker's reported status as structured data rather than as a transcript, verify claims with the acceptance evaluator, and decide each next round until the goal is met or a stop…

kirodotdev/KiroCrew · 125 tokens

feature-request

Conversational workflow for gathering user feedback and filing GitHub Issues on the Kiro Crew repository. Load when the user clicks "Request a Feature", wants to report a bug, or suggest an improvement.

kirodotdev/KiroCrew · 43 tokens

goal-loop

Bootstrap a goal-driven self-improving AutoNudge loop from a goal plus an anchor directory, then run the board autonomously until the Definition of Done is met.

kirodotdev/KiroCrew · 37 tokens

starting-a-new-project

Use when the workspace is empty — no code yet — and the user brings a raw idea: the brand-new branch of setting-up-a-project, normally reached via that dispatcher, directly only when the situation is unmistakable. Not for features in an existing project — use brainstorming instead.

JetBrains/thinkrail · 61 tokens