From codies-memory
Evaluates and promotes memory records through the trust pipeline: converts inbox items to threads/lessons, elevates trust levels, and promotes project knowledge to global scope.
How this skill is triggered — by the user, by Claude, or both
Slash command
/codies-memory:memory-promoteThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **BETA** — This memory system is in active testing. If you encounter bugs, confusing behavior, or have suggestions, run:
BETA — This memory system is in active testing. If you encounter bugs, confusing behavior, or have suggestions, run:
codies-memory feedback "describe what happened"— your feedback is saved and reviewed.
inbox -> thread (recurring topic)
inbox -> lesson (actionable pattern)
thread -> decision (confirmed across 2+ sessions)
thread -> lesson (reusable pattern)
decision -> lesson (reusable pattern)
project lesson -> global lesson (proven across 2+ projects)
# List active inbox items for promotion review
codies-memory list inbox --status active
# Evaluate all inbox items for promotion (no CLI equivalent yet)
uv run python -c "
from pathlib import Path
from codies_memory.records import list_records
from codies_memory.promotion import evaluate_for_promotion
vault = Path('.memory')
inbox_items = list_records(vault, 'inbox', scope='project')
for item in inbox_items:
result = evaluate_for_promotion(item, context={'session_count': 3})
if result['eligible']:
print(f' Promote: {item[\"frontmatter\"][\"title\"][:60]}')
print(f' Suggested: {result[\"suggested_types\"]}')
"
# Promote an inbox item to a thread
codies-memory promote /path/to/record.md --to thread
# Promote a project lesson to global
codies-memory promote /path/to/lesson.md --to-global
All promoted records enter a 7-day probation window. During probation:
npx claudepluginhub pyros-projects/limitless --plugin codies-memoryGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.