用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/akillness/jeo-skills --skill data-analysis命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Drive Godogen (htdt/godogen), the MIT-licensed publish-time generator that turns a game description into an autonomous Claude Code or Codex build for Godot 4 C#, Bevy Rust, or Babylon.js TypeScript. Route one request to one mode: preflight the toolchain and API keys; publish a fresh game repository or safely refresh a matching existing runtime with `./publish.sh --engine ...`; run the build and prove it from the live game or a 15-20s recording; budget paid Gemini, Grok, and Tripo3D asset generation; apply engine-specific build and capture rules; troubleshoot rendering and capture failures; or contribute through the issue-first upstream process. Use when the user wants an agent to build a playable game end to end with Godogen. Triggers on: godogen, htdt/godogen, publish.sh --engine, autonomous game development, Godot C# agent build, Bevy agent build, Babylon.js agent game, asset-gen, Tripo3D rig, proof video.
Install, route, and operate zenstory-ai/drama-skills, the MIT-licensed 10-skill creator-first suite for Chinese short dramas and motion comics. Use when the user wants to import or troubleshoot the suite; initialize or resume a filesystem project; analyze a novel; develop an adaptation; write episodes; build visual assets; produce image prompts, storyboards, or video prompts; review a project; open its local Dashboard; or run confirm-gated image, video, TTS, or music production. Route each request to the correct `short-drama-*` owner while preserving the five-document episode contract. Triggers on: drama-skills, zenstory-ai/drama-skills, short-drama, Chinese short drama, motion comic, creator-first drama workflow, 剧本, 视觉设定, 分镜, 图片提示词, 视频提示词. Route generic programmable-video work to `video-production`, webtoon panel production to `webtoon-harness`, and the OpenStory codebase to `openstory`.
Drive Mole (`mo`), tw93's GPL-3.0 macOS maintenance CLI that cleans caches and app leftovers, uninstalls apps with their remnants, purges rebuildable project artifacts, removes downloaded installers, explores disk usage, runs bounded system optimization, and reports live health. Routes one request to one mode: run a command safely (`--dry-run` first, the user runs the destructive step), consume the JSON/NDJSON agent surfaces (`mo analyze --json`, `mo status --json` / `--watch`, `mo history --json`, `~/.config/mole/clean-list.txt`), install/update/remove on the right channel, configure whitelists and scan paths, troubleshoot, or contribute to the repo. Use when a user wants to free Mac disk space or fully uninstall a Mac app. Triggers on: mole, `mo clean`, `mo uninstall`, `mo analyze`, `mo purge`, `mo status`, tw93/Mole, mole.fit, clean my Mac, what is eating my disk, CleanMyMac / AppCleaner / DaisyDisk alternative, brew install mole.
基于 SOC 职业分类
正在显示 SKILL.md
| name | data-analysis |
| description | Analyze datasets to extract insights, identify patterns, and generate reports. |
| allowed-tools | Read Grep Glob Bash |
| metadata | {"tags":"data-analysis, csv, sql, notebooks, telemetry, experimentation, analytics","platforms":"Claude, ChatGPT, Gemini, Codex","version":2} |
Do not use this skill as the main workflow when:
pattern-detection.looker-studio-bigquery.codebase-search.log-analysis.Data analysis is a staged reasoning workflow:
Do not jump straight into charts or code. The goal is decision-quality analysis.
Before touching the data, define:
If the request is vague, restate it as:
"We need to explain [metric/outcome] for [audience] over [time window] and identify the strongest drivers or caveats."
Always start with data-quality triage.
Default check pattern:
import pandas as pd
# df = pd.read_csv(...)
print(df.shape)
print(df.dtypes)
print(df.head())
print(df.isna().sum().sort_values(ascending=False).head(15))
print(df.duplicated().sum())
If trust is low, stop promising conclusions and explicitly switch the output to:
| Lane | Use when | Typical tools | What success looks like |
|---|---|---|---|
| Spreadsheet-scale triage | Small extracts, PM/ops handoff, quick KPI sanity checks | Sheets / Excel / quick table review | Fast overview, obvious errors and top movements surfaced |
| SQL slicing | Data already lives in a DB / warehouse or needs grouped filters fast | SQL / DuckDB / warehouse query | Clean aggregates, cohorts, funnels, comparisons |
| Notebook / statistical analysis | Multiple metrics, cohort logic, experiment reasoning, telemetry or richer transformations | pandas / notebooks / scripts | Reproducible calculations and richer interpretation |
| Stakeholder-ready summary | The answer is mostly known and needs explanation, not more slicing | markdown memo / report / dashboard handoff | Clear findings, caveats, actions, and open questions |
Pick the cheapest lane that can answer the question. Escalate only when needed.
Use for: experiments, release effects, KPI jumps/drops, spend shifts, gameplay balance changes.
Checklist:
Use for: channel quality, user tiers, device classes, regions, player cohorts.
Checklist:
Use for: signup, purchase, onboarding, feature adoption, live-ops progression.
Checklist:
Use for: gameplay telemetry, product event streams, operational exports.
Checklist:
pattern-detection if the task becomes detection-firstStructure findings in three layers:
Good example:
Default output shape:
## Analysis brief
- Goal: [decision question]
- Data source: [files / tables / export scope]
- Trust level: high | medium | low
- Lane used: spreadsheet triage | SQL slicing | notebook/statistical | summary-only
## Key findings
1. [finding]
2. [finding]
3. [finding]
## Supporting evidence
- [metric / segment / comparison]
- [metric / segment / comparison]
## Caveats
- [missing data / sample bias / instrumentation / seasonality]
## Recommended next actions
- [decision / follow-up slice / dashboard handoff / instrumentation fix]
If the user asked for recommendations, tie each recommendation to a specific finding. If the user only asked for analysis, stop at evidence + caveats.
Hand off when the next step is a different job:
pattern-detectionlooker-studio-bigquerylog-analysiscodebase-searchPrompt:
Analyze this CSV export and tell me what changed after the pricing experiment.
Good response shape:
Prompt:
We have app event logs and marketing spend by channel; find the main retention and CAC patterns.
Good response shape:
Prompt:
Review this gameplay telemetry extract and summarize balance issues and suspicious outliers.
Good response shape:
pattern-detection if neededPrompt:
I exported a dashboard to CSV; help me explain the KPI drop for leadership.
Good response shape:
Use a brief, findings-first summary with trust level, key evidence, caveats, and explicit next actions or handoffs.