DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Econ Tools — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins
E

dsh-econ-tools

Econ Tools

计量经济学研究助手 - 提供模型设计、数据清洗、变量选择、实证分析、稳健性分析等全流程计量经济学研究工具

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:Chaos-Hyper/dsh-econ-tools#1d3d25a9e1a1d56f58a4becc49cb0603629e93a1
README兼容性版本

兼容性与来源证明

Econ Tools 以 dsh-econ-tools 发布,当前版本为 1.0.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/8/20

版本

1.0.0stable
2026/8/20

相关插件

正在加载相关插件…

最新版
1.0.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 2
周下载
0
最近提交
2026/8/20
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 search-research 分类下经过校验的插件。

Browser Skill Dsh Plugin@wxg-prc-cpg/browser-skill-dsh-plugin向模型提供 BrowserSkill 浏览器自动化(browser_* 工具)的 DeepSeek Harness 工具插件Weknora@wxg-prc-cpg/dsh-weknora适用于 DeepSeek Harness (dsh) 的 WeKnora 知识检索工具:通过自有知识库进行语义搜索、文档阅读以及 RAG/代理回答。Free Searchdsh-free-searchDeepSeek Harness 的免费网页搜索:13 个引擎(Bing/DuckDuckGo/AnySearch/SearXNG/Exa/Tavily/Keenable/Firecrawl 无需密钥;Parallel/Perplexity/SerpBase/DeepSeek 需要密钥),支持时间筛选、平台搜索和 web_fetch,并提供网页设置界面。Find Plugindsh-find-plugin在代理中查找 DeepSeek Harness 插件——实时搜索 GitHub 上的 dsh-plugin 主题,并按星标数排序。

README

📊 dsh-econ-tools — Econometrics Research Assistant

English | 中文

A DeepSeek Harness plugin providing 6 ready-to-use econometrics tools covering the full research workflow: method selection, data preparation, model specification, empirical analysis, robustness checks, and result reporting.


Feature Overview

ToolFunctionUse Case
🎯 econ_method_guideMethod Guide — Recommend appropriate econometric models based on research question and data typeResearch design stage, unsure which model to use
🧹 econ_data_prepData Preparation — Missing value handling, outlier detection, variable transformation, categorical encoding, with Python code snippetsCleaning raw data before analysis
⚙️ econ_model_specModel Specification & Variable Selection — Theory-driven, data-driven, hybrid, and ML-based (LASSO/Ridge/ElasticNet) strategies, with diagnostic checklistsSelecting core variables and controls
🔬 econ_run_analysisEmpirical Analysis — Supports OLS, IV/2SLS, Logit, Probit, panel FE, DID, RDD; auto-generates Python/R/Stata code templates with interpretation guidanceRunning regressions, interpreting results
🛡️ econ_robustnessRobustness Checks — Omitted variables, measurement error, sample selection, model specification, outliers, parallel trends, placebo tests — 7 dimensionsVerifying whether core findings are reliable
📝 econ_reportResult Reporting — Generate descriptive statistics tables, baseline regression tables, and robustness check summaries in Markdown / LaTeX / HTML, bilingual (CN/EN)Writing papers, formatting result tables

Quick Start

Installation

Option 1: From GitHub (Recommended)

Install directly via the dsh CLI:

dsh plugin --profile web add github:Chaos-Hyper/dsh-econ-tools

Option 2: Local File Installation

If you already have the source directory, install by path:

dsh plugin --profile web add /path/to/dsh-econ-tools

Or manually add it to the web profile dependencies (edit ~/.dsh/profiles/web/package.json):

"dependencies": {
    "dsh-econ-tools": "link:/path/to/dsh-econ-tools"
}

Then add "dsh-econ-tools" to the dsh.profile.bundles array, and run:

cd ~/.dsh/profiles/web
pnpm install

Restart DSH for the changes to take effect.

Usage

The Agent will automatically call the appropriate tool based on your research needs. For example:

"I want to study the impact of education on income using cross-sectional data. What model should I use?" → Agent calls econ_method_guide, recommending OLS, IV methods, etc.

"Run robustness checks for potential omitted variable bias." → Agent calls econ_robustness, providing Oster stability test and other solutions.


Tool Details

1. econ_method_guide

Parameters:

  • research_goal: Research goal (causal inference / prediction / policy evaluation)
  • dependent_type: Dependent variable type (continuous / binary / panel)
  • data_structure: Data structure (cross-section / time series / panel)
  • endogeneity_concern: Whether endogeneity is a concern (optional)

Sample output:

{
  "recommended_models": ["OLS", "DID"],
  "methodology_notes": ["Run model diagnostics", "Use robust standard errors"],
  "next_tools": ["econ_data_prep", "econ_model_spec", "econ_run_analysis"]
}

2. econ_data_prep

Parameters:

  • missing_rate: Missing data proportion (none / low / moderate / high)
  • outlier_concern: Whether to address outliers
  • variable_types: Variable types (continuous / categorical / dummy)
  • need_transformation: Whether variable transformation is needed

Output includes Python code: KNNImputer for missing values, Winsorize for outliers.

3. econ_model_spec

Four strategies:

StrategyMethodBest For
Theory-drivenCore model based on economic theory, add controls stepwiseReplication studies
Data-drivenStepwise regression + AIC/BICMany candidates, weak theory
HybridTheory screening → data-driven → LASSO reviewMost empirical research
ML-basedLASSO / Ridge / Elastic Net / Random ForestHigh-dimensional data, prediction

4. econ_run_analysis

Supported models: OLS, IV/2SLS, Logit, Probit, Panel FE, DID, RDD

Auto-generated code:

  • Python: statsmodels + robust SE
  • R: fixest + lmtest + sandwich
  • Stata: reg + robust

5. econ_robustness

Seven dimensions:

DimensionKey Methods
Omitted variablesOster (2019) stability test, Altonji-Elder-Taber ratio
Measurement errorAlternative variable estimation, IV correction
Sample selectionHeckman two-stage, PSM
Model specificationFunctional form change, quantile regression, Bootstrap
OutliersWinsorize 1%/5%, trim extremes, M-estimation
Parallel trendsEvent study plot, placebo treatment time, permutation test
Placebo testRandom treatment assignment, fictitious treatment time

6. econ_report

Report types:

  • Descriptive statistics table (Table 1)
  • Baseline regression table (Table 2, with significance stars, controls, FE, R² footnotes)
  • Robustness checks summary (Table 3)
  • Full research summary (all three tables)

Formats: Markdown, LaTeX, HTML

Languages: Chinese, English


Suggested Workflow

econ_method_guide    → Determine research method and model
       ↓
econ_data_prep       → Clean and preprocess data
       ↓
econ_model_spec      → Specify model, select variables
       ↓
econ_run_analysis    → Run regression analysis
       ↓
econ_robustness      → Verify result robustness
       ↓
econ_report          → Generate result report

License

MIT