Issues Encountered

Issues Encountered

# Issue Resolution Status

1

STD-NNN template standard shows in /standards — the TEMPLATE-standard.adoc has :std-id: STD-NNN which gets picked up by the standards endpoint

Added filter in list_standards()std-id != "STD-NNN" condition excludes template

✅ Resolved

2

/save-commands skill crashes with special characters — dynamic context injection ! backtick pattern fails when arguments contain dashes or unicode

Escape arguments before injecting into awk. Or remove dynamic context from frontmatter.

🔄 Open

3

Port 8080 conflict — previous uvicorn process stays alive after Ctrl+C in some terminal contexts

kill $(lsof -ti:8080) before restart. Consider adding PID file management.

✅ Resolved (workaround)