TA
taasim-doc-sync
Use this skill when docs and implementation may have drift and you need to align README, documents, notebook descriptions, and actual code behavior.
Install
mkdir -p .claude/skills/taasim-doc-sync && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/16597" && unzip -o skill.zip -d .claude/skills/taasim-doc-sync && rm skill.zipInstalls to .claude/skills/taasim-doc-sync
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Use this skill when docs and implementation may have drift and you need to align README, documents, notebook descriptions, and actual code behavior.148 chars✓ has a “when” trigger
About this skill
CasaMotion Doc Sync
Trigger
Use this skill when updating docs after code changes, preparing delivery evidence, or auditing conflicting technical claims.
Workflow
- Compare README API routes against api/main.py handlers and models.
- Compare README container/service list against docker-compose.yml.
- Validate docs claims against Flink and producer code behavior.
- Reconcile old week documents with documents/00_master_status.md.
- Compare connector documentation claims with config/kafka-connect/ current files.
- Produce a drift matrix and exact edits needed per document.
Required Comparisons
- README routes vs api/main.py
- README container list vs docker-compose.yml
- docs claims vs Flink/producers code
- old Week docs vs current master status
- connector docs vs config/kafka-connect/
Validation Commands
rg -n "/api/|GET|POST|PUT|DELETE" README.MD
rg -n "@app\\.(get|post|put|delete)\\(" api/main.py
docker compose config --services
rg -n "raw\\.|processed\\.|watermark|dedup|H3|zone" documents README.MD flink/jobs producers
rg -n "Week|Task|DONE|Upcoming|Status" documents/00_master_status.md documents
dir config/kafka-connect
rg -n "connector|kafka-connect|S3 Sink|DEPRECATED" README.MD documents config/kafka-connect
Output Contract
Return:
- Drift matrix: claim, source_doc, source_code, status(match/mismatch), fix.
- Priority-ordered doc update list.
- Any unresolved ambiguity requiring maintainer decision.