- Created daily log entries for April 13-16, 2026, capturing standup contexts, Mattermost syncs, and ongoing work items. - Established a daily logs index for easy navigation of daily entries. - Introduced templates for daily notes, decisions, meeting notes, people, systems, and work items to standardize documentation. - Developed maps for AI workspace core, current work, Fidelity domain, and work items to enhance workspace navigation. - Implemented base configurations for daily notes, decisions, people, systems, work items, and workstreams to streamline data management. - Added a placeholder for attachments to facilitate file organization.
2.3 KiB
description
| description |
|---|
| Sync live communication context and promote high-confidence memory |
Use the configured live communication connector to fetch fresh evidence and maintain workspace memory automatically.
Preferred command sources:
AIW_MATTERMOST_SYNC_CMD- compatibility fallback:
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 @ai/AGENTS.md @vault/01-current/current-work.md @vault/01-current/work-items.md @vault/03-context/project.md @vault/03-context/process/context-maintenance.md @ai/context/index.md @ai/context/project.md @ai/context/process/context-maintenance.md @ai/work-items/index.md @ai/state/current.md @ai/state/work-items.md @knowledge/memory-promotion-rules.md
Fresh communication evidence:
!if [ -s ai/inbox/mattermost-latest.md ]; then cat ai/inbox/mattermost-latest.md; elif [ -s scripts/mattermost/generated/mattermost_context.jsonl ]; then cat scripts/mattermost/generated/mattermost_context.jsonl; else echo "No communication evidence available."; fi
Instructions:
- if the sync command failed, stop and do not edit workspace memory
- treat connector output as evidence, not automatically as project truth
- promote only explicit, project-relevant, high-confidence facts
- default destination is
vault/06-daily/$(date +%F).md - update
vault/01-current/current-work.mdonly for facts that materially change the active work window - update
vault/02-work-items/*.mdfor explicit work-item IDs, approved titles, points, scope, and status notes - keep
vault/01-current/work-items.mdaligned as the compact summary of active work items - use
ai/*paths only as temporary compatibility fallback - 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