Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める$pwd:
$ git log --oneline --stat
stars:2
forks:0
updated:2026年3月9日 11:12
SKILL.md
SimilarWeb 网站分析连接器 — 流量、排名、营销渠道、受众画像等数据
沙盒执行器 — 在安全隔离环境中运行 Python/Shell 脚本获取外部数据
数据源连接器管理 — Agent 自动帮用户查询、配置、创建和测试数据连接器
自动执行模式 — 直接生成并执行代码完成用户任务
金融数据连接器 — 通过 Data Bridge 获取实时股票、财务报表、估值比率等结构化数据
WPS 图表创建 — AddChart2 方法、图表类型、配色方案、最佳实践
| name | sensortower |
| type | connector |
| description | SensorTower 移动应用数据连接器 — App 下载量、收入、DAU/MAU 数据 |
| version | 1.0.0 |
| modes | ["agent","plan","ask"] |
| context | {"keywords":["下载量","收入","DAU","MAU","活跃用户","App Store","Google Play","应用商店","移动应用","sensortower","sensor tower","iOS","Android","手游","应用排行","应用收入","应用下载"]} |
通过 dataBridgePull() 获取移动应用下载量、收入、活跃用户等数据。
var resp = dataBridgePull("sensortower", "app_sales", {
os: "ios",
app_id: "553834731",
countries: "US,GB",
start_date: "2024-01-01",
end_date: "2024-12-31",
date_granularity: "monthly"
});
if (!resp || !resp.ok) return "获取数据失败: " + (resp ? resp.error : "网络错误");
var records = resp.data.records;
// iOS: [{date, country, appId, iphoneDownloads, ipadDownloads, totalDownloads, iphoneRevenue, ipadRevenue, totalRevenue}, ...]
// Android: [{date, country, appId, downloads, revenue}, ...]
var resp = dataBridgePull("sensortower", "app_active_users", {
os: "ios",
app_id: "553834731",
countries: "US",
start_date: "2024-01-01",
end_date: "2024-12-31",
date_granularity: "monthly",
metric: "dau"
});
var records = resp.data.records; // [{date, country, appId, dau}, ...]
| 参数 | 说明 | 示例 |
|---|---|---|
| os | 平台 | "ios" 或 "android" |
| app_id | 应用 ID | iOS 数字 ID: "553834731", Android 包名: "com.king.candycrushsaga" |
| countries | 国家代码 | "US", "US,GB,JP", "WW"(全球) |
| start_date | 开始日期 | "2024-01-01" |
| end_date | 结束日期 | "2024-12-31" |
| date_granularity | 时间粒度 | "daily" / "weekly" / "monthly" / "quarterly" |
| metric | 活跃用户指标 | "dau" / "mau" |
resp.ok:必须检查返回状态