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

atypica-research异型研究

Agent Skill

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

总安装

364

周安装

15

GitHub Stars

39

下载量

119
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bmrlab/atypica-research-skill --skill atypica-research

简介

atypica-research 接入 atypica.ai 的多智能体研究框架,用于理解消费者情绪与市场偏好。

  • 适用于需要深度用户洞察、情感分析与决策模式识别的商业研究项目。
  • 支持通过 MCP Server 配置 API 访问,提供 HTTP 头部认证与端点参数设置。
  • 使用前需在 atypica.ai 账户获取 API Key,并确保网络环境可连接指定服务端点。
  • 该技能依赖外部服务调用,建议提前验证权限与配额限制,避免任务中断。

SKILL.md

atypica Research

Access atypica.ai's multi-agent research framework for understanding consumer emotions, market perceptions, and decision preferences.

Prerequisites

IMPORTANT: This skill provides two ways to access atypica.ai research capabilities:

Option 1: MCP Server (Recommended for AI assistants)

If tools starting with atypica_ are already available, the MCP server is configured. Otherwise, guide the user to configure it.

Configuration parameters:

Example: Claude Desktop - Edit config file at:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "atypica-research": {
      "transport": "http",
      "url": "https://atypica.ai/mcp/study",
      "headers": {
        "Authorization": "Bearer atypica_xxx"
      }
    }
  }
}

Restart Claude Desktop to load. For other MCP clients, configuration syntax may differ.

Option 2: Direct Bash Script (Works anywhere)

If MCP server is not available or for simpler use cases, use the bundled bash script:

scripts/mcp-call.sh <tool_name> <json_args> [options]

Setup:

export ATYPICA_TOKEN="atypica_xxx"

Examples:

# Create research session
scripts/mcp-call.sh atypica_study_create '{"content":"Research coffee preferences"}'

# Get messages with tail parameter (3-5 parts, increase if more context needed)
scripts/mcp-call.sh atypica_study_get_messages '{"userChatToken":"abc123","tail":5}'

Options:

  • -t, --token - API token (overrides ATYPICA_TOKEN)
  • -o, --output - Output format: text|json|structured|auto
  • -f, --file - Write output to file instead of stdout
  • -v, --verbose - Enable verbose output
  • -h, --help - Show help message

See scripts/mcp-call.sh for full documentation.

Quick Start

Once the MCP server is installed:

// 1. Create research session
const result = await callTool("atypica_study_create", {
  content: "Research young people's coffee preferences"
});
const userChatToken = result.structuredContent.token;

// 2. Send message (starts the AI run; completion usually takes 10-120s in background)
await callTool("atypica_study_send_message", {
  userChatToken,
  message: {
    role: "user",
    lastPart: { type: "text", text: "Start research" }
  }
});

// 3. Poll for research progress
let result;
let pollInterval = 30000; // 30 seconds before plan confirmation
let tailSize = 3; // Start with 3-5 parts, increase if needed
do {
  await wait(pollInterval);
  result = await callTool("atypica_study_get_messages", {
    userChatToken,
    tail: tailSize  // Get last few parts for efficiency
  });

  // After plan confirmation, use longer interval
  const hasPlanConfirmed = result.structuredContent.messages.some(m =>
    m.parts.some(p => p.type === "tool-makeStudyPlan" && p.state === "output-available")
  );
  if (hasPlanConfirmed) {
    pollInterval = 300000; // 5 minutes after plan confirmation
  }

  // If needed more context, increase tail size (up to 10-15)
  // or remove tail parameter to get all messages
} while (result.structuredContent.isRunning);

// 4. Handle pending interactions or get final report
const { messages } = result.structuredContent;
const reportTool = messages
  .flatMap(m => m.parts)
  .find(p => p.type === "tool-generateReport" && p.output);

if (reportTool?.output?.reportToken) {
  const report = await callTool("atypica_study_get_report", {
    token: reportTool.output.reportToken
  });
  // Access report details
  console.log(report.structuredContent.title);
  console.log(report.structuredContent.shareUrl);  // Public share URL
  console.log(report.structuredContent.content);   // HTML content
} else {
  // If stopped without report, you can continue:
  await callTool("atypica_study_send_message", {
    userChatToken,
    message: {
      role: "user",
      lastPart: { type: "text", text: "Please continue the research" }
    }
  });
  // Then poll again...
}

Core Workflow

  1. Create research session with initial query
  2. Send messages to drive research forward (AI executes synchronously)
  3. Poll for pending interactions that require user input
  4. Handle interactions by submitting tool results
  5. Monitor progress and retrieve artifacts (reports/podcasts)

Available Tools

Session Management

atypica_study_create - Create research session

  • Input: {content: string}
  • Returns: {token: string; // Study session token for subsequent operations studyId: number; // Internal study ID status: "created"; // Always "created" on success}

atypica_study_send_message - Send message and start/continue AI execution

  • Two input types:

- User text: {userChatToken, message: {role: "user", lastPart: {type: "text", text}}} - Tool result: See "User Interactions" section

  • Returns: {messageId: string; // Message identifier role: "user" | "assistant"; // Message role status: "running" | "saved_no_ai" | "ai_failed"; attachmentCount?: number; // Number of attachments (if any) error?: string; // Error message (if status is "ai_failed") reason?: string; // Reason (if status is "saved_no_ai")}
  • Notes:

- running means the message was saved and the study agent started/resumed in background - Poll atypica_study_get_messages until isRunning becomes false

atypica_study_get_messages - Retrieve conversation history and execution status

  • Input: {userChatToken: string, tail?: number}
  • Returns: {isRunning: boolean; // true = AI executing, false = can interact messages: Array<{messageId: string; role: "user" | "assistant"; parts: Array<MessagePart>; // Text, tool calls, tool results createdAt: string; // ISO timestamp}>;}
  • Critical:

- isRunning: true → AI is executing, wait and poll again later - isRunning: false → Can interact, check for pending tool calls in parts - tail (optional): Limit to last N parts across all messages (3-5 recommended)

atypica_study_list - List historical research sessions

  • Input: {kind?: "testing" | "insights" | "creation" | "planning" | "misc" | "productRnD" | "fastInsight"; page?: number; // Default: 1 pageSize?: number; // Default: 20, max: 100}
  • Returns: {data: Array<{studyId: number; token: string; // Study session token title: string; // Auto-generated title kind: string | null; // Research type topic: string; // Research topic hasReport: boolean; // Has generated report hasPodcast: boolean; // Has generated podcast replayUrl: string; // URL to replay the study: https://atypica.ai/study/{token}/share?replay=1 createdAt: string; // ISO timestamp updatedAt: string; // ISO timestamp}>; pagination: {page: number; pageSize: number; totalCount: number; totalPages: number;};}

Artifacts

atypica_study_get_report - Get research report

  • Input: {token: string}
  • Returns: {token: string; // Report token instruction: string; // Generation instruction title: string; // Report title description: string; // Report description content: string; // HTML content (one-page format) coverUrl?: string; // Signed CDN URL for cover image shareUrl: string; // Public share URL: https://atypica.ai/artifacts/report/{token}/share generatedAt: string; // ISO timestamp when generated createdAt: string; // ISO timestamp when created updatedAt: string; // ISO timestamp when last updated}

atypica_study_get_podcast - Get podcast content

  • Input: {token: string}
  • Returns: {token: string; // Podcast token instruction: string; // Generation instruction script: string; // Full podcast script/transcript audioUrl: string; // Signed CDN URL for audio file coverUrl?: string; // Signed CDN URL for cover image metadata: {// Podcast metadata title: string; duration?: number; // Duration in seconds coverObjectUrl?: string; //... other metadata fields}; shareUrl: string; // Public share URL: https://atypica.ai/artifacts/podcast/{token}/share generatedAt: string; // ISO timestamp when generated createdAt: string; // ISO timestamp when created updatedAt: string; // ISO timestamp when last updated}

Personas

atypica_persona_search - Semantic search for AI personas

  • Input: {query?: string; // Text query for name/source matching privateOnly?: boolean; // true = only your own private personas limit?: number; // Max results (default: 10, max: 50)}
  • With query, uses indexed text search
  • Without query, returns the latest personas visible to you (public + your private, unless privateOnly is true)
  • Returns: {data: Array<{personaId: number; token: string; // Persona token name: string; // Persona name source: string; // Persona source/origin tier: number; // Access tier (0-3) tags: string[]; // Associated tags createdAt: string; // ISO timestamp}>;}

atypica_persona_get - Get persona details

  • Input: {personaId: number}
  • Returns: {personaId: number; token: string; // Persona token name: string; // Persona name source: string; // Persona source/origin prompt: string; // Full persona prompt (system prompt for AI) tier: number; // Access tier (0-3) tags: string[]; // Associated tags locale: string; // Persona language locale createdAt: string; // ISO timestamp updatedAt: string; // ISO timestamp}

Understanding Research State from Messages

All research state is in the messages - you don't need a separate status API. After calling getMessages, follow this pattern:

1. Check if AI is executing

const { isRunning, messages } = result.structuredContent;

if (isRunning) {
  // AI is working in background, cannot interact now
  // Polling strategy:
  // - Before plan confirmation: 30 seconds
  // - After plan confirmation: 5 minutes
  return "Research is running, please wait...";
}

2. Check for pending interactions

Scan the last assistant message for tool calls needing user input:

const lastMsg = messages[messages.length - 1];
if (lastMsg.role === "assistant") {
  for (const part of lastMsg.parts) {
    if (part.type.startsWith("tool-") && part.state === "input-available") {
      // Handle this pending tool call (see User Interactions section)
    }
  }
}

3. Understand research progress

Look at recent tool calls to see what's happening:

Tool CallMeaning
makeStudyPlanIn Plan Mode, AI is clarifying intent
interviewChat, discussionChatConducting interviews/discussions
webSearch, webFetchGathering information
reasoningThinkingDeep analysis in progress
generateReportGenerating final report
generatePodcastGenerating podcast

4. Check if research is complete

Look for generateReport or generatePodcast tool call with output:

const reportTool = messages
  .flatMap(m => m.parts)
  .find(p => p.type === "tool-generateReport" && p.state === "output-available");

if (reportTool?.output?.reportToken) {
  // Research complete! Get the report
  const report = await callTool("atypica_study_get_report", {
    token: reportTool.output.reportToken
  });
  console.log(report.structuredContent.title);
  console.log(report.structuredContent.shareUrl);  // https://atypica.ai/artifacts/report/{token}/share
}

// Similarly for podcasts
const podcastTool = messages
  .flatMap(m => m.parts)
  .find(p => p.type === "tool-generatePodcast" && p.state === "output-available");

if (podcastTool?.output?.podcastToken) {
  const podcast = await callTool("atypica_study_get_podcast", {
    token: podcastTool.output.podcastToken
  });
  console.log(podcast.structuredContent.audioUrl);
  console.log(podcast.structuredContent.shareUrl);  // https://atypica.ai/artifacts/podcast/{token}/share
}

5. Continue a stopped research

When to use: If research stops (isRunning: false) but no report/podcast was generated, you can continue it.

How to continue:

// Check if research stopped without completing
const { isRunning, messages } = result.structuredContent;
const hasReport = messages.some(m =>
  m.parts.some(p =>
    (p.type === "tool-generateReport" || p.type === "tool-generatePodcast") &&
    p.state === "output-available"
  )
);

if (!isRunning && !hasReport) {
  // Research stopped but not complete - you can continue it
  await callTool("atypica_study_send_message", {
    userChatToken,
    message: {
      role: "user",
      lastPart: {
        type: "text",
        text: "Please continue the research"  // or "[CONTINUE ASSISTANT STEPS]"
      }
    }
  });

  // Then poll again to check progress
}

Important:

  • The AI will resume from where it stopped, not restart from scratch
  • It may retry the last interrupted tool or continue with the next step
  • After sending continue message, poll getMessages again to track progress

User Interactions

Two tools require user interaction. Check getMessages response for pending calls with state === "input-available".

requestInteraction - User Choice/Input

Detect:

{
  "type": "tool-requestInteraction",
  "state": "input-available",
  "toolCallId": "call_abc",
  "input": {
    "question": "Which age group to focus on?",
    "options": ["18-22", "23-28", "29-35"],
    "maxSelect": 1  // 1=single, 2+=multi with limit, undefined=unlimited
  }
}

Submit via sendMessage:

{
  "userChatToken": "...",
  "message": {
    "id": "msg_2",  // Original message ID
    "role": "assistant",
    "lastPart": {
      "type": "tool-requestInteraction",
      "toolCallId": "call_abc",
      "state": "output-available",
      "input": { /* copy from above */ },
      "output": {
        "answer": "23-28",  // string for single, string[] for multi
        "plainText": "User selected: 23-28"
      }
    }
  }
}

makeStudyPlan - Plan Confirmation

Detect:

{
  "type": "tool-makeStudyPlan",
  "state": "input-available",
  "toolCallId": "call_xyz",
  "input": {
    "locale": "zh-CN",
    "kind": "insights",
    "role": "Market Researcher",
    "topic": "Coffee preferences study",
    "planContent": "# Research Plan\n\n## Goals\n...\n## Methods\n..."
  }
}

Submit via sendMessage:

{
  "userChatToken": "...",
  "message": {
    "id": "msg_2",
    "role": "assistant",
    "lastPart": {
      "type": "tool-makeStudyPlan",
      "toolCallId": "call_xyz",
      "state": "output-available",
      "input": { /* copy from above */ },
      "output": {
        "confirmed": true,  // boolean: true to confirm, false to cancel
        "plainText": "User confirmed research plan"
      }
    }
  }
}

Best Practices

  1. Async execution: sendMessage starts or resumes the run, then returns while the AI continues in background
  2. Poll for interactions: After each sendMessage, check getMessages for pending tool calls
  3. Handle timeouts: If sendMessage times out, use getMessages to check progress
  4. Error handling: Check status field: "running" | "saved_no_ai" | "ai_failed"
  5. Persona search: Use natural language queries in persona_search, or privateOnly: true to limit results to your own personas

Research Types (kind)

  • productRnD - Product research & development
  • fastInsight - Quick insights with podcast generation
  • insights - Consumer insights research
  • testing - Product testing and validation
  • creation - Creative content generation
  • planning - Strategic planning
  • misc - Miscellaneous research

New study sessions start in Plan Mode automatically, where AI can clarify the request before locking in a research type.

Performance Expectations

  • Plan Mode: 5-10 seconds
  • Fast Insight: 20-40 seconds
  • Full Study/Product R&D: 30-120 seconds
  • Message/persona retrieval: < 2 seconds

Reference Documentation

See references/api-reference.md for complete API documentation including:

  • Detailed input/output schemas for all tools
  • Error codes and troubleshooting
  • Complete workflow examples
  • Security and limitations

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.74%
按下载量换算46

Claude

28.67%
按下载量换算34

Cursor

18.65%
按下载量换算22

Gemini CLI

9.82%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills