Replies: 1 comment
-
Enhancement: Enhanced Prompting Frameworks (#851)Sharpened problem & goal The request is to research proven prompting frameworks that reduce complexity and cost in coding agents, then selectively adopt the best patterns in the dev-lead agent's prompts. The idea would benefit from a more specific scope: which aspect of the dev-lead agent is the target? The agent's prompts cover several distinct intents ( Clarifying question: is the goal (a) token reduction (same quality, fewer tokens), (b) consistency (all prompts follow a common structure so they're easier to maintain), or (c) quality improvement (fewer agent errors / hallucinated plans)? Context The dev-lead prompt library is in The Ponytail framework provides a template system for composable, reusable prompt blocks — essentially partials/components for prompts. This maps naturally to the shared context across intents (repo standards, branch rules, auth setup) that currently repeats across the "Caveman" prompting (referenced in the excerpt) typically refers to radically simplified, constraint-heavy prompting: strip the narrative, keep only imperatives and constraints. This can cut tokens but risks losing the nuanced guidance that prevents common agent mistakes (e.g. the "do not run destructive git commands" safeguards throughout Other relevant frameworks not mentioned: COSTAR (Context, Objective, Style, Tone, Audience, Response), Chain-of-Thought with self-consistency, ReAct (Reason + Act interleaved). The dev-lead prompts already use a ReAct-adjacent pattern implicitly (plan → act → verify). Impact / Effort Impact: MEDIUM — the existing prompts work; the gain is maintainability (easier to update shared preamble) and potentially token savings (less repetition). Effort: M — requires reading and scoring each prompt file against candidate frameworks, running evals before/after on the held-out eval set ( Suggested acceptance criteria
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
There are a variety of prompting Frameworks that people are finding as helpful in reducing complexity and cost in coding agents.
Research, analyze and consider adopting proven best practices in our Dev lead agent.
Examples:
https://github.com/DietrichGebert/ponytail
Caveman
Beta Was this translation helpful? Give feedback.
All reactions