Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

start-orchestrator启动协调器

Agent Skill

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

总安装

14,158

周安装

555

GitHub Stars

公开资料未说明

下载量

3,833
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add pytaichukbohdan/danacockfightbot --skill "start-orchestrator"

简介

start-orchestrator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词或任务场景快速定位候选结果时使用。

  • 适用于需要协调多步骤任务流程的开发场景。
  • 通过 npx skills add pytaichukbohdan/danacockfightbot --skill "start-orchestrator" 命令安装。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Start Orchestrator

Launches the Orchestrator 3 Stream application with both backend (FastAPI) and frontend (Vue/Vite) servers.

Prerequisites

  • The orchestrator application is located at apps/orchestrator_3_stream/
  • Backend requires Python with uv (Astral UV)
  • Frontend requires Node.js with npm
  • PostgreSQL database should be running

Configuration

Default ports (configurable via .env):

  • Backend: Port 8002 (default fallback: 9403)
  • Frontend: Port 5175

Backend Flags

The backend script (start_be.sh) accepts:

FlagDescriptionPriority
--cwd <path>Working directory for the orchestratorCLI >.env (ORCHESTRATOR_WORKING_DIR) > current dir
--session <id>Session ID to resumeCLI >.env (ORCHESTRATOR_SESSION_ID) > new session

Workflow

1. Start Backend (with optional flags)

Run in background by default:

# Basic start (new session, current directory)
cd /path/to/agent-experts/apps/orchestrator_3_stream && ./start_be.sh &

# With session ID (resume existing session)
cd /path/to/agent-experts/apps/orchestrator_3_stream && ./start_be.sh --session <session-id> &

# With custom working directory
cd /path/to/agent-experts/apps/orchestrator_3_stream && ./start_be.sh --cwd /path/to/project &

# With both flags
cd /path/to/agent-experts/apps/orchestrator_3_stream && ./start_be.sh --cwd /path/to/project --session <session-id> &

2. Start Frontend

Run in background:

cd /path/to/agent-experts/apps/orchestrator_3_stream && ./start_fe.sh &

3. Open UI in Chrome

After both services are running, open the frontend URL:

open -a "Google Chrome" "http://127.0.0.1:5175"

Complete Example Commands

Start both in background (new session):

# Start backend
cd /path/to/agent-experts/apps/orchestrator_3_stream && ./start_be.sh &

# Wait for backend to initialize
sleep 3

# Start frontend
cd /path/to/agent-experts/apps/orchestrator_3_stream && ./start_fe.sh &

# Wait for frontend to initialize
sleep 2

# Open in Chrome
open -a "Google Chrome" "http://127.0.0.1:5175"

Resume a session:

cd /path/to/agent-experts/apps/orchestrator_3_stream && ./start_be.sh --session abc123-def456 &
sleep 3
cd /path/to/agent-experts/apps/orchestrator_3_stream && ./start_fe.sh &
sleep 2
open -a "Google Chrome" "http://127.0.0.1:5175"

Foreground Mode

If user requests foreground mode, do NOT use & suffix and run each command sequentially, starting frontend first in background then backend in foreground:

# Frontend in background (so we can run backend in foreground)
cd /path/to/agent-experts/apps/orchestrator_3_stream && ./start_fe.sh &

# Backend in foreground (to see logs)
cd /path/to/agent-experts/apps/orchestrator_3_stream && ./start_be.sh --cwd /path/to/project

Stopping Services

To stop the services:

# Find and kill backend
lsof -ti:8002 | xargs kill -9

# Find and kill frontend
lsof -ti:5175 | xargs kill -9

Troubleshooting

  • Port in use: The scripts automatically kill processes using their ports before starting
  • Database not running: Ensure PostgreSQL is running before starting backend
  • Missing dependencies: Run uv sync in backend directory, npm install in frontend directory

Examples

Example 1: Basic Start

User request:

Start the orchestrator

You would:

  1. Start backend in background: cd /path/to/agent-experts/apps/orchestrator_3_stream &&./start_be.sh &
  2. Wait 3 seconds for backend to initialize
  3. Start frontend in background: cd /path/to/agent-experts/apps/orchestrator_3_stream &&./start_fe.sh &
  4. Wait 2 seconds for frontend to initialize
  5. Open Chrome: open -a "Google Chrome" "http://127.0.0.1:5175"

Example 2: Resume Session with Custom CWD

User request:

Start orchestrator with session abc123 and working directory /Users/me/myproject

You would:

  1. Start backend with flags: cd /path/to/agent-experts/apps/orchestrator_3_stream &&./start_be.sh --cwd /Users/me/myproject --session abc123 &
  2. Wait, then start frontend and open Chrome as above

Example 3: Foreground Mode

User request:

Start orchestrator in foreground so I can see logs

You would:

  1. Start frontend in background first: cd /path/to/agent-experts/apps/orchestrator_3_stream &&./start_fe.sh &
  2. Wait 2 seconds
  3. Start backend in foreground (no &): cd /path/to/agent-experts/apps/orchestrator_3_stream &&./start_be.sh
  4. Note: Chrome opening should happen after frontend is ready but before backend foreground command

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

27.3%
按下载量换算1,046

windsurf

22.33%
按下载量换算856

trae

16.92%
按下载量换算649

OpenCode

12.89%
按下载量换算494

Codex

7.63%
按下载量换算292

Antigravity

3.28%
按下载量换算126

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills