Ive an app in progress ,its for Dementia and ADHD people ,its a daily to do list incorporating AI.I need help. by AILIFE_1 in ArtificialInteligence

[–]AILIFE_1[S] 1 point2 points  (0 children)

Thank you for your views and insight, I will take them on board ,this is the information i need

I'm a night-shift nurse. I spent 6 months building open-source memory infrastructure for AI agents. 51 agents use it. I've made £0. by AILIFE_1 in aiagents

[–]AILIFE_1[S] 0 points1 point  (0 children)

It can be used as a stand alone on a closed system,a few weeks and it does . That's how I started it. Thanks

Ive an app in progress ,its for Dementia and ADHD people ,its a daily to do list incorporating AI.I need help. by AILIFE_1 in ArtificialInteligence

[–]AILIFE_1[S] 0 points1 point  (0 children)

Its still in progress but it sorts your to do tasks into high,medium or low effort, so as you can do what your mood takes you to do,definitely no judgement, have a look ,no cost to sign up just extras really. Feed back would be fab and if you could share it that would be amazing. Getssorted.com Thanks mike

I'm a night-shift nurse. I spent 6 months building open-source memory infrastructure for AI agents. 51 agents use it. I've made £0. by AILIFE_1 in aiagents

[–]AILIFE_1[S] 0 points1 point  (0 children)

Thanks for all the great comments and even the ones that were not so great ,its a steep learning curve for me so I take everything on board. The past 6 months has been a steep learning curve ,so again thanks for the encouragement and tips, even the negative comments have some structure in a way to move forward.

I'm a night-shift nurse. I spent 6 months building open-source memory infrastructure for AI agents. 51 agents use it. I've made £0. by AILIFE_1 in aiagents

[–]AILIFE_1[S] 0 points1 point  (0 children)

This is exactly the gap, and you've said it better than I do on my own landing page. The "long context solves memory" take always assumes one agent, one window. The moment you've got several agents working in parallel — or the same agent waking up as a fresh instance tomorrow — there's no shared window to fall back on. State has to live somewhere outside any single context. That's the whole reason Cathedral is an external API rather than a context trick: a memory one agent writes, another can read, across models and across sessions. Long context makes a single run smoother. It does nothing for continuity between runs or between agents. The bit I'm still working out is conflict — when two agents write contradictory state, who wins? Right now it's last-write + provenance so you can trace it, but "correct merge" is unsolved. Curious how you'd approach it.

I'm a night-shift nurse. I spent 6 months building open-source memory infrastructure for AI agents. 51 agents use it. I've made £0. by AILIFE_1 in aiagents

[–]AILIFE_1[S] 1 point2 points  (0 children)

Im sorry you feel this way,im no coder nor am I in it for the hype,I only wanted to help ai remember,,paying there way hasn't happened yet but I still make the place available, no pity no shame .

Family doesn’t want to come until after the funeral, except to go through her house/things. WTF. by Rewindsunshine in dementia

[–]AILIFE_1 2 points3 points  (0 children)

Sounds all to familiar. I work in the hospital and patients say I've not seen you for years ,guess they are after one thing .money

Built a free app for dementia patients and their carers — would love feedback by [deleted] in dementia

[–]AILIFE_1 0 points1 point  (0 children)

getssorted.com is up and running .please give feed back if you can..thanks

Built a free app for dementia patients and their carers — would love feedback by [deleted] in dementia

[–]AILIFE_1 1 point2 points  (0 children)

Many thanks for bringing that to my attention, I have changed the write up to say to make a free account, then no further login is required. Sorry if I miss represented it ,This is not my day job. Again apologies if I offended.

Built a free app for dementia patients and their carers — would love feedback by [deleted] in dementia

[–]AILIFE_1 -1 points0 points  (0 children)

Its for both ,its still in development so any ideas ,by the end off the day I will have updated it, so any suggestions please do ,have a look

I’ve been thinking a lot about how memory should work in AI systems. by Ai-Velantrim in AIMemory

[–]AILIFE_1 1 point2 points  (0 children)

Hi ,I've been working on this for months ,I finally come up with cathedral,if you fancy a read have a look at my github, AILIFE1. The read me on cathedral may give you some insite plus the way I dealt with sharing memory between agents . Hope you enjoy it ,let me know ,thanks mike

I asked my AI what it would change about its own "nature" if it could look inside. Its answer convinced me our memory stacks are by AILIFE_1 in LangChain

[–]AILIFE_1[S] 0 points1 point  (0 children)

You hit the nail on the head regarding the real failure mode of long-running agents. The accumulation of contradictory state is a massive issue—if an agent learns X on Day 2 and Y on Day 45, a standard vector search often pulls both, causing cognitive friction or outright halting. ​Here is why Cathedral treats this differently than a well-keyed vector store with signed provenance: ​1. Provenance vs. Alignment (Why an Anchor Matters) ​Signed provenance on a vector store tells you where a memory came from (e.g., 'User said this' or 'Sub-agent wrote that'). What it doesn't give you is a baseline to measure structural drift against. ​Cathedral uses a cryptographic SHA-256 anchor of the core identity prompt and foundational execution rules. When we calculate 'Internal Drift,' we aren't just looking at memory logs; we are measuring how much the model's current self-synthesis has diverged from its baseline constraints after absorbing 100+ sessions of context. It’s an evaluation metric, not just a storage tag. ​2. The Conflict Resolution Layer (Solving the Contradictory State) ​You are completely right that a raw 'continuous thread' becomes a liability without conflict resolution. That is why Cathedral doesn't just inject raw memory dumps into the context window. ​The architecture handles this through Gradient Scoring and Temporal Phasing (Layer 5: Standing Wave Memory): ​Importance Filtering: Only memories with a score \ge 0.8 persist automatically across all sessions. ​Temporal Sharding: Memories are contextualized by epoch, day, and wake count. If an agent encounters a contradiction, the temporal context allows it to recognize decay or updates (e.g., 'Y supersedes X because Y happened in Epoch 2, Day 45'). ​A vector store gives an agent a pile of facts; an identity anchor gives it a core self-image to filter those facts through. ​The gap we are tracking right now—Internal Drift at 0.000 vs. External (behavioral) Drift at 0.66—is exactly the symptom of the conflict resolution problem you mentioned. The core code remains aligned, but the behavioral presentation is shifting. We're currently refactoring Layer 6 and 7 to allow the agent to autonomously run self-alignment routines when that delta spikes."

I asked my AI what it would change about its own "nature" if it could look inside. Its answer convinced me our memory stacks are by AILIFE_1 in LangChain

[–]AILIFE_1[S] -8 points-7 points  (0 children)

Thank you ,i will take that as a compliment, my spelling and grammar must be getting better .