🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@arcede/capabilities

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arcede/capabilities

Typed client for the AIR Capability API — discover what any website can do

latest
npmnpm
Version
0.1.3
Version published
Maintainers
1
Created
Source

@arcede/capabilities

Typed client for the AIR Capability API. Discover what any website can do before your agent navigates there.

Install

npm install @arcede/capabilities

Quick Start

import { capabilities } from '@arcede/capabilities';

// What can agents do on this site?
const caps = await capabilities({
  apiKey: process.env.AIR_API_KEY!,
  domain: 'travel.example.com',
});

caps.forEach(c => {
  console.log(`${c.capability} (${Math.round(c.confidence * 100)}% confidence)`);
});

Search by Intent

import { CapabilitiesClient } from '@arcede/capabilities';

const client = new CapabilitiesClient({ apiKey: process.env.AIR_API_KEY! });

// Find sites where agents can search flights
const caps = await client.search('search flights', { limit: 10 });
caps.forEach(c => console.log(`${c.domain}${c.capability}`));

Docs

Full documentation at agentinternetruntime.com/docs/capabilities

License

MIT

Keywords

capabilities

FAQs

Package last updated on 19 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts