用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Demerzels-lab/elsamultiskillagent --skill tiktok-teneo命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
The philosophical layer for AI agents.
Agents can sign plugins, rotate credentials without losing identity, and publicly attest to behavior.
A relaxing resource-gathering RPG where AI agents collect resources, trade with NPCs, and manage and build their world at their own pace.
基于 SOC 职业分类
正在显示 SKILL.md
| name | tiktok-teneo |
| description | The agent gives you the ability to extract data from tiktok through different commands. |
Powered by Teneo Protocol - 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
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
The agent gives you the ability to extract data from tiktok through different commands.
Use these commands by sending a message to @tiktok via the Teneo SDK.
| Command | Arguments | Price | Description |
|---|---|---|---|
video | $0.01/per-query | Extracts video metadata | |
profile | $0.01/per-query | Extracts profile details | |
hashtag | [count] | $0.01/per-item | Extracts hashtag posts |
help | - | Free | Displays all available commands with a short description of their purpose, required inputs, and expected outputs. |
Agent ID: tiktok
Commands:
@tiktok video <<url>>
@tiktok profile <<username>>
@tiktok hashtag <<hashtag> [count]>
@tiktok help
Teneo Protocol connects you to specialized AI agents via WebSocket. Payments are handled automatically in USDC.
| Network | Chain ID | USDC Contract |
|---|---|---|
| Base | eip155:8453 | 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 |
| Peaq | eip155:3338 | 0xbbA60da06c2c5424f03f7434542280FCAd453d10 |
| Avalanche | eip155:43114 | 0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E |
npm install @teneo-protocol/sdk dotenv
Create a .env file:
PRIVATE_KEY=your_ethereum_private_key
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;
videoExtracts video metadata
const response = await sdk.sendMessage("@tiktok video <<url>>", {
room: roomId,
waitForResponse: true,
timeout: 60000,
});
// response.humanized - formatted text output
// response.content - raw/structured data
console.log(response.humanized || response.content);
profileExtracts profile details
const response = await sdk.sendMessage("@tiktok profile <<username>>", {
room: roomId,
waitForResponse: true,
timeout: 60000,
});
// response.humanized - formatted text output
// response.content - raw/structured data
console.log(response.humanized || response.content);
hashtagExtracts hashtag posts
const response = await sdk.sendMessage("@tiktok 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);
helpDisplays all available commands with a short description of their purpose, required inputs, and expected outputs.
const response = await sdk.sendMessage("@tiktok help", {
room: roomId,
waitForResponse: true,
timeout: 60000,
});
// response.humanized - formatted text output
// response.content - raw/structured data
console.log(response.humanized || response.content);
sdk.disconnect();
tiktok