返回 Skills 列表
🧠

IMA 基础智能 Skill 包

龙虾出厂标配。记忆系统、上下文管理、任务追踪、深度调研——一键激活,让龙虾开箱即智能。

社区🔥
支持模型: 记忆系统 · 项目记忆 · 任务追踪 · 深度调研 · 上下文管理

📦安装

在终端中运行以下命令安装此 Skill:

clawhub install deep-research

✨ 主要特性

  • 智能数据分析
  • 趋势预测和洞察
  • 用户行为分析
  • 竞品监测
  • 决策支持系统
  • 自定义分析报告

📖 使用指南

数据分析

深度分析业务数据

import { Intelligence } from "@ima-claw/intelligence"

const intel = new Intelligence()
const analysis = await intel.analyze({
  data: yourData,
  metrics: ["growth", "retention", "engagement"],
  timeRange: "30d",
  segments: ["channel", "region"]
})

趋势预测

基于历史数据预测未来趋势

const forecast = await intel.predict({
  metric: "revenue",
  historical: last12Months,
  horizon: 6,
  confidence: 0.95
})

console.log(forecast.predictions)
console.log(forecast.insights)

💡 示例代码

用户洞察

分析用户行为模式

const userInsights = await intel.analyzeUsers({
  events: userEvents,
  segmentBy: ["cohort", "behavior"],
  findPatterns: true,
  churnPrediction: true
})

// 返回用户画像、行为模式、流失预警等

竞品监测

监测竞品动态和市场变化

const competitive = await intel.monitorCompetitors({
  competitors: ["competitor1.com", "competitor2.com"],
  aspects: ["features", "pricing", "marketing"],
  alerts: {
    newFeature: true,
    priceChange: true
  }
})

🔧 故障排除

  • 数据量大时分析可能需要几分钟
  • 确保数据格式符合要求
  • 预测准确度取决于历史数据质量
  • 实时监测需要配置 webhook