diff --git a/plugins/voyage/lib/profiles/balanced.yaml b/plugins/voyage/lib/profiles/balanced.yaml new file mode 100644 index 0000000..9347c26 --- /dev/null +++ b/plugins/voyage/lib/profiles/balanced.yaml @@ -0,0 +1,21 @@ +--- +profile_version: "1.0" +name: balanced +phase_models: + - phase: brief + model: sonnet + - phase: research + model: sonnet + - phase: plan + model: opus + - phase: execute + model: sonnet + - phase: review + model: opus + - phase: continue + model: sonnet +parallel_agents_min: 4 +parallel_agents_max: 6 +external_research_enabled: false +brief_reviewer_iter_cap: 2 +--- diff --git a/plugins/voyage/lib/profiles/economy.yaml b/plugins/voyage/lib/profiles/economy.yaml new file mode 100644 index 0000000..b5639cc --- /dev/null +++ b/plugins/voyage/lib/profiles/economy.yaml @@ -0,0 +1,21 @@ +--- +profile_version: "1.0" +name: economy +phase_models: + - phase: brief + model: sonnet + - phase: research + model: sonnet + - phase: plan + model: sonnet + - phase: execute + model: sonnet + - phase: review + model: sonnet + - phase: continue + model: sonnet +parallel_agents_min: 2 +parallel_agents_max: 3 +external_research_enabled: false +brief_reviewer_iter_cap: 1 +--- diff --git a/plugins/voyage/lib/profiles/premium.yaml b/plugins/voyage/lib/profiles/premium.yaml new file mode 100644 index 0000000..3c4d93e --- /dev/null +++ b/plugins/voyage/lib/profiles/premium.yaml @@ -0,0 +1,21 @@ +--- +profile_version: "1.0" +name: premium +phase_models: + - phase: brief + model: opus + - phase: research + model: opus + - phase: plan + model: opus + - phase: execute + model: opus + - phase: review + model: opus + - phase: continue + model: opus +parallel_agents_min: 6 +parallel_agents_max: 8 +external_research_enabled: true +brief_reviewer_iter_cap: 3 +---