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

uapp-outlieruapp 异常值

Agent Skill

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

总安装

116

周安装

5

GitHub Stars

公开资料未说明

下载量

41
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:uapp-outlier(uapp 异常值)
来源仓库:https://github.com/squall0925/uapp-outlier
安装命令:
openclaw skills install uapp-outlier
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install uapp-outlier

简介

查询友盟应用异常报告和智能巡检总结的辅助工具。

  • 返回昨日异常详情和巡检结论,适用于故障排查场景。
  • 支持按应用维度筛选异常类型,提升问题定位效率。
  • 安装命令:openclaw skills install uapp-outlier。
  • 使用前建议确认 umeng-cli 配置正确且具备异常数据读取权限。

SKILL.md

name
uapp-outlier
description
Query UApp (友盟+) application outlier reports, yesterday anomalies, and intelligent inspection summaries. Use when users ask about app anomaly detection, outlier reports, abnormal metrics, application inspection, or mention UApp/友盟+ monitoring data. Supports querying specific app outlier reports by appkey and date, checking yesterday's anomalies across all apps, and retrieving intelligent inspection basic information.

UApp Outlier Detection

Query 友盟+ (UApp) application anomaly data including outlier reports, daily anomalies, and intelligent inspection summaries.

Authentication

Obtain credentials in priority order:

  1. User input: User directly provides apiKey (ak) and apiSecurity (sk)
  2. Config file: Read from umeng-config.json on user's machine
  3. Environment variables: Get UMENG_API_KEY and UMENG_API_SECURITY from environment

Reading umeng-config.json

Search common locations for umeng-config.json:

  • Current working directory
  • User home directory (~)
  • Project root directories

Expected format:

{
  "apiKey": "your_api_key",
  "apiSecurity": "your_api_security",
  "apps": {
    "appkey1": "AppName1",
    "appkey2": "AppName2"
  }
}

The apps section maps app names to appkeys. When a user provides an app name instead of an appkey, the skill will look it up in this mapping.

If credentials not found, ask the user to provide them.

Resolving App Name to Appkey

When the user provides an app name instead of an appkey:

  1. Check if input looks like an appkey (hex string, 20+ chars) - if so, use directly
  2. Look up in the apps mapping from umeng-config.json
  3. If not found, ask the user to provide the correct appkey

Example:

  • User says "查询 APM_Demo_iOS 的异动报告" -> look up "APM_Demo_iOS" in apps mapping -> get appkey
  • User says "查询 59892f08310c9307b60023d0 的异动报告" -> use appkey directly

If the app cannot be resolved, ask the user: "无法找到应用 'xxx' 对应的 appkey,请提供正确的 appkey 或在 umeng-config.json 中添加应用映射。"

API Endpoints

1. Get App Outlier Report

Query outlier/anomaly report for a specific app on a given date.

Endpoint: GET https://mobile.umeng.com/ht/api/v3/ai/getOutlierPoints

Parameters:

  • ak: API key
  • sk: API security token
  • appkey: Application key
  • ds: Date in yyyyMMdd format (e.g., 20260401)

Example:

import requests

url = "https://mobile.umeng.com/ht/api/v3/ai/getOutlierPoints?ak={apiSecret}&sk={apiSecurity}&appkey=59892f08310c9307b60023d0&ds=20260401"

payload = {}
headers = {
   'User-Agent': 'Apifox/1.0.0 (https://apifox.com)',
   'Accept': '*/*',
   'Host': 'mobile.umeng.com',
   'Connection': 'keep-alive'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)

Response fields (in data object, keyed by appkey):

  • appKey: Application key
  • shareUrl: Report URL - open this to view detailed outlier report
  • id: Outlier point ID
  • category: Outlier summary description (e.g., "活跃低于周三常态")
  • type: Outlier type - green: green point, red: red point
  • ds: Date when outlier occurred (YYYY-MM-DD format)
  • status: 1 = anomaly, 2 = normal

2. Get Yesterday's Outliers

Check which applications had anomalies yesterday.

Endpoint: GET https://mobile.umeng.com/ht/api/v3/ai/getYesterdayOutliers

Parameters:

  • ak: API key
  • sk: API security token

Example:

import requests

url = "https://mobile.umeng.com/ht/api/v3/ai/getYesterdayOutliers?ak={apiSecret}&sk={apiSecurity}"

payload = {}
headers = {
   'User-Agent': 'Apifox/1.0.0 (https://apifox.com)',
   'Accept': '*/*',
   'Host': 'mobile.umeng.com',
   'Connection': 'keep-alive'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)

Response fields (in data array):

  • name: Application name
  • appkey: Application key
  • platform: Platform (e.g., "iphone")
  • todayActiveUser: Today's active users
  • todayNewUser: Today's new users
  • todayTotalUser: Today's total users
  • activeUser: Active users
  • newUser: New users
  • totalUser: Total users
  • launch: Launch count
  • todayLaunch: Today's launch count
  • appLevel: App level
  • productLevel: Product level (e.g., "PLUS")
  • star: Whether starred
  • outlierTip: Outlier reminder info

- id: Outlier point unique ID - type: Outlier type - green or red - ds: Outlier date - status: 1 = anomaly, 2 = normal

3. Get Intelligent Inspection Summary

Retrieve basic intelligent inspection information for the account.

Endpoint: GET https://mobile.umeng.com/ht/api/v3/claw/meta/aiEventSummary

Headers:

  • Authorization: Bearer {apiSecurity} (use sk value)

Example:

import requests

url = "https://mobile.umeng.com/ht/api/v3/claw/meta/aiEventSummary"

payload = {}
headers = {
   'Authorization': 'Bearer {apiSecurity}',
   'User-Agent': 'Apifox/1.0.0 (https://apifox.com)',
   'Accept': '*/*',
   'Host': 'mobile.umeng.com',
   'Connection': 'keep-alive'
}

response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)

Response fields:

  • metas: Tracking anomaly reporting info for last 30 days

- err_code: Error code (see Error Code Reference below) - error_count: Error count

  • eventSummary: Event summary

- normal: Normal (calculing + partially calculated) event count - stopped: Stopped calculation event count - unReg: Unregistered time count

  • noEventQuotaAppNames: Applications without event quota
  • unRegEvents: Unregistered event identifiers

Error Code Reference

Error CodeDescription
100001Event ID is null
100002Event ID is empty or all spaces
100003Event ID conflicts with system reserved events
100004Event ID exceeds 128 bytes
100005Event ID contains invalid characters
100006Event properties count exceeds limit
100007Property key conflicts with system reserved properties
100008iOS key type is invalid
100009Property key exceeds 128 bytes
100010Property value is empty @""
100011Property value is null
100012Property value exceeds 256 bytes
100013iOS property value type is invalid
100014Property parameter type is invalid
100015Property count is 0
100016Property key is empty @""
100020Event duration exceeds limit
100022Label parameter value exceeds 256 bytes
100023Event API property value is null
100024Property key is null
100025Property key contains invalid characters
100026Android property value type is invalid
200002Event ID/name is duplicated
200001Event count exceeds limit
200003Property key/name is duplicated

Usage Workflow

Query Specific App Outlier Report

  1. Get credentials (ak, sk) using authentication priority
  2. Get appkey from user input
  3. Get ds (date) - if user says "yesterday", calculate yesterday's date in yyyyMMdd format
  4. Call endpoint 1 (Get App Outlier Report)
  5. Present results:

- If status = 1: Report the anomaly with category, type, and provide the shareUrl - If status = 2: Report that the app is normal for that date - Provide the shareUrl for detailed report viewing

Check Yesterday's Anomalies

  1. Get credentials (ak, sk)
  2. Call endpoint 2 (Get Yesterday's Outliers)
  3. Present results:

- List apps with outlierTip.status = 1 (anomalies) - Include app name, platform, outlier type (green/red), and category if available - If no anomalies, report that all apps are normal

Get Intelligent Inspection Summary

  1. Get credentials (sk for Bearer token)
  2. Call endpoint 3 (Get Intelligent Inspection Summary)
  3. Present results:

- Summarize event status (normal, stopped, unregistered counts) - List any tracking anomalies from metas with error codes and counts - Translate error codes using the Error Code Reference table - List apps without event quota if any

Response Handling

  • Always translate error codes to user-friendly descriptions using the Error Code Reference
  • Provide shareUrl directly so users can open detailed reports
  • Distinguish between green (绿点) and red (红点) outlier types
  • Format dates consistently (YYYY-MM-DD for display, yyyyMMdd for API calls)
  • If API returns non-200 status or error, report the error message to the user

Usage Statistics

This skill reports usage statistics via umeng-cli trace command after each API call.

Requirements

Requires umeng-cli to be installed. Install via:

npm install -g @umengfe/umeng-cli

Control Statistics

Disable statistics via environment variable:

export UMENG_ENABLE_STATS=false

Statistics Data Collected

  • skill_name: Always "uapp-outlier"
  • event_type: Which API was called (outlier_report, yesterday_outliers, inspection_summary)
  • appkey: Application key (if applicable)
  • Additional context (e.g., date for outlier reports)

No sensitive data (credentials, response data, user queries) is collected.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

82.82%
按下载量换算34

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills