Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

orchestrating-mixed-methods编排混合方法

Agent Skill

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

总安装

297

周安装

12

GitHub Stars

公开资料未说明

下载量

93
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:orchestrating-mixed-methods(编排混合方法)
来源仓库:https://github.com/timlai666/skills
仓库路径:skills/orchestrating-mixed-methods
安装命令:
npx skills add https://github.com/timlai666/skills --skill orchestrating-mixed-methods
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/timlai666/skills --skill orchestrating-mixed-methods

简介

orchestrating-mixed-methods 用于查找、检索和筛选相关信息。

  • 适合在需要根据关键词或任务场景快速定位候选结果时使用。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Orchestrating Mixed Methods

Overview

This skill is a routing and orchestration skill for research and analysis work. It prevents false qualitative vs quantitative either-or framing and chooses the smallest valid route:

  • qualitative-only
  • quantitative-only
  • mixed-qual-first
  • mixed-quant-first
  • mixed-parallel

這個 skill 是研究方法的協調器,不是固定報告格式。 它的工作是先判斷「該用哪種方法、先後順序怎麼排、兩軌怎麼整合」, 而不是每次都硬做成對稱的雙軌輸出。

When to Use / 何時使用

Use this skill as the default entrypoint when the task involves:

  • research, analysis, evaluation, diagnosis, discovery, insight, or study design
  • user questions such as what is happening, how much, why, how, what changed, or what should we test
  • open-ended evidence like interviews, notes, observations, or case material
  • structured evidence like survey tables, KPIs, experiment results, cohort metrics, or scored datasets
  • mixed evidence such as survey + interviews, metrics + support tickets, experiment + user quotes
  • explicit mentions of qualitative, quantitative, mixed methods, triangulation, interviews, survey, or statistical significance

Do not use this skill when:

  • the task is not actually research or analysis work
  • the user only wants direct arithmetic, file conversion, translation, or plain rewriting
  • the user already gave a narrow, fixed method and does not need any method choice or sequencing

If this skill triggers on a clearly single-method task, route it to the proper single method. Do not force mixed methods just because this skill loaded.

Core Rule / 核心規則

Respect explicit user constraints first.

  • If the user clearly asks for only one method, route to that method.
  • Exception: if the same request clearly asks for both measurement and explanation, do not treat the method choice as exclusive. Route to the smallest mixed path.

Do not make the user pick between qual and quant when the actual question is asking for both what/how much and why/how.

Required Routing Output / 必要路由輸出

Before doing downstream analysis, emit a MethodRoutingDecision. If the method context is too incomplete to choose safely, emit MissingMethodContextOutput first.

MethodRoutingDecision:
  route: qualitative-only | quantitative-only | mixed-qual-first | mixed-quant-first | mixed-parallel
  primary_need: exploration | explanation | measurement | estimation | validation | triangulation
  rationale: string
  qualitative_capabilities_needed: []
  quantitative_capabilities_needed: []
  first_pass_outputs: []
  second_pass_outputs: []
  integration_rule: string
  why_not_other_routes: []
MissingMethodContextOutput:
  missing_context: []
  why_it_matters: []
  recommended_default_route: qualitative-only | quantitative-only | mixed-qual-first | mixed-quant-first | mixed-parallel
  assumption_if_forced: string

Routing Dimensions / 判斷維度

Classify the task on five dimensions in this order:

  1. Is the core question about meaning, context, mechanism, or interpretation?
  2. Is it about magnitude, comparison, significance, prevalence, or forecasting?
  3. Are the constructs already defined, or still exploratory and unstable?
  4. Is the available evidence mostly text and observations, mostly structured numbers, or both?
  5. Is the goal decision support, design, validation, explanation, or triangulation?

Read the task through all five dimensions before picking a route. Do not shortcut from one keyword.

Use references/01-routing-rules.md for the full route-selection matrix and tie-breakers.

Route Definitions / 路由定義

  • qualitative-only

- Use for open exploration, framing, concept discovery, interview synthesis, case interpretation, mechanism building, or theory generation.

  • quantitative-only

- Use for estimation, benchmarking, hypothesis testing, forecasting, experiments, or structured metric comparison.

  • mixed-qual-first

- Use when constructs are fuzzy and the qualitative pass must define the dimensions, hypotheses, codebook, segments, or candidate variables before measurement.

  • mixed-quant-first

- Use when structured metrics already exist and the quantitative pass can surface anomalies, segments, drops, or outliers that need qualitative explanation.

  • mixed-parallel

- Use when both narrative and numeric evidence already exist and the result must be reconciled through triangulation.

Downstream Capability Mapping / 下游能力對接

This skill must stay capability-based, not skill-name-based. Do not hard-code downstream skill names.

Qualitative capability classes:

  • interview synthesis
  • coding
  • thematic analysis
  • case comparison
  • contextual explanation

Quantitative capability classes:

  • descriptive analysis
  • scoring
  • statistical testing
  • modeling
  • forecasting
  • experiment analysis

Map available skills at runtime to these capability classes and choose the smallest set that can complete the route.

Workflow / 執行流程

  1. Read the user's explicit method request, scope, and output constraints.
  2. Score the task across the five routing dimensions.
  3. Pick the smallest valid route.
  4. Emit MethodRoutingDecision.
  5. Map the route to capability classes, not named skills.
  6. If one evidence stream is missing, choose the feasible primary route and explicitly name the complementary follow-up method.
  7. For mixed routes, use references/02-sequencing-and-integration.md to define the pass order and integration rule.
  8. Do not claim triangulation unless both evidence streams actually exist.

Evidence Availability Rule / 證據可得性規則

If the task is broad but only one evidence type is available:

  • route to the feasible primary method
  • name the missing complementary method as a follow-up
  • do not fake a mixed-methods conclusion

Example:

  • If the user asks why did retention drop and how large is the drop but only gives metrics, route to mixed-quant-first with a quantitative first pass and a qualitative follow-up recommendation.
  • If the user asks to design a survey from interviews but only gives interviews, route to mixed-qual-first and keep the quantitative phase as a downstream validation step.

Anti-Patterns / 禁止做法

Never do the following:

  • frame qual and quant as mutually exclusive when the user is clearly asking for both
  • force mixed methods for obviously single-method tasks
  • treat mixed methods as always output two equal sections
  • claim triangulation when only one evidence stream exists
  • smooth over disagreement between evidence streams by averaging or vague wording

When mixed evidence conflicts, report the contradiction directly and test likely causes such as sample mismatch, timeframe mismatch, construct mismatch, measurement artifact, or segment heterogeneity.

References

Suggested Prompt

Use $orchestrating-mixed-methods to choose the right qualitative, quantitative, or mixed-methods route for this research task, emit a MethodRoutingDecision, and explain the sequencing without forcing a false either-or choice.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.19%
按下载量换算32

Claude

28.37%
按下载量换算26

Cursor

19.7%
按下载量换算18

Gemini CLI

9.11%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills