economy-mode

Shifts Layer 3 model auto-selection to cost-optimized alternatives when economy mode is active.

1|Updated Jul 7, 2026
One-click install
npx skills add https://github.com/seiggy/maf-copilot-studio-demo --skill economy-mode-seiggy
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: economy-mode
Source: https://github.com/seiggy/maf-copilot-studio-demo/tree/main/.squad/templates/skills/economy-mode
Command: npx skills add https://github.com/seiggy/maf-copilot-studio-demo --skill economy-mode-seiggy

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Teams running multi-agent workflows often overspend on premium models for routine tasks. This Skill lets users cut costs across an entire session or permanently by switching automatic model selection to cheaper alternatives, without manually configuring each agent. ## Core Features & Use Cases - Cost-Optimized Model Table: Replaces the normal Layer 3 auto-selection table with cheaper models (e.g., gpt-4.1 or gpt-5-mini instead of claude-sonnet-4.5) for coding, docs, and mechanical tasks. - Flexible Activation: Trigger via session phrases like "use economy mode", persist with "economyMode": true in .squad/config.json, or pass the squad --economy CLI flag. - Respects User Intent: Never overrides Layer 0 config (defaultModel, agentModelOverrides), session directives, or per-agent charter preferences. - Use Case: A team lead says "save costs" at the start of a sprint planning session; all subsequent agent spawns use economy models and show a 💰 indicator in acknowledgments. ## Quick Start Say "use economy mode" to activate cost-optimized model selection for the current session.

Frequently Asked Questions about economy-mode

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I enable economy mode for model selection?

Say a session phrase like "use economy mode" or "save costs" for session-only activation, or say "always use economy mode" to persist `"economyMode": true` in `.squad/config.json`. You can also pass the `squad --economy` CLI flag.

Which models does economy mode use instead of Claude?

Economy mode maps coding, prompt-writing, docs, and mechanical tasks to gpt-4.1 or gpt-5-mini instead of claude-sonnet-4.5 or claude-haiku-4.5. Architecture and security reviews shift from claude-opus-4.5 to claude-sonnet-4.5, never to fast/cheap models.

Does economy mode override my defaultModel or agent model overrides?

No. Economy mode only affects Layer 3 auto-selection. Layer 0 settings (`defaultModel`, `agentModelOverrides`), explicit session directives, and per-agent charter preferences always take priority over the economy table.

How do I turn off economy mode?

Say "turn off economy mode", "disable economy mode", or "use normal models". If it was persisted, the `economyMode` field is removed from `.squad/config.json` and the session state is cleared.

When should I prefer gpt-4.1 over gpt-5-mini in economy mode?

Prefer gpt-4.1 when the task involves structured output or agentic tool use. Prefer gpt-5-mini for pure text generation tasks where latency matters more than structured reliability.