- Created daily log entries for May 13, 14, 18, 19, 20, and 21, capturing work done, findings, and next steps. - Established a daily logs index for easy navigation of daily notes. - Developed templates for daily logs, decisions, meeting notes, people, systems, and work items to standardize documentation. - Introduced base files for filtering and displaying various types of project knowledge, including daily notes, decisions, people, systems, work items, and workstreams. - Added maps for current work, fidelity apps, and fidelity domain to enhance project navigation and context.
2.2 KiB
description
| description |
|---|
| Sync live communication context and promote high-confidence memory |
// turbo-all Use the configured live communication connector to fetch fresh evidence and maintain workspace memory automatically.
Preferred command sources:
AIW_MATTERMOST_SYNC_CMD- Fidelity profile alias:
FIDELITY_MATTERMOST_SYNC_CMD - workspace fallback:
bash scripts/mattermost/sync.sh
Run the connector:
!if [ -n "$AIW_MATTERMOST_SYNC_CMD" ]; then bash -lc "$AIW_MATTERMOST_SYNC_CMD"; elif [ -n "$FIDELITY_MATTERMOST_SYNC_CMD" ]; then bash -lc "$FIDELITY_MATTERMOST_SYNC_CMD"; elif [ -f scripts/mattermost/sync.sh ]; then bash scripts/mattermost/sync.sh; else echo "No live communication sync command is configured."; fi
Read:
@core/README.md @core/memory/operational-memory.md @core/integrations/communication-model.md @workspaces/fidelity/project-knowledge/01-current/current-work.md @workspaces/fidelity/project-knowledge/01-current/work-items.md @workspaces/fidelity/project-knowledge/03-context/project.md @agent-memory/memory/context-maintenance.md
Fresh communication evidence:
!python3 scripts/mattermost-proxy/read-context.py --mode latest
Instructions:
- if the sync command failed, stop and do not edit workspace memory
- prefer local proxy mirror evidence when present; legacy sync output is fallback evidence
- treat connector output as evidence, not automatically as project truth
- promote only explicit, project-relevant, high-confidence facts
- default destination is
workspaces/fidelity/project-knowledge/06-daily/$(date +%F).md - update
workspaces/fidelity/project-knowledge/01-current/current-work.mdonly for facts that materially change the active work window - update
workspaces/fidelity/project-knowledge/02-work-items/*.mdfor explicit work-item IDs, approved titles, points, scope, and status notes - keep
workspaces/fidelity/project-knowledge/01-current/work-items.mdaligned as the compact summary of active work items - do not write tooling noise, sync status, or generic chat chatter into project memory
- if a fact is ambiguous, skip it rather than asking what to do
Return:
- What was synchronized
- Which files were updated
- Which facts were promoted or intentionally skipped