feat: add OpenAI-optimized foundation bundle and context#62
feat: add OpenAI-optimized foundation bundle and context#62DavidKoleczek wants to merge 1 commit intomicrosoft:mainfrom
Conversation
Add experimental foundation bundle configuration optimized for OpenAI models: - context/shared/common-openai-base.md: OpenAI-specific system instructions with editing constraints, task management, frontend guidelines, and pre-commit validation rules - experiments/exp-foundation-openai.md: Experimental bundle that removes agents behavior and references the new OpenAI context file 🤖 Generated with [Amplifier](https://github.com/microsoft/amplifier) Co-Authored-By: Amplifier <240397093+microsoft-amplifier@users.noreply.github.com>
|
Thanks for taking this on, @DavidKoleczek — experimenting with OpenAI model optimization is valuable work. A few pieces of feedback: 1. Fix The context file references 2. DRY to actually reduce context size If one hypothesis driving this is that OpenAI models struggle with large instruction context (~20-40k tokens), duplicating content from A tighter approach: 3. Move context file out of The 4. Document the hypotheses in the bundle The reasoning behind the design choices (delegation overuse with GPT-5.2, context size sensitivity, model calibration for sub-agents) would be great to capture as comments in the experimental bundle itself. That makes the experiment self-documenting and reviewable — when we evaluate results, we'll know exactly what was being tested and why. 5. Agents behavior removal and includes fork are fine Disabling delegation to test whether OpenAI models perform better without it is a valid experiment. The forked includes list is acceptable for an experimental bundle — just worth noting it was forked from |
Summary
context/shared/common-openai-base.md: OpenAI-specific system instructions with editing constraints, task management guidelines, frontend coding rules, pre-commit validation, and presentation formattingexperiments/exp-foundation-openai.md: Experimental foundation bundle configuration optimized for OpenAI models (removes agents behavior, references the new OpenAI context file)Details
This PR introduces an experimental bundle configuration tailored for OpenAI models. The key changes include:
OpenAI-optimized context file (
common-openai-base.md):Experimental bundle (
exp-foundation-openai.md):Test plan
amplifier chat --bundle experiments/exp-foundation-openai.md🤖 Generated with Amplifier