来源信息
- 仓库
- brycewang-stanford/Auto-Empirical-Research-Skills
- 最近来源活动
- 2026年4月3日 02:07
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 3,291
- 分支
- 432
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
菜单
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill conservation-biology-guide命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
中英双语学术降 AIGC / bilingual academic de-AIGC skill. Removes AI-generated writing signatures from empirical papers in economics, management, and the social sciences — in both English and Chinese. Covers Turnitin AI, GPTZero, Originality.ai on the English side and 知网 AMLC, 万方, 维普 on the Chinese side. Uses a six-step loop (intake → audit → claim-evidence check → differentiated rewrite → five-dimension self-score → cold-reader recheck) with two pattern libraries (22 English + 17 Chinese patterns), section-by-section strategies for empirical papers, and hard protections that keep every number, coefficient, and citation intact.
Use when a research task needs reproducible Kaggle discovery, metadata inspection, bounded public-data downloads, competition or kernel discovery, model discovery, or an explicitly approved Kaggle write/delete operation through the official CLI.
| name | conservation-biology-guide |
| description | Apply conservation biology methods, databases, and assessment tools |
| metadata | {"openclaw":{"emoji":"🌳","category":"domains","subcategory":"ecology","keywords":["conservation biology","biodiversity","IUCN Red List","species assessment","habitat modeling","wildlife"],"source":"wentor-research-plugins"}} |
A skill for conducting conservation biology research, covering species assessment methods, habitat modeling, population viability analysis, key biodiversity databases, and frameworks for conservation prioritization.
Extinction Risk Categories (from highest to lowest):
EX - Extinct
EW - Extinct in the Wild
CR - Critically Endangered
EN - Endangered
VU - Vulnerable
NT - Near Threatened
LC - Least Concern
DD - Data Deficient
NE - Not Evaluated
Classification criteria (any one triggers the category):
A: Population size reduction
B: Geographic range (extent of occurrence, area of occupancy)
C: Small population size and decline
D: Very small or restricted population
E: Quantitative extinction probability analysis
import os
import json
import urllib.request
def get_species_assessment(species_name: str) -> dict:
"""
Retrieve IUCN Red List assessment for a species.
Args:
species_name: Scientific name (e.g., 'Panthera tigris')
"""
api_token = os.environ["IUCN_API_TOKEN"]
encoded_name = urllib.parse.quote(species_name)
url = f"https://apiv3.iucnredlist.org/api/v3/species/{encoded_name}?token={api_token}"
req = urllib.request.Request(url)
response = urllib.request.urlopen(req)
data = json.loads(response.read())
if data.get("result"):
species = data["result"][0]
return {
"scientific_name": species.get("scientific_name"),
"common_name": species.get("main_common_name"),
"category": species.get("category"),
"population_trend": species.get("population_trend"),
"assessment_date": species.get("assessment_date"),
"criteria": species.get("criteria")
}
return {"error": "Species not found in IUCN Red List"}
def sdm_workflow(occurrence_data: list[tuple],
environmental_layers: list[str],
method: str = "maxent") -> dict:
"""
Outline a species distribution modeling workflow.
Args:
occurrence_data: List of (latitude, longitude) tuples
environmental_layers: List of environmental raster file paths
method: Modeling method (maxent, glm, rf, boosted_regression)
"""
return {
"data_preparation": {
"occurrences": len(occurrence_data),
"environmental_variables": len(environmental_layers),
"steps": [
"Clean occurrence records (remove duplicates, spatial outliers)",
"Thin records to reduce spatial autocorrelation (1 per grid cell)",
"Generate pseudo-absences or background points",
"Extract environmental values at occurrence/absence points",
"Check for multicollinearity (VIF < 10)"
]
},
"modeling": {
"method": method,
"methods_available": {
"maxent": "Maximum entropy (presence-only, widely used)",
"glm": "Generalized linear model (presence-absence)",
"rf": "Random forest (handles non-linearities)",
"boosted_regression": "BRT (good predictive performance)",
"ensemble": "Combine multiple methods for robustness"
}
},
: {
: [, , ],
: [
,
,
]
},
: {
: ,
: ,
:
}
}
PVA simulates population dynamics to estimate extinction probability
over a given time horizon.
Key inputs:
- Current population size and structure (age/stage)
- Vital rates: survival, fecundity (with variance)
- Carrying capacity and density dependence
- Environmental and demographic stochasticity
- Catastrophe frequency and severity
- Genetic factors (inbreeding depression)
Common software:
- Vortex: Individual-based PVA simulation
- RAMAS GIS: Spatially explicit PVA
- R packages: popbio, lefko3, Compadre for matrix models
Outputs:
- Probability of extinction over T years
- Expected minimum population size
- Population growth rate (lambda) and its variance
- Sensitivity of persistence to management actions
| Database | Content | Access |
|---|---|---|
| GBIF | 2+ billion species occurrence records | Free (gbif.org) |
| IUCN Red List | Species assessments and distributions | API + download |
| BIEN | Plant occurrence and trait data (Americas) | Free (biendata.org) |
| eBird | Bird observations worldwide | Free (ebird.org) |
| Protected Planet (WDPA) | Global protected area boundaries | Free (protectedplanet.net) |
| WorldClim | Current and future climate layers | Free (worldclim.org) |
| CHELSA | High-resolution climate data | Free (chelsa-climate.org) |
| Global Forest Watch | Forest cover change | Free (globalforestwatch.org) |
Systematic Conservation Planning (Margules & Pressey):
1. Compile data on biodiversity features and their distributions
2. Set conservation targets for each feature
3. Review existing protected area coverage
4. Select additional areas using optimization (e.g., Marxan, Zonation)
5. Implement and manage conservation actions
6. Monitor outcomes and adapt
Key principles:
- Representativeness: All species/habitats should be represented
- Complementarity: Each new area should add maximum new coverage
- Efficiency: Minimize cost while meeting targets
- Connectivity: Corridors link protected areas
Report species names with taxonomic authority and reference to the taxonomic standard used (e.g., ITIS, Catalogue of Life). Deposit occurrence data in GBIF. Follow the Darwin Core standard for biodiversity data. Use IUCN criteria language when discussing threat status. Clearly state conservation implications and management recommendations, as conservation biology is an applied and mission-driven discipline.