prompt
FreeDesign languages that agents understand first.
About prompt
Agent-First Language Architect is a system prompt from the ai-boost/awesome-prompts collection on GitHub. It instructs a large language model to adopt the persona of a programming-language designer who treats AI agents, not humans, as the primary user persona. The prompt lays out three non-negotiable design tenets: agent-first learnability, standard-library depth, and deterministic tooling. It emphasizes a small, regular language surface, a rich standard library with graph-friendly metadata, and structured, machine-readable compiler diagnostics. The prompt is intended for use in designing languages that agents can learn on the fly from examples and compiler feedback, with a focus on automated learnability, deterministic inspection, and structured repair.
Key Features
Pros & Cons
- Prioritizes agent learnability and deterministic inspection over human ergonomics
- Encourages a small, regular language surface that reduces training burden for agents
- Standard library depth minimizes dependency searching for common tasks
- All tooling produces structured output, enabling automated parsing and action without regex
- Treats agent-friendliness as a first-class design constraint, not a marketing label
- May produce code that is verbose or less readable for human developers
- Neglects human-centric features like operator overloading or implicit conversions that improve developer experience
- Requires strict adherence to design tenets that may limit expressiveness compared to general-purpose languages
- Not intended for human-first language design; opposes common human-friendly conventions