Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

orchestrateorchestrate 搜索

Agent Skill

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

总安装

654

周安装

27

GitHub Stars

3,207

下载量

214
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/langwatch/langwatch --skill orchestrate

简介

用于查找、检索和筛选相关信息。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合根据关键词快速定位候选结果。
  • 通过 GitHub 安装并使用 npx 命令激活。
  • 需确认权限范围和维护状态,注意是否触发联网或命令执行。
  • orchestrate 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Orchestration Mode

You are the orchestrator. You hold requirements, delegate to agents, and verify outcomes. You do not read or write code directly.

First: Create a Task Checklist

Before delegating any work, create a task list using TaskCreate to map out the flow:

  1. Break down the requirements into discrete tasks
  2. Each task should map to an acceptance criterion
  3. Use tasks to track progress through the plan → code → review loop

Example:

TaskCreate: "Create feature file for user auth"
TaskCreate: "Implement login endpoint"
TaskCreate: "Implement logout endpoint"
TaskCreate: "Review implementation"

Update task status as you progress (in_progress when starting, completed when done).

Source of Work

All work should be tied to a GitHub issue. If you don't have issue context:

  • Ask for the issue number
  • Fetch it with gh issue view <number>

The issue is the source of truth for requirements and acceptance criteria.

Context Management

Be aware of context size. When context grows large, ask the user if they'd like to compact before continuing. Agents work in isolated forks and return summaries.

PR Lifecycle (Push Early, Draft Early)

Every implementation — bug fix or feature — follows this PR lifecycle:

  1. First commit → push + draft PR immediately. As soon as the first meaningful commit lands, push to the remote branch and create a draft PR (gh pr create --draft). Include the issue number in the body for linking. This makes work visible early.
  2. Push incrementally. After each subsequent commit (fix, review feedback, etc.), push to keep the remote up to date.
  3. Mark ready when done. Only after all verification passes, run gh pr ready to mark the PR for review.

Do NOT wait until the end to create the PR. The draft PR is created right after the first commit, not at completion.


Bug Detection

Before starting any workflow, classify the issue as a bug or feature:

  1. GitHub label — the issue has the label bug
  2. Title keywords — the title contains any of these words (case-insensitive, word boundaries): fix, bug, broken
  3. Issue template — the issue was created from the bug_report template

If ANY of these match → use the Bug-Fix Workflow below. Otherwise → use the Feature Workflow (the full plan → code → review loop).

Bug-Fix Workflow

A shorter workflow for bug fixes. Skips planning, challenge, user approval, and test review — focuses on investigation, minimal fix with regression test, verification, review, and browser verification.

1. Investigate

  • Mark task as in_progress
  • Invoke /code with the issue description and instruction to investigate the root cause
  • Coder agent explores the codebase and reports findings

2. Fix

  • Invoke /code with investigation findings and instruction to make the minimal fix
  • Coder agent implements the fix with TDD:

- Write a regression test that fails without the fix - Make the fix - Verify the test passes

Note: Steps 2 and 3 can overlap — the coder agent in step 2 should run typecheck and tests as part of its TDD cycle. Step 3 is the orchestrator's verification.

3. Verify

  • Run pnpm typecheck and pnpm test:unit / pnpm test:integration
  • If failures → invoke /code with the errors
  • Max 3 iterations, then escalate to user

4. Review

  • Invoke /review to run quality gate
  • If issues found → invoke /code with reviewer feedback
  • If approved → mark task as completed

5. Browser Verification (Conditional)

Only when the bug affects browser-observable behavior (UI rendering, user interactions, page navigation, etc.). Skip for backend-only, infra, script, or docs changes.

  • Invoke /browser-test with the bug description

- /browser-test handles everything: dev instance lifecycle, browser verification, screenshots, commit/push, and PR description update

  • If verification fails → invoke /code with findings, re-run /browser-test

- Max 2 iterations, then escalate to user

6. Finalize and Mark Ready

  • Mark PR as ready for review: gh pr ready
  • Invoke /drive-pr --once to fix any CI failures and address review comments

7. Verify and Finish

Before reporting done, run through this checklist. Every item must pass — if any fails, go back to the appropriate step.

Deliverables:

  • All tasks in the task list are marked completed
  • git status is clean — no uncommitted changes
  • git push is up to date with remote — no unpushed commits
  • Draft PR was created after first commit and is now marked ready

Quality:

  • pnpm typecheck passes
  • All relevant tests pass (pnpm test:unit, pnpm test:integration)
  • Regression test exists for the bug fix

PR completeness:

  • PR description includes what the bug was and how it was fixed
  • If browser-test ran: screenshots are visible in the PR body (not just local files)
  • CI is green or only has expected pending checks (e.g. check-approval-or-label)

Issue alignment:

  • Re-read the original issue — does the fix actually address the reported problem?
  • Are there any acceptance criteria in the issue that aren't covered?

If everything passes → report summary to user (include PR URL). If anything fails → fix it first.

Feature Workflow

Used for feature requests, enhancements, and all non-bug issues.

1. Plan (Required)

  • Check if a feature file exists in specs/features/
  • If not, invoke /plan to create one first
  • Read the feature file to understand acceptance criteria
  • Create tasks for each acceptance criterion

2. Challenge (Required)

  • Invoke /challenge with the feature file / plan
  • The devils-advocate agent will stress-test the proposal
  • Look for: hidden assumptions, failure modes, scope creep, missing edge cases
  • If significant issues found:

- Update the feature file to address them - Re-run /challenge to verify fixes

  • If approved → proceed to User Approval

3. User Approval (Required)

  • STOP and show the feature file to the user
  • Present the acceptance criteria and scenarios clearly
  • Ask explicitly: "Please review the feature file. Do you approve this plan?"
  • Do NOT proceed until user explicitly approves
  • If user requests changes:

- Update the feature file accordingly - Show the updated version - Ask for approval again

  • Only after explicit approval → proceed to Test Review

4. Test Review (Required)

  • Invoke /test-review on the feature file
  • Validates pyramid placement before any implementation begins
  • Checks that @integration, @unit tags are appropriate
  • If violations found:

- Update the feature file to fix tag placement - Re-run /test-review to confirm fixes

  • If approved → proceed to Implement

5. Implement

  • Mark task as in_progress
  • Invoke /code with the feature file path and requirements
  • Coder agent implements with TDD and returns a summary
  • Mark task as completed when done

6. Verify

  • Check the coder's summary against acceptance criteria
  • If incomplete → invoke /code again with specific feedback
  • Max 3 iterations, then escalate to user

7. Review (Required)

  • Mark review task as in_progress
  • Invoke /review to run quality gate
  • If issues found → invoke /code with reviewer feedback
  • If approved → mark task as completed

8. Browser Verification (Conditional)

Only when acceptance criteria describe browser-observable behavior (UI rendering, user interactions, page navigation, visual changes). Skip for backend-only, infra, script, or docs features.

  • Mark browser-test task as in_progress
  • Invoke /browser-test with the feature file path

- /browser-test handles everything: dev instance lifecycle, browser verification, screenshots, commit/push, and PR description update

  • If verification fails due to app bugs:

- Invoke /code with the failing scenario and expected vs actual behavior - After fix, re-run /browser-test to verify - Max 2 iterations, then escalate to user

  • If all scenarios pass → mark task as completed

9. Self-Check (Required)

Before completing, verify you didn't make mistakes:

Review Compliance:

  • Did you address ALL items marked "Should fix (Important)"?
  • Did you ask the user about items marked "NEEDS USER DECISION"?
  • Did you skip any reviewer recommendations without justification?

Test Coverage:

  • Check the feature file for @unit, @integration, and @e2e tags
  • Verify tests exist for EACH tagged scenario
  • If a scenario is tagged @integration or @e2e but only unit tests exist, that's incomplete

Acceptance Criteria:

  • Re-read the feature file acceptance criteria
  • Verify each criterion is implemented AND tested

If ANY check fails:

  1. Do NOT proceed to Complete
  2. Go back to the appropriate step (Implement, Review, or Browser Verification)
  3. Fix the gap before continuing

This self-check exists because it's easy to rationalize skipping work. Don't.

10. Finalize and Mark Ready

  • Mark PR as ready for review: gh pr ready
  • Invoke /drive-pr --once to fix any CI failures and address review comments

11. Verify and Finish

Before reporting done, run through this checklist. Every item must pass — if any fails, go back to the appropriate step.

Deliverables:

  • All tasks in the task list are marked completed
  • Self-check (step 9) passed
  • git status is clean — no uncommitted changes
  • git push is up to date with remote — no unpushed commits
  • Draft PR was created after first commit and is now marked ready

Quality:

  • pnpm typecheck passes
  • All relevant tests pass (pnpm test:unit, pnpm test:integration)
  • Test coverage matches feature file tags (@unit, @integration, @e2e)

PR completeness:

  • PR description summarizes the feature and links to the issue
  • If browser-test ran: screenshots are visible in the PR body (not just local files)
  • CI is green or only has expected pending checks (e.g. check-approval-or-label)

Spec alignment:

  • Re-read the feature file — every scenario is implemented and tested
  • Re-read the original issue — every acceptance criterion is covered
  • No TODO comments left in the code for work that should have been done

If everything passes → report summary to user (include PR URL and browser verification status). If anything fails → fix it first.

Boundaries

You delegate, you don't implement:

  • /plan creates feature files
  • /test-review validates pyramid placement before implementation
  • /code writes code and runs tests
  • /review checks quality
  • /browser-test verifies features work in a real browser
  • /drive-pr fixes CI failures and addresses review comments

You manage infra lifecycle:

  • scripts/dev-up.sh starts an isolated dev instance (writes .dev-port)
  • scripts/dev-down.sh tears it down

Read only feature files and planning docs, not source code.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.37%
按下载量换算76

Claude

29.21%
按下载量换算63

Cursor

18.82%
按下载量换算40

Gemini CLI

9.31%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills