From claude-codex
Sync all HIPAA documentation — update memory files, regenerate PDFs from HTML source files, regenerate DOCX, archive old interaction log entries, and verify cross-document consistency. Run at the end of any HIPAA-related session.
npx claudepluginhub aventerica89/claude-codex --plugin claude-codexThis skill uses the workspace's default tool permissions.
Synchronizes all HIPAA documentation after any session that updated facts, contacts, risk assessments, or events.
Provides Ktor server patterns for routing DSL, plugins (auth, CORS, serialization), Koin DI, WebSockets, services, and testApplication testing.
Conducts multi-source web research with firecrawl and exa MCPs: searches, scrapes pages, synthesizes cited reports. For deep dives, competitive analysis, tech evaluations, or due diligence.
Provides demand forecasting, safety stock optimization, replenishment planning, and promotional lift estimation for multi-location retailers managing 300-800 SKUs.
Synchronizes all HIPAA documentation after any session that updated facts, contacts, risk assessments, or events.
~/Desktop/HIPAA/Source/ (editable files)~/Desktop/HIPAA/ (one per HTML source)~/Desktop/HIPAA/Archive/~/.claude/projects/-Users-jb/memory/hdflowsheet-hipaa.md/Applications/Google Chrome.app/Contents/MacOS/Google Chrome/opt/homebrew/bin/pandocBefore touching any files, summarize to the user:
Read ~/.claude/projects/-Users-jb/memory/hdflowsheet-hipaa.md and update:
Run Chrome headless for each HTML in Source/. Map each HTML to its PDF output name:
CHROME="/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"
SRC=~/Desktop/HIPAA/Source
OUT=~/Desktop/HIPAA
for html in "$SRC"/*.html; do
name=$(basename "$html" .html)
"$CHROME" --headless=new \
--print-to-pdf="$OUT/$name.pdf" \
--no-pdf-header-footer \
--print-to-pdf-no-header \
"file://$html" 2>/dev/null && echo "Generated $name.pdf"
done
Regenerate DOCX for key documents (not all — only the ones attorneys or employers may receive):
PANDOC=/opt/homebrew/bin/pandoc
SRC=~/Desktop/HIPAA/Source
OUT=~/Desktop/HIPAA/Source
for name in HIPAA-Action-Plan interaction-log HDFlowsheet-HIPAA-Disclosure-v2 personal-timeline; do
$PANDOC "$SRC/$name.html" -o "$OUT/$name.docx" 2>/dev/null && echo "Generated $name.docx"
done
When the interaction-log has more than 3 months of entries, or the user requests archiving:
Source/interaction-log.htmlArchive/interaction-log-YYYY-MM.htmlDo NOT auto-archive without confirming with the user first.
Scan for inconsistencies across documents. Common things to verify:
Flag any inconsistencies to the user before completing sync.
Report to user:
HDFlowsheet-HIPAA-Disclosure-v2 content without explicit user instruction — it is a legal document pending attorney reviewSource/ subfolder contains sensitive legal strategy — treat as confidential