
Sentinal AI
Self-evolving assistant that grows with your needs
3 followers
Self-evolving assistant that grows with your needs
3 followers
Sentinal AI is a modular assistant built for developers who want more than static tools. With voice interaction and local + online support, it acts as a foundation for adaptive systems. Designed for controlled and reliable growth, it enables adding new capabilities without breaking existing functionality.




jared.so
The modular approach to adding capabilities without breaking existing ones is the hard part most agent frameworks skip. How do you handle conflicts when two modules try to act on the same input? Cool project.
@mcarmonas
Great question — and yeah, that’s exactly where most systems break.
Right now, I’m handling it with a priority + gating layer. Each module has a defined scope and priority, and before execution there’s a lightweight decision step that checks:
intent match
confidence score
and conflict rules
If two modules overlap, the system either:
routes to the higher-confidence module, or
chains them if both add value (instead of letting them clash)
I’m also experimenting with a central “orchestrator” that acts like a traffic controller instead of letting modules act independently.
Still refining this though — especially for edge cases where intent is ambiguous.
Appreciate you pointing that out 🔥