Workflow Granularity System #302
amirkiarafiei
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Problem:
Current workflows enforce hardcoded conciseness constraints (e.g., "Keep each section short" , "2-8 focused tests maximum"). This one-size-fits-all approach produces outputs that are too abstract for certain use cases and LLM models that need more specific guidance. It prevent users from getting the detail level they need for their specific LLM models and project requirements.
Solution:
It would be nice to have a system that allows user to modify the level of abstraction/detail/depth, possibly through two approaches:
1. Add CLI flags to scripts/project-install.sh to control granularity:
These flags would override hardcoded limits in workflow templates during compilation
2. Extend the template compilation system to support conditional content blocks:
{{#if detailed_mode}} Write comprehensive implementation details with examples {{else}} Keep sections concise with essential information only {{/if}}Add granularity settings to
config.ymlthat flow through the existing variable substitution systemBenefits:
Beta Was this translation helpful? Give feedback.
All reactions