core: add interactive question tool for gathering user preferences and clarifying instructions

This commit is contained in:
Dax Raad 2026-01-07 19:55:50 -05:00
commit 14b827f941
14 changed files with 1221 additions and 6 deletions

View file

@ -1,7 +1,8 @@
## Style Guide
- Try to keep things in one function unless composable or reusable
- AVOID unnecessary destructuring of variables
- AVOID unnecessary destructuring of variables. instead of doing `const { a, b }
= obj` just reference it as obj.a and obj.b. this preserves context
- AVOID `try`/`catch` where possible
- AVOID `else` statements
- AVOID using `any` type