بنقرة واحدة
economy-mode
Shifts Layer 3 model selection to cost-optimized alternatives when economy mode is active.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Shifts Layer 3 model selection to cost-optimized alternatives when economy mode is active.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Generate a PowerPoint (.pptx) presentation using python-pptx and the shared pptx_utils.py module. Use this skill whenever the user asks to create a PowerPoint file, generate a .pptx, export slides to PPTX, or wants a downloadable presentation file. Also use when the user says "generate pptx", "make a PowerPoint", "export to pptx", or "I need a .pptx file".
Build demo guides with companion scripts for live technical demonstrations. Use this skill when the user asks to create demos, walkthroughs, hands-on labs, or demo packages for customer sessions. Also use when the user says "create a demo", "build a walkthrough", "demo guide", or "companion scripts".
Build What-The-Hack-style hackathon events with progressively harder challenges, coach materials, and dev containers. Use this skill when the user asks to create hackathons, challenge-based labs, or hands-on workshops for customers and partners.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
Guidance for instrumenting webapps with Azure Application Insights. Provides telemetry patterns, SDK setup, and configuration references. WHEN: how to instrument app, App Insights SDK, telemetry patterns, what is App Insights, Application Insights guidance, instrumentation examples, APM best practices.
Use for Azure AI: Search, Speech, OpenAI, Document Intelligence. Helps with search, vector/hybrid search, speech-to-text, text-to-speech, transcription, OCR. WHEN: AI Search, query search, vector search, hybrid search, semantic search, speech-to-text, text-to-speech, transcribe, OCR, convert text to speech.
| name | economy-mode |
| description | Shifts Layer 3 model selection to cost-optimized alternatives when economy mode is active. |
| domain | model-selection |
| confidence | low |
| source | manual |
✅ THIS SKILL PRODUCES:
economyMode: true written to .squad/config.json when activated persistently💰 indicator when economy mode is active❌ THIS SKILL DOES NOT PRODUCE:
Economy mode shifts Layer 3 (Task-Aware Auto-Selection) to lower-cost alternatives. It does NOT override persistent config (defaultModel, agentModelOverrides) or per-agent charter preferences — those represent explicit user intent and always take priority.
Use this skill when the user wants to reduce costs across an entire session or permanently, without manually specifying models for each agent.
| Method | How |
|---|---|
| Session phrase | "use economy mode", "save costs", "go cheap", "reduce costs" |
| Persistent config | "economyMode": true in .squad/config.json |
| CLI flag | squad --economy |
Deactivation: "turn off economy mode", "disable economy mode", or remove economyMode from config.json.
When economy mode is active, Layer 3 auto-selection uses this table instead of the normal defaults:
| Task Output | Normal Mode | Economy Mode |
|---|---|---|
| Writing code (implementation, refactoring, bug fixes) | claude-sonnet-4.6 | gpt-4.1 or gpt-5-mini |
| Writing prompts or agent designs | claude-sonnet-4.6 | gpt-4.1 or gpt-5-mini |
| Docs, planning, triage, changelogs, mechanical ops | claude-haiku-4.5 | gpt-4.1 or gpt-5-mini |
| Architecture, code review, security audits | claude-opus-4.6 | claude-sonnet-4.6 |
| Scribe / logger / mechanical file ops | claude-haiku-4.5 | gpt-4.1 |
Prefer gpt-4.1 over gpt-5-mini when the task involves structured output or agentic tool use. Prefer gpt-5-mini for pure text generation tasks where latency matters.
.squad/config.jsoneconomyMode: true — if present, activate economy mode for the sessionSession-only (no config change): "use economy mode", "save costs", "go cheap"
✅ Economy mode active — using cost-optimized models this session. (Layer 0 and Layer 2 preferences still apply)Persistent: "always use economy mode", "save economy mode"
economyMode: true to .squad/config.json (merge, don't overwrite other fields)✅ Economy mode saved — cost-optimized models will be used until disabled.💰 in spawn acknowledgment: 🔧 {Name} ({model} · 💰 economy) — {task}Trigger phrases: "turn off economy mode", "disable economy mode", "use normal models"
economyMode from .squad/config.json (if it was persisted)✅ Economy mode disabled — returning to standard model selection.After updating economy mode state and including the 💰 indicator in spawn acknowledgments, this skill is done. Do NOT:
.squad/config.json economy-related fields:
{
"version": 1,
"economyMode": true
}
economyMode — when true, Layer 3 uses the economy table. Optional; absent = economy mode off.defaultModel and agentModelOverrides — Layer 0 always wins.defaultModel: "claude-opus-4.6", they want quality. Economy mode only affects Layer 3 auto-selection.config.json persist it.