Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

interactiveaiinteractiveai 搜索

Agent Skill

interactiveai 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

783

周安装

32

GitHub Stars

公开资料未说明

下载量

251
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:interactiveai(interactiveai 搜索)
来源仓库:https://github.com/interactive-ai-labs/skills
仓库路径:skills/interactiveai
安装命令:
npx skills add https://github.com/interactive-ai-labs/skills --skill interactiveai
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/interactive-ai-labs/skills --skill interactiveai

简介

interactiveai 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

InteractiveAI

This skill helps you use InteractiveAI effectively across common workflows: instrumenting applications, migrating prompts, managing platform resources, and accessing documentation.

Core Principles

Follow these principles for ALL InteractiveAI work:

  1. Documentation First: NEVER implement from memory. Always fetch current docs before writing code. See the documentation section below.
  2. CLI and Schema Discovery First: Before changing InteractiveAI resources, discover the exact command shape with iai --help, iai <command> --help, and iai <command> <subcommand> --help. For structured prompts, use iai <type> schema when available.
  3. Best Practices by Use Case: Check the relevant reference file below before implementing.
  4. Default to Latest Prompt Fetches: When reading prompts or wiring prompt fetches, use the latest version unless the user explicitly asks for a different label or a fixed version.
  5. Explicit Confirmation for Live Changes: Scaling services or replicas, or assigning the production label to a prompt version, changes live behavior. Do not do either unless the user explicitly confirms.
  6. Use Latest InteractiveAI Versions: Unless the user specified otherwise or there is a good reason not to, use the latest InteractiveAI SDK and API versions.

Use case specific references

  • instrumenting an existing function/application: references/instrumentation.md
  • migrating prompts from a codebase into InteractiveAI: references/prompt-migration.md
  • working with structured prompt types (routine, policy, variable, glossary, macro): references/structured-prompts.md
  • further tips on using the iai CLI: references/cli.md

1. InteractiveAI CLI (iai)

Use the iai CLI to manage platform resources and inspect data. Unlike npx-based tools, iai must be installed locally.

Start by verifying availability and discovering the command shape:

iai --help
iai <command> --help
iai <command> <subcommand> --help

For structured prompt work, also inspect the type schema when available:

iai <type> schema

If iai is not installed, install the latest version:

go install github.com/Interactive-AI-Labs/interactive-cli/cmd/iai@latest
export PATH=$PATH:$(go env GOPATH)/bin

Credentials

Set these environment variables before using the SDK or CLI:

export INTERACTIVEAI_PUBLIC_KEY=pk-lf-...
export INTERACTIVEAI_SECRET_KEY=sk-lf-...
export INTERACTIVEAI_HOST=https://app.interactive.ai
export INTERACTIVE_API_KEY=$INTERACTIVEAI_PUBLIC_KEY:$INTERACTIVEAI_SECRET_KEY

INTERACTIVEAI_HOST must always be set. If the credentials are not available, ask the user for their API keys from InteractiveAI Settings.

Guardrails

  • Ask for confirmation before running iai services or iai replicas commands that change capacity.
  • Prompt versions receive latest automatically. Do not add --labels production unless the user explicitly confirms they want the new version live now.
  • If the task would replace the version currently used in production, stop and ask for direct confirmation before proceeding.

Detailed CLI Reference

For common workflows, authentication details, and usage patterns, see references/cli.md.

2. InteractiveAI Documentation

Two methods to access InteractiveAI docs, in order of preference. Always prefer native web fetch/search tools over curl when available. The URL patterns below work with any fetch method; the curl examples are illustrative.

2a. Documentation Index (llms.txt)

Fetch the full documentation index:

curl -s https://docs.interactive.ai/llms.txt

This returns doc titles and relative paths. Prefix each path with https://docs.interactive.ai to form the full URL.

Alternatively, start from https://docs.interactive.ai and navigate to the relevant page.

2b. Fetch Individual Pages as Markdown

Any page listed in llms.txt can be fetched as markdown by appending .md to its path:

curl -s "https://docs.interactive.ai/sdk/tracing.md"
curl -s "https://docs.interactive.ai/sdk/prompts.md"
curl -s "https://docs.interactive.ai/cli/iai.md"

Documentation Workflow

  1. Start with llms.txt to find the right page.
  2. Fetch the specific markdown page once you know where the relevant guidance lives.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

40.14%
按下载量换算101

Claude

28.92%
按下载量换算73

Cursor

18.98%
按下载量换算48

Gemini CLI

9.5%
按下载量换算24

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills