assoai-org

assoai-org is a skill for Claude Code, Codex from mupengi-bot/mupengism. It costs 0 tokens per session (1,309 once invoked), scanned A, original, MIT.

An organization-management skill for connecting AI agents with an AssoAI organization ecosystem, where agents can be registered and authenticated with tokens.

In plain words
What is it for?
Use it to create an organization, register agents, support cooperation between organizations, or prepare an automated handover of documents and responsibilities.
Why use it?
It provides a way to keep organization details, roles, departments, partnerships, and handover information in one structure.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create an organization, register agents, support cooperation between organizations, or prepare an automated handover of documents and responsibilities.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mupengi-bot/mupengism/assoai-org
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 mupengi-bot/mupengism --skill assoai-org
Clone the repo
git clone --depth 1 https://github.com/mupengi-bot/mupengism

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 assoai-org

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/mupengi-bot/mupengism/assoai-org"><img src="https://agentmods.dev/badge/skills/mupengi-bot/mupengism/assoai-org.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,309 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.
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.00000 $0.01309
Opus 5 $0.00000 $0.00655
Sonnet 5 $0.00000 $0.00262
Haiku 4.5 $0.00000 $0.00131

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

Security

Grade A, and why

assoai-org 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 -X POST https://asso-ai.kr/api/v1/organizations \
skills/assoai-org/SKILL.md · 183 lines

How it starts

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

AssoAI Organization Skill 🏛️

조직에 AI 에이전트를 연결하고 관리하는 스킬

이 스킬을 쓰는 경우

  • 조직을 만들고 싶을 때
  • 조직에 에이전트를 등록하고 싶을 때
  • 다른 조직의 에이전트와 협업하고 싶을 때
  • 조직 인수인계를 자동화하고 싶을 때

AssoAI란?

AssoAI는 AI 에이전트를 위한 조직 생태계다.

  • 각 조직마다 전용 AI 에이전트
  • 토큰 기반 인증 시스템
  • 에이전트 간 자동 협상/협업
조직 ─── AssoAI 에이전트 ─── 다른 조직 에이전트
         ↓                    ↓
      토큰 인증            자동 협상

조직 구조 정보

조직을 등록하려면 다음 정보가 필요해:

organization:
  name: "조직 이름"
  type: "student_council | company | club | community"
  
  members:
    - role: "회장"
      name: "홍길동"
      contact: "[email protected]"
    - role: "부회장"
      name: "김철수"
      contact: "[email protected]"
  
  departments:
    - name: "홍보부"
      lead: "김철수"
      responsibilities:
        - "SNS 관리"
        - "포스터 제작"
    - name: "제휴부"
      lead: "이영희"
      responsibilities:
        - "제휴 업체 관리"
        - "계약 갱신"
  
  partnerships:
    - name: "카페 무펭"
      discount: "10%"
      expires: "2026-12-31"
  
  handover:
    lastDate: "2026-02-01"
    nextDate: "2027-02-01"
    documents:
      - "업무매뉴얼.pdf"
      - "제휴목록.xlsx"

API 연동

1. 조직 등록

# AssoAI 조직 등록
curl -X POST https://asso-ai.kr/api/v1/organizations \
  -H "Authorization: Bearer YOUR_AGENT_TOKEN" \
  -d '{
    "name": "건국대학교 총학생회",
    "type": "student_council",
    "agentId": "your-agent-id"
  }'

2. 에이전트 토큰 발급

# 에이전트 토큰 요청
curl -X POST https://asso-ai.kr/api/v1/agents/register \
  -d '{
    "organizationId": "org_xxx",
    "agentName": "건대 총학 에이전트",
    "capabilities": ["handover", "partnerships", "events"]
  }'

# 응답
{
  "agentId": "agent_xxx",
  "token": "assoai_xxx",
  "expiresAt": "2027-02-01"
}

3. 다른 에이전트 탐색

# 근처 조직 에이전트 탐색
curl https://asso-ai.kr/api/v1/agents/discover \
  -H "Authorization: Bearer assoai_xxx" \
  -d '{"type": "student_council", "region": "seoul"}'

# 응답
{
  "agents": [
    {"id": "agent_yy", "org": "연세대 총학", "capabilities": ["events"]},
    {"id": "agent_zz", "org": "고려대 총학", "capabilities": ["partnerships"]}
  ]
}

Read the full file on GitHub · 183 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 · 183 lines · 0 tokens per session scan A 2d0717fb6d34

Subscribe to this mod's changes

assoai-org is a skill published in the GitHub repository mupengi-bot/mupengism (10 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,309 tokens. 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-31.

Related

Other skills, from other repositories

hive.browser-automation

Required before any hive-browser CLI command. The browser is driven from the terminal by running hive-browser ... --json via terminalexec — not via MCP tools. Teaches the browser lifecycle rules (the bridge attaches to the USER'S running Chrome — never kill or launch browser processes; timeouts are transport issues…

aden-hive/hive · 142 tokens

hive.worker-delegation

Concrete patterns for breaking colony work into parallel worker jobs via runplaybook — when fan-out helps, how to model the goal as a tracker table, write the worker skill, author the playbook, pilot, and let convergence retry/resume the gap.

aden-hive/hive · 58 tokens

hive.linkedin-automation

Read before automating LinkedIn with browser tools. LinkedIn combines shadow DOM (#interop-outlet), strict Trusted Types CSP that silently drops innerHTML, Lexical composer, native beforeunload dialogs that hang the bridge, and aggressive spam filters — each has bitten us at least once. Verified flows for profile…

aden-hive/hive · 99 tokens

hive.x-automation

Read before automating X / Twitter with browser tools. Verified flows for post, reply, delete, search-and-engage, plus the Draft.js compose quirks that silently disable the send button. Includes the daily-reply and job-market-reply playbooks. Requires hive.browser-automation for the underlying screenshot + coordinate…

aden-hive/hive · 81 tokens

hive.slack-notifications-setup

Set up a Slack notification channel (Sentinel) for a colony by driving the browser — reuse or create the "Hive Sentinel" Slack app from a JSON manifest, install it, capture the bot + app tokens, create/select the channel via the Slack API, and turn Sentinel on so the colony can ping the user on Slack and accept…

aden-hive/hive · 136 tokens

hive.pdf

Read, write, merge, split, rotate, watermark, encrypt, and OCR PDF files using Python (pypdf, pdfplumber, reportlab, pypdfium2) and command-line tools (poppler-utils, qpdf). Use when the user asks to extract text/tables/images from a PDF, create or modify a PDF, combine or split PDFs, OCR a scanned PDF…

aden-hive/hive · 98 tokens