The value of official documentation
There is a useful asymmetry in how AI companies communicate. The capability announcements are marketing. The prompting documentation is engineering. One tells you what the model can do in ideal conditions. The other tells you what conditions the model actually needs.
OpenAI has published enough guidance at this point that the failure patterns are not hard to see. The model struggles with ambiguity. It has strong defaults that require active overriding. It performs better when examples are provided than when instructions are given in the abstract. It needs format to be specified, audience to be named, scope to be bounded.
None of this makes Astra a bad model. It is a very good model. But good models still have ceilings, and the prompting guide is essentially a published map of where those ceilings are.
For anyone building seriously on top of these systems, primary sources are more valuable than benchmarks. Benchmarks tell you how the model performs in controlled conditions. The prompting guide tells you what conditions the model requires to perform. Those are different questions and the second one matters more in production.
What to do with this
If you have prompts running in production, run them against the failure modes in the documentation. For each prompt, ask: does it specify format? Does it bound scope? Does it name the audience? Does it break the task into stages or ask the model to hold everything at once?
If you are building a new workflow, read the guidance before you write the first prompt. Not for tips. For constraints. Design the system around what the model actually needs, not around what you wish it could handle.
And if you are evaluating a model for a new project, treat the prompting guide as part of the technical spec. The capability page tells you what the vendor wants you to believe. The prompting guide tells you what the engineers know.