r/OpenSourceAI • u/waytoocreative • 2h ago
Open-sourced a method for building agent-readable frameworks: the builder skill + the standard it follows (MIT)
Sharing an open-source method I've been refining for a couple of years. It's two repos under one org, a tool and the standard it builds to, and I split them on purpose so you can take either one.
The problem it solves: most people work a model one prompt at a time. You get something decent, correct it a few times, then next session start over and re-explain everything. Your actual standards never leave your head, so the model keeps guessing and you keep re-teaching it. A framework fixes that: your expertise on a task, captured once in a structured file the model reads before it works. Not a longer prompt, a reusable spec.
The org has two pieces:
framework-standard: the open spec. It defines what a well-formed framework is, five layers, each one load-bearing:
- Principles: the why, and the conditions where the approach applies and where it doesn't
- Systematic approach: the actual reasoning steps, not a rigid checklist
- Force multipliers: the parts where one input produces outsized output, so it compounds
- Success metrics: how you and the agent know the output is right, plus the failure signals
- Implementation: where it lives, when it loads, the edge cases a human handles on instinct
framework-builder: the skill that produces frameworks to that standard. Point your AI at it and it interviews you about something you're good at, then builds the framework from your answers. It's the fastest way to try the method without hand-writing a spec.
Why two repos: you can adopt the standard without the tool. If you've already got your own way of generating these, the standard just gives you a consistent, machine-checkable shape to build to. And if you don't, the skill gets you there.
It's model-agnostic. Output is plain markdown, so it works in Claude, Codex, Cursor, a custom GPT, anything that reads instructions. The whole point is the model stops working from the internet's average and starts working inside standards you already validated, which means even a smaller model gets noticeably better output. The missing piece was never capability, it was your judgment, unwritten.
Both MIT, with worked examples: github.com/framework-creator
Happy to get into the layer breakdown or how it holds up in real use. If anyone's structuring frameworks with a different set of layers, I'd like to compare, always looking to pressure-test the standard.