Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Summary

IANS skills for Claude Code and Cowork. Bundles Ask-an-Expert and future Ask IANS skills behind the IANS MCP connector.

Install to Claude Code

/plugin install ians@ians-tools

Run in Claude Code. Add the marketplace first with /plugin marketplace add ians-research/ians-plugin if you haven't already.

README.md

IANS Claude Skills

Public marketplace of Claude Code and Claude Cowork plugins published by IANS.

This repo publishes Claude plugins (skills + supporting assets). Plugins that talk to IANS require the user to connect the IANS MCP server (see each plugin README). Some plugins ship a full skill in-repo (workflow, prompts, scripts); others may remain thin routers over a hosted workflow.

Available plugin and skills

| Plugin | Skill | Description | | --- | --- | --- | | ians | request-ask-an-expert | Submit a faculty-led Ask-an-Expert (AAE) request to IANS. Form-shaped review, Python validation/submission helpers, connector-only submit path with graceful failure when the MCP is unavailable. Submit-only in this release. |

Installation

From inside Claude Code:

/plugin marketplace add ians-research/ians-plugin
/plugin install ians@ians-tools

Installing the ians plugin enables every IANS skill it contains.

How these plugins are structured

Each plugin lives under plugins/<name>/ with a .claude-plugin/plugin.json manifest and one or more skills/<skill-name>/SKILL.md directories. The ians plugin is the IANS bundle: every IANS-branded skill lives under plugins/ians/skills/, so they share one plugin root and can chain to each other via ${CLAUDE_PLUGIN_ROOT}/skills/<skill-name>/SKILL.md. Each skill ships its supporting assets (e.g. scripts/ for Python helpers, evals/ for repeatable checks) alongside its SKILL.md.

This layout follows Anthropic's plugin marketplaces and plugins reference spec.

Repository layout

ians-plugin/
├── .claude-plugin/
│   └── marketplace.json            # marketplace catalog
└── plugins/
    └── ians/                       # IANS bundle (one plugin, many skills)
        ├── .claude-plugin/
        │   └── plugin.json         # plugin manifest
        ├── README.md
        └── skills/
            └── request-ask-an-expert/
                ├── SKILL.md
                ├── scripts/        # draft, validate, poll-fit check
                └── evals/          # scenario fixtures + test harness (dev-only, not shipped)

Adding a new IANS skill

Drop a new directory under plugins/ians/skills/<skill-name>/:

plugins/ians/skills/<new-skill-name>/
├── SKILL.md
└── scripts/        # optional, Python or shell helpers

scripts/build-skill-zip.mjs walks plugins//skills/, so the new skill is auto-discovered — no marketplace.json edits required. See CONTRIBUTING.md for the full SKILL.md frontmatter contract (including the metadata.description_short rule for Claude.ai/Desktop uploads), validation steps, and the public-release hygiene checklist.

Adding a new (non-IANS) plugin

For a plugin that is not an IANS skill, create a sibling directory under plugins/:

plugins/<plugin-name>/
├── .claude-plugin/plugin.json
├── README.md
└── skills/<skill-name>/
    └── SKILL.md

Then add a corresponding entry to .claude-plugin/marketplace.json with a repo-relative "source": "./plugins/<plugin-name>". A relative source must start with ./ — the bare-name shorthand ("source": "<plugin-name>") fails claude plugin validate. See CONTRIBUTING.md for the marketplace-entry field reference.

Releasing skill zips (for Claude.ai / Claude Desktop)

Claude Code installs plugins straight from this repo. To make a skill usable on Claude.ai (web) or Claude Desktop, end users instead upload a .zip of the skill via Settings → Capabilities → Skills. This repo ships a builder that produces those zips.

Prereqs: Node.js 20+.

npm install
npm run build:skills           # builds every skill under plugins/*/skills/*
npm run build:skill -- ians    # build one plugin only (by plugin directory name)
node scripts/build-skill-zip.mjs --check       # validate without writing zips

Each skill produces dist/<skill-name>-<version>.zip and a matching .sha256. The zip contains a single top-level <skill-name>/ directory with SKILL.md at its root, which is the layout Claude.ai expects. Developer-only files (evals/, __pycache__, *.pyc, .DS_Store, etc.) are excluded automatically.

Frontmatter rules the builder enforces. Claude.ai caps the SKILL.md description at 200 characters, but the Claude Code marketplace tolerates a much longer trigger paragraph. To keep one source SKILL.md that works for both, add a description_short under metadata::

---
name: my-skill
description: "Long, trigger-rich description used by Claude Code..."
metadata:
  version: "0.1.0"
  description_short: "Short (<=200 char) summary used in the Claude.ai/Desktop upload."
---

The builder substitutes description_short into the zipped SKILL.md's description and drops the description_short helper. If description_short is missing and the long description is over 200 chars, the build fails with a clear message.

Packaging a whole plugin (Claude Desktop "Upload Plugin")

To install an entire IANS plugin in Claude Desktop (Personal plugins → +Create PluginUpload Plugin), upload a single bundle of the whole plugin rather than a per-skill zip. This repo ships a builder for that too.

npm install
npm run build:plugins          # bundles every plugin under plugins/*
npm run build:plugin -- ians   # bundle one plugin only (by directory name)
node scripts/build-plugin-bundle.mjs --check   # validate without writing files

Each plugin produces three files in dist/:

| File | Use | | --- | --- | | <plugin>-<version>.zip | Whole-plugin bundle. Upload via "Upload Plugin". | | <plugin>-<version>.plugin | Byte-identical copy with the .plugin extension; uploads the same way. | | <plugin>-<version>.zip.sha256 | Checksum of the zip (also matches the .plugin, since they're identical). |

The bundle's archive root is the plugin root: .claude-plugin/plugin.json sits at the top with skills/ (and any commands/, agents/, hooks/) beside it — never nested inside .claude-plugin/. Each SKILL.md gets the same description_short frontmatter rewrite as the skill zips, and developer-only files (evals/, __pycache__, *.pyc, etc.) are excluded.

.zip and .plugin are interchangeable

Claude Desktop's "Upload Plugin" file picker accepts both .zip and .plugin, and both upload successfully — they're byte-identical, only the extension differs. Hand users whichever they prefer.

> Claude Code users don't need this bundle at all — they install straight from the marketplace (/plugin install ians@ians-tools, see Installation).

Releasing plugin bundles (CI)

Cutting a release

Tag a commit with a v* tag and push it. The release workflow builds every plugin bundle and attaches the .zip, .plugin, and .sha256 files to a GitHub Release. Per-skill skill zips are not published to releases — if you need one for the Claude.ai/Desktop Skills-upload path, build it locally with npm run build:skills.

git tag v1.0.0
git push origin v1.0.0

Pull requests run the plugin-bundle builder in --check mode — which also validates each skill's SKILL.md frontmatter — so regressions surface in CI before merge.

Trust and safety

These plugins may call tools on the IANS platform MCP server. Review the source of any plugin in this repo before installing. For questions about the IANS platform itself, contact support@iansresearch.com.

License

See LICENSE.

Related plugins

Browse all →