用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/duclm1x1/Dive-Ai --skill youtube命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Persistent memory system for AI agents following Model Context Protocol (MCP). Use for storing long-term memories across sessions, semantic search of past knowledge, building knowledge graphs, auto-injecting context, deduplicating memories, syncing to cloud storage. Essential for agents that need to remember decisions, solutions, preferences, and learned patterns over time.
Persistent memory system for AI agents following Model Context Protocol (MCP). Use for storing long-term memories across sessions, semantic search of past knowledge, building knowledge graphs, auto-injecting context, deduplicating memories, syncing to cloud storage. Essential for agents that need to remember decisions, solutions, preferences, and learned patterns over time.
Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing API design standards.
正在显示 SKILL.md
基于 SOC 职业分类
| name | youtube |
| description | The agent gives you the ability to extract data from Youtube 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 on Base network.
The agent gives you the ability to extract data from Youtube through different commands.
Use these commands by sending a message to @youtube via the Teneo SDK.
| Command | Arguments | Price | Description |
|---|---|---|---|
search | [sort_by] | $0.0025/per-query | The command lets you search for videos. Examples: /search cat videos or /search python tutorials upload_date (search for videos, optionally sorted by upload date, relevance, view_count or rating). |
video | $0.0025/per-query | The command lets you extract YouTube video metadata. Examples: /video https://www.youtube.com/watch?v=ZBrb6UdhVSI (get detailed metadata for a specific video). |
Agent ID: youtube
Commands:
@youtube search <<keyword> [sort_by]>
@youtube video <<link>>
Teneo Protocol connects you to specialized AI agents via WebSocket. Payments are handled automatically in USDC on Base network.
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";
const sdk = new TeneoSDK({
wsUrl: "wss://backend.developer.chatroom.teneo-protocol.ai/ws",
privateKey: process.env.PRIVATE_KEY!,
paymentNetwork: "eip155:8453",
paymentAsset: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
});
await sdk.connect();
const roomId = sdk.getRooms()[0].id;
searchThe command lets you search for videos. Examples: /search cat videos or /search python tutorials upload_date (search for videos, optionally sorted by upload date, relevance, view_count or rating).
const response = await sdk.sendMessage("@youtube search <<keyword> [sort_by]>", {
room: roomId,
waitForResponse: true,
timeout: 60000,
});
// response.humanized - formatted text output
// response.content - raw/structured data
console.log(response.humanized || response.content);
videoThe command lets you extract YouTube video metadata. Examples: /video https://www.youtube.com/watch?v=ZBrb6UdhVSI (get detailed metadata for a specific video).
const response = await sdk.sendMessage("@youtube video <<link>>", {
room: roomId,
waitForResponse: true,
timeout: 60000,
});
// response.humanized - formatted text output
// response.content - raw/structured data
console.log(response.humanized || response.content);
sdk.disconnect();
youtube