Summary
MixSeekのオーケストレーター設定ファイル(orchestrator.toml)を生成します。「オーケストレーターを設定」「チーム競合設定」「複数チームで競わせる」「マルチチーム実行設定」といった依頼で使用してください。複数チームを並列実行して最良の結果を選択する設定を定義します。
drillan/mixseek-plus · Archived
MixSeekのオーケストレーター設定ファイル(orchestrator.toml)を生成します。「オーケストレーターを設定」「チーム競合設定」「複数チームで競わせる」「マルチチーム実行設定」といった依頼で使用してください。複数チームを並列実行して最良の結果を選択する設定を定義します。
npx skills add drillan/mixseek-plus --skill mixseek-orchestrator-config
MixSeekのオーケストレーター設定ファイル(orchestrator.toml)を生成します。「オーケストレーターを設定」「チーム競合設定」「複数チームで競わせる」「マルチチーム実行設定」といった依頼で使用してください。複数チームを並列実行して最良の結果を選択する設定を定義します。
This repository is archived — consider an actively maintained alternative.
MixSeekワークスペースを初期化し、設定ファイル用ディレクトリ構造を作成します。「ワークスペースを…
10 installsMixSeekのチーム設定ファイル(team.toml)を生成します。「チームを作成」「エージェント設定を生成…
10 installsMixSeek Agent Skills collection for AI coding assistants. Provides workspace management, team c…
10 installsMixSeekのプロンプトビルダー設定ファイル(prompt_builder.toml)を生成します。「プロンプトを設定…
10 installsRelated neighbors and high-traction skills in the same topics — useful to compare before installing.
Helps users discover and install agent skills when they ask questions like "how do I do X", "fi…
3.3M installsBrowser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "chec…
617.3K installsBuild, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsPrepare azd-based Azure projects for deployment: generates azure.yaml, infrastructure (Bicep/Te…
568.3K installsOther skills from drillan/mixseek-plus.
npx skills add drillan/mixseek-plus
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
main
Parsed from SKILL.md frontmatter.
Files included with this skill beyond the listing page.
SKILL.md
6,842 B
SUMMARY.md
416 B
MixSeek-Coreのオーケストレーター設定ファイル(orchestrator.toml)を生成します。複数のチームを並列実行し、評価者による判定を経て最良の回答を選択するTUMIX(TUrnament-style MIXture of experts)フレームワークの設定を定義します。
mixseek-workspace-init参照)mixseek-team-config参照)mixseek-evaluator-config参照、オプション)ユーザーに以下を確認してください:
ワークスペース内のチーム設定を確認:
ls $MIXSEEK_WORKSPACE/configs/agents/team-*.toml
以下のテンプレートを基に設定ファイルを生成:
[orchestrator]
timeout_per_team_seconds = 600
max_rounds = 5
min_rounds = 2
[[orchestrator.teams]]
config = "configs/agents/team-a.toml"
[[orchestrator.teams]]
config = "configs/agents/team-b.toml"
生成した設定を以下のパスに保存:
$MIXSEEK_WORKSPACE/configs/orchestrator.toml
# または
$MIXSEEK_WORKSPACE/configs/orchestrator-<name>.toml
生成後は必ず検証を実行してください。
uv run python skills/mixseek-config-validate/scripts/validate-config.py \
$MIXSEEK_WORKSPACE/configs/orchestrator.toml --type orchestrator
検証が成功したら、ユーザーに結果を報告します。失敗した場合は、エラー内容を確認して設定を修正してください。
MixSeek-Coreのコア機能で、以下のフローで動作します:
| 項目 | 説明 | デフォルト | 範囲 |
|---|---|---|---|
max_rounds |
最大ラウンド数 | 5 | 1-10 |
min_rounds |
最小ラウンド数 | 2 | 1以上 |
注意: minrounds <= maxrounds である必要があります。
| 項目 | 説明 | デフォルト | 範囲 |
|---|---|---|---|
timeoutperteam_seconds |
チームごとのタイムアウト | 300 | 10-3600 |
submissiontimeoutseconds |
Submission生成のタイムアウト | 300 | - |
judgmenttimeoutseconds |
Judgment処理のタイムアウト | 60 | - |
User: 2つのチームで競わせる設定を作って
Agent: オーケストレーター設定を提案します。
既存のチーム設定を確認しました:
- configs/agents/team-web-research.toml
- configs/agents/team-analysis.toml
設定:
- 最大ラウンド数: 5
- 最小ラウンド数: 2
- チームタイムアウト: 600秒
この構成でよろしいですか?
User: はい
Agent: 設定ファイルを生成しました:
orchestrator.toml
実行コマンド:
mixseek exec --config orchestrator.toml
# MixSeek Orchestrator Configuration
# Generated by mixseek-orchestrator-config skill
[orchestrator]
# ラウンド設定
max_rounds = 5
min_rounds = 2
# タイムアウト設定
timeout_per_team_seconds = 600
submission_timeout_seconds = 300
judgment_timeout_seconds = 60
# 競合チーム設定
[[orchestrator.teams]]
config = "configs/agents/team-web-research.toml"
[[orchestrator.teams]]
config = "configs/agents/team-analysis.toml"
[orchestrator]
max_rounds = 3
min_rounds = 2
timeout_per_team_seconds = 900
[[orchestrator.teams]]
config = "configs/agents/team-creative.toml"
[[orchestrator.teams]]
config = "configs/agents/team-analytical.toml"
[[orchestrator.teams]]
config = "configs/agents/team-practical.toml"
# 基本実行
mixseek exec --config orchestrator.toml
# 詳細ログ付き
mixseek exec --config orchestrator.toml --log-level debug
# Logfire観測付き
mixseek exec --config orchestrator.toml --logfire
# UI起動
mixseek ui
# 「実行」ページでorchestrator.tomlを選択して実行
Error: Team config not found: configs/agents/team-xxx.toml
解決方法:
$MIXSEEK_WORKSPACEからの相対パスで指定mixseek-team-configスキルでチーム設定を作成Error: min_rounds must be <= max_rounds
解決方法:
minroundsをmaxrounds以下に設定Error: Team execution timed out
解決方法:
timeoutperteam_secondsを増加timeout_seconds設定を確認オーケストレーターは以下の設定ファイルと連携します:
これらはmixseek-evaluator-configスキルで生成できます。
references/TOML-SCHEMA.mdskills/mixseek-team-config/skills/mixseek-evaluator-config/