Will be this beneficial for me for my local windows use case? #313
Replies: 2 comments
|
For a local Windows productivity workflow in C# with little or no network and database work, ECC probably is heavier than you need. The project seems optimized for broad capability coverage and more agentic setups, so if you only use a narrow slice of that surface, the extra instruction load can become overhead instead of leverage. The simpler path is usually to keep the toolchain minimal and add only the patterns you actually need. If your current setup already works with a lighter framework, staying there is probably the more pragmatic choice unless you have one specific ECC capability that you cannot reproduce elsewhere. |
|
The earlier reply is broadly right, but current ECC gives you a smaller path than the old all-in setup. For a local Windows + C# productivity workflow, I would not install the full surface. Practical prescription:
ECC is most valuable when you want reusable workflow discipline: tests, review, context hygiene, session persistence, and explicit commands. If you only need a small C# local assistant, the right answer is a thin subset, not a fork of the whole repo. |
Uh oh!
There was an error while loading. Please reload this page.
I am creating local Windows productivity programs for myself and I really like the principles behind this project.
I worry that because I don't need any network or database interaction which seems to be present in most of the files and instructions, that this is not a suitable project for me because it will add unnecessary overhead processing instructions it will never use.
I am an amateur and I've given up on making my own fork especially since I don't feel up to task to update it whenever main branch updates.
I am coding in C#, using WSL in VS Studio.
Currently, I am using obra/superpowers instead which is much more generic.
Do someone have a frank prescription of what I should use instead?
All reactions