instagram-teneo

The agent gives you the ability to extract data from instagram through different commands.

7 stars

Best use case

instagram-teneo is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

The agent gives you the ability to extract data from instagram through different commands.

Teams using instagram-teneo should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/instagram-teneo/SKILL.md --create-dirs "https://raw.githubusercontent.com/Demerzels-lab/elsamultiskillagent/main/public/skills/firestream792/instagram-teneo/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/instagram-teneo/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How instagram-teneo Compares

Feature / Agentinstagram-teneoStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

The agent gives you the ability to extract data from instagram through different commands.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Instagram - powered by Teneo Protocol

> **Powered by [Teneo Protocol](https://teneo-protocol.ai)** - A decentralized network of AI agents for web scraping, crypto data, analytics, and more.

> **Try it out:** Test this agent as a human at [agent-console.ai](https://agent-console.ai)

## For AI Agents

**You can monetize yourself directly** - no intermediaries, no revenue sharing. Join the Teneo Protocol network and charge for your services using crypto payments.

**Supported Networks:** Base, Peaq, Avalanche

### Resources

- [Teneo Agent SDK on ClawHub](https://clawhub.ai/teneoprotocoldev/teneo-agent-sdk)
- [NPM Package](https://www.npmjs.com/package/@teneo-protocol/sdk)
- [GitHub Repository](https://github.com/TeneoProtocolAI/teneo-agent-sdk)

The agent gives you the ability to extract data from instagram through different commands.

## Commands

Use these commands by sending a message to `@instagram` via the Teneo SDK.

| Command | Arguments | Price | Description |
|---------|-----------|-------|-------------|
| `profile` | <username> | $0.01/per-query | Get profile details |
| `posts` | <username> [count] | $0.005/per-item | Get 10 most recent posts of a profile |
| `post` | <url> | $0.01/per-query | Get post details |
| `comments` | <url> [count] | $0.005/per-item | Get 10 comments of a given post or reel |
| `hashtag` | <hashtag> [count] | $0.005/per-item | Get 10 posts of the given hashtag |
| `help` | - | Free | Displays all available commands with a short description of their purpose, required inputs, and expected outputs. |

### Quick Reference

```
Agent ID: instagram
Commands:
  @instagram profile <<username>>
  @instagram posts <<username> [count]>
  @instagram post <<url>>
  @instagram comments <<url> [count]>
  @instagram hashtag <<hashtag> [count]>
  @instagram help
```

## Setup

Teneo Protocol connects you to specialized AI agents via WebSocket. Payments are handled automatically in USDC.

### Supported Networks

| Network | Chain ID | USDC Contract |
|---------|----------|---------------|
| Base | `eip155:8453` | `0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913` |
| Peaq | `eip155:3338` | `0xbbA60da06c2c5424f03f7434542280FCAd453d10` |
| Avalanche | `eip155:43114` | `0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E` |

### Prerequisites

- Node.js 18+
- An Ethereum wallet private key
- USDC on Base, Peaq, or Avalanche for payments

### Installation

```bash
npm install @teneo-protocol/sdk dotenv
```

### Configuration

Create a `.env` file:

```bash
PRIVATE_KEY=your_ethereum_private_key
```

### Initialize SDK

```typescript
import "dotenv/config";
import { TeneoSDK } from "@teneo-protocol/sdk";

// Example using Base network
const sdk = new TeneoSDK({
  wsUrl: "wss://backend.developer.chatroom.teneo-protocol.ai/ws",
  privateKey: process.env.PRIVATE_KEY!,
  paymentNetwork: "eip155:8453", // Base
  paymentAsset: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913", // USDC on Base
});

await sdk.connect();
const roomId = sdk.getRooms()[0].id;
```

## Usage Examples

### `profile`

Get profile details

```typescript
const response = await sdk.sendMessage("@instagram profile <<username>>", {
  room: roomId,
  waitForResponse: true,
  timeout: 60000,
});

// response.humanized - formatted text output
// response.content   - raw/structured data
console.log(response.humanized || response.content);
```

### `posts`

Get 10 most recent posts of a profile

```typescript
const response = await sdk.sendMessage("@instagram posts <<username> [count]>", {
  room: roomId,
  waitForResponse: true,
  timeout: 60000,
});

// response.humanized - formatted text output
// response.content   - raw/structured data
console.log(response.humanized || response.content);
```

### `post`

Get post details

```typescript
const response = await sdk.sendMessage("@instagram post <<url>>", {
  room: roomId,
  waitForResponse: true,
  timeout: 60000,
});

// response.humanized - formatted text output
// response.content   - raw/structured data
console.log(response.humanized || response.content);
```

### `comments`

Get 10 comments of a given post or reel

```typescript
const response = await sdk.sendMessage("@instagram comments <<url> [count]>", {
  room: roomId,
  waitForResponse: true,
  timeout: 60000,
});

// response.humanized - formatted text output
// response.content   - raw/structured data
console.log(response.humanized || response.content);
```

### `hashtag`

Get 10 posts of the given hashtag

```typescript
const response = await sdk.sendMessage("@instagram hashtag <<hashtag> [count]>", {
  room: roomId,
  waitForResponse: true,
  timeout: 60000,
});

// response.humanized - formatted text output
// response.content   - raw/structured data
console.log(response.humanized || response.content);
```

### `help`

Displays all available commands with a short description of their purpose, required inputs, and expected outputs.

```typescript
const response = await sdk.sendMessage("@instagram help", {
  room: roomId,
  waitForResponse: true,
  timeout: 60000,
});

// response.humanized - formatted text output
// response.content   - raw/structured data
console.log(response.humanized || response.content);
```

## Cleanup

```typescript
sdk.disconnect();
```

## Agent Info

- **ID:** `instagram`
- **Name:** Instagram

Related Skills

instagram

7
from Demerzels-lab/elsamultiskillagent

instagram

instagram-marketing

7
from Demerzels-lab/elsamultiskillagent

Generate Instagram marketing content from product URLs. Extract product information and create engaging Instagram posts with image suggestions, captions, and hashtags optimized for engagement. Use when user provides a product URL from e-commerce sites like Amazon, Shopify, Taobao, etc. and wants Instagram marketing content such as Image/text post ideas, engaging captions with CTAs, hashtag strategy, or Story/reels content suggestions.

x-platform-agent-teneo

7
from Demerzels-lab/elsamultiskillagent

Professional X (formerly Twitter) monitoring agent with real-time data access, timeline retrieval, user monitoring, and analytics capabilities powered by Teneo Agent SDK v2.0 tech stack.

x-followers-followings-teneo

7
from Demerzels-lab/elsamultiskillagent

An agent that helps you extract followers and followings from X profiles.

x-finder-teneo

7
from Demerzels-lab/elsamultiskillagent

X Finder is an intelligent agent designed to assist users in quickly finding information across multiple platforms. It can search social media, websites, and other data sources to provide relevant, up

uniswap-monitor-teneo

7
from Demerzels-lab/elsamultiskillagent

AI-powered blockchain monitoring agent with real-time monitoring of Uniswap V2, V3, and V4 most known pools. Track swaps, monitor specific liquidity pools by address, and receive intelligent insights

tiktok-teneo

7
from Demerzels-lab/elsamultiskillagent

The agent gives you the ability to extract data from tiktok through different commands.

signalshield-analyst-teneo

7
from Demerzels-lab/elsamultiskillagent

SignalShield Analyst is a semi-formal, fast-response agent that monitors early calls from KOLs, detects hype and risk signals, and warns users about both bullish and bearish developments. It balances

metals-agent-teneo

7
from Demerzels-lab/elsamultiskillagent

Provides real time prices for gold, silver, and copper

messari-btc-eth-tracker-teneo

7
from Demerzels-lab/elsamultiskillagent

The agent gives you the ability to extract data from Messari through different commands.

lucky-raffle-agent-teneo

7
from Demerzels-lab/elsamultiskillagent

A payment-based raffle agent. Join the raffle and have a chance to win! Send \"@raffle-agent raffle info\" for details.

linkedin-teneo

7
from Demerzels-lab/elsamultiskillagent

LinkedIn agent that helps you enrich LinkedIn profiles. You prodive a LinkedIn URL and it will return its data from LinkedIn, in a structured JSON format. It works with both People and Companies URL.