mednotes-opencode 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.opencode/agents/med-chat-triager.md +204 -0
- package/.opencode/agents/med-flashcard-maker.md +63 -0
- package/.opencode/agents/med-knowledge-architect.md +230 -0
- package/.opencode/agents/med-link-graph-curator.md +177 -0
- package/.opencode/agents/med-publish-guard.md +62 -0
- package/.opencode/commands/flashcards.md +25 -0
- package/.opencode/commands/mednotes/create.md +25 -0
- package/.opencode/commands/mednotes/enrich.md +27 -0
- package/.opencode/commands/mednotes/fix-wiki.md +27 -0
- package/.opencode/commands/mednotes/history.md +22 -0
- package/.opencode/commands/mednotes/link-body.md +25 -0
- package/.opencode/commands/mednotes/link-related.md +27 -0
- package/.opencode/commands/mednotes/link.md +27 -0
- package/.opencode/commands/mednotes/pdf-library.md +27 -0
- package/.opencode/commands/mednotes/process-chats.md +23 -0
- package/.opencode/commands/mednotes/setup.md +21 -0
- package/.opencode/commands/mednotes/status.md +27 -0
- package/.opencode/commands/mednotes/telemetry.md +27 -0
- package/.opencode/commands/report.md +26 -0
- package/.opencode/mednotes/AGENTS.md +57 -0
- package/.opencode/mednotes/agents/med-chat-triager.md +197 -0
- package/.opencode/mednotes/agents/med-flashcard-maker.md +56 -0
- package/.opencode/mednotes/agents/med-knowledge-architect.md +224 -0
- package/.opencode/mednotes/agents/med-link-graph-curator.md +171 -0
- package/.opencode/mednotes/agents/med-publish-guard.md +55 -0
- package/.opencode/mednotes/contracts/.gitkeep +1 -0
- package/.opencode/mednotes/contracts/agents.json +116 -0
- package/.opencode/mednotes/contracts/opencode-plugin.json +70 -0
- package/.opencode/mednotes/docs/agent-prompt-hardening.md +567 -0
- package/.opencode/mednotes/docs/agent-role-contracts.md +94 -0
- package/.opencode/mednotes/docs/anki-mcp-twenty-rules.md +214 -0
- package/.opencode/mednotes/docs/anki-templates/README.md +39 -0
- package/.opencode/mednotes/docs/anki-templates/cloze.back.html +23 -0
- package/.opencode/mednotes/docs/anki-templates/cloze.front.html +14 -0
- package/.opencode/mednotes/docs/anki-templates/qa.back.html +24 -0
- package/.opencode/mednotes/docs/anki-templates/qa.front.html +14 -0
- package/.opencode/mednotes/docs/anki-templates/style.css +182 -0
- package/.opencode/mednotes/docs/atomicity-splitting-policy.md +113 -0
- package/.opencode/mednotes/docs/extension-docs.md +40 -0
- package/.opencode/mednotes/docs/flashcard-ingestion.md +278 -0
- package/.opencode/mednotes/docs/knowledge-architect.md +208 -0
- package/.opencode/mednotes/docs/merge-policy.md +110 -0
- package/.opencode/mednotes/docs/public-vocabulary.md +104 -0
- package/.opencode/mednotes/docs/semantic-linker.md +141 -0
- package/.opencode/mednotes/docs/taxonomy-policy.md +90 -0
- package/.opencode/mednotes/docs/triage-policy.md +187 -0
- package/.opencode/mednotes/docs/vault-version-control.md +758 -0
- package/.opencode/mednotes/docs/vocabulary-db-recovery.md +58 -0
- package/.opencode/mednotes/docs/workflow-output-contract.md +779 -0
- package/.opencode/mednotes/hooks/hooks.json +79 -0
- package/.opencode/mednotes/package-lock.json +6361 -0
- package/.opencode/mednotes/package.json +15 -0
- package/.opencode/mednotes/pyproject.toml +48 -0
- package/.opencode/mednotes/scripts/bootstrap_windows_python_uv.cmd +13 -0
- package/.opencode/mednotes/scripts/bootstrap_windows_python_uv.ps1 +172 -0
- package/.opencode/mednotes/scripts/enrich_notes.py +23 -0
- package/.opencode/mednotes/scripts/full_reset_windows_python_uv.cmd +13 -0
- package/.opencode/mednotes/scripts/hooks/antigravity_hook_status.mjs +212 -0
- package/.opencode/mednotes/scripts/hooks/mednotes_hook/adapters/antigravity.mjs +169 -0
- package/.opencode/mednotes/scripts/hooks/mednotes_hook/adapters/harness_payload.mjs +103 -0
- package/.opencode/mednotes/scripts/hooks/mednotes_hook/adapters/opencode_plugin.mjs +341 -0
- package/.opencode/mednotes/scripts/hooks/mednotes_hook/adapters/opencode_user_config_sync.mjs +177 -0
- package/.opencode/mednotes/scripts/hooks/mednotes_hook/anki_preflight.mjs +214 -0
- package/.opencode/mednotes/scripts/hooks/mednotes_hook/cli.mjs +143 -0
- package/.opencode/mednotes/scripts/hooks/mednotes_hook/diagnostics.mjs +11 -0
- package/.opencode/mednotes/scripts/hooks/mednotes_hook/domain/agent_directive_core.mjs +160 -0
- package/.opencode/mednotes/scripts/hooks/mednotes_hook/fsm_directive.mjs +1470 -0
- package/.opencode/mednotes/scripts/hooks/mednotes_hook/hook_errors.mjs +120 -0
- package/.opencode/mednotes/scripts/hooks/mednotes_hook/retention.mjs +114 -0
- package/.opencode/mednotes/scripts/hooks/mednotes_hook/runtime.mjs +174 -0
- package/.opencode/mednotes/scripts/hooks/mednotes_hook/telemetry_capture.mjs +511 -0
- package/.opencode/mednotes/scripts/hooks/mednotes_hook/vault_guard.mjs +624 -0
- package/.opencode/mednotes/scripts/hooks/mednotes_hook.mjs +5 -0
- package/.opencode/mednotes/scripts/mednotes/_runtime_paths.py +24 -0
- package/.opencode/mednotes/scripts/mednotes/anki_model_validator.py +18 -0
- package/.opencode/mednotes/scripts/mednotes/capture_extension_diff.py +1562 -0
- package/.opencode/mednotes/scripts/mednotes/feedback_report.py +16 -0
- package/.opencode/mednotes/scripts/mednotes/flashcard_index.py +18 -0
- package/.opencode/mednotes/scripts/mednotes/flashcard_pipeline.py +18 -0
- package/.opencode/mednotes/scripts/mednotes/flashcard_report.py +18 -0
- package/.opencode/mednotes/scripts/mednotes/flashcard_sources.py +18 -0
- package/.opencode/mednotes/scripts/mednotes/obsidian/README.md +6 -0
- package/.opencode/mednotes/scripts/mednotes/obsidian_note_utils.py +20 -0
- package/.opencode/mednotes/scripts/mednotes/pdf_library/cli.py +16 -0
- package/.opencode/mednotes/scripts/mednotes/project_fsm.py +229 -0
- package/.opencode/mednotes/scripts/mednotes/setup_telemetry_email.py +404 -0
- package/.opencode/mednotes/scripts/mednotes/sync_anki_twenty_rules.py +18 -0
- package/.opencode/mednotes/scripts/mednotes/sync_opencode_user_config.py +36 -0
- package/.opencode/mednotes/scripts/mednotes/wiki/cli.py +20 -0
- package/.opencode/mednotes/scripts/mednotes/wiki_graph.py +18 -0
- package/.opencode/mednotes/scripts/mednotes/wiki_tree.py +134 -0
- package/.opencode/mednotes/scripts/reset_windows_python_uv.ps1 +625 -0
- package/.opencode/mednotes/scripts/run_python.mjs +109 -0
- package/.opencode/mednotes/scripts/vault/vault_commit.ps1 +19 -0
- package/.opencode/mednotes/scripts/vault/vault_commit.sh +18 -0
- package/.opencode/mednotes/scripts/vault/vault_git.ps1 +19 -0
- package/.opencode/mednotes/scripts/vault/vault_git.py +3107 -0
- package/.opencode/mednotes/scripts/vault/vault_git.sh +18 -0
- package/.opencode/mednotes/scripts/vault/vault_precommit.ps1 +19 -0
- package/.opencode/mednotes/scripts/vault/vault_precommit.sh +18 -0
- package/.opencode/mednotes/skills/THIRD_PARTY_NOTICES.md +45 -0
- package/.opencode/mednotes/skills/create-medical-flashcards/SKILL.md +113 -0
- package/.opencode/mednotes/skills/create-medical-note/SKILL.md +90 -0
- package/.opencode/mednotes/skills/enrich-medical-note/SKILL.md +120 -0
- package/.opencode/mednotes/skills/fix-medical-wiki/SKILL.md +559 -0
- package/.opencode/mednotes/skills/link-medical-wiki/SKILL.md +224 -0
- package/.opencode/mednotes/skills/obsidian-cli/SKILL.md +118 -0
- package/.opencode/mednotes/skills/obsidian-markdown/SKILL.md +207 -0
- package/.opencode/mednotes/skills/obsidian-markdown/references/CALLOUTS.md +58 -0
- package/.opencode/mednotes/skills/obsidian-markdown/references/EMBEDS.md +63 -0
- package/.opencode/mednotes/skills/obsidian-markdown/references/PROPERTIES.md +61 -0
- package/.opencode/mednotes/skills/obsidian-ops/SKILL.md +136 -0
- package/.opencode/mednotes/skills/pdf-library/SKILL.md +45 -0
- package/.opencode/mednotes/skills/process-medical-chats/SKILL.md +246 -0
- package/.opencode/mednotes/skills/workflow-report/SKILL.md +100 -0
- package/.opencode/mednotes/src/mednotes/__init__.py +5 -0
- package/.opencode/mednotes/src/mednotes/domains/__init__.py +5 -0
- package/.opencode/mednotes/src/mednotes/domains/flashcards/README.md +26 -0
- package/.opencode/mednotes/src/mednotes/domains/flashcards/__init__.py +2 -0
- package/.opencode/mednotes/src/mednotes/domains/flashcards/build_demo_apkg.py +177 -0
- package/.opencode/mednotes/src/mednotes/domains/flashcards/contracts.py +385 -0
- package/.opencode/mednotes/src/mednotes/domains/flashcards/flashcards_machine.py +522 -0
- package/.opencode/mednotes/src/mednotes/domains/flashcards/fsm.py +817 -0
- package/.opencode/mednotes/src/mednotes/domains/flashcards/index.py +630 -0
- package/.opencode/mednotes/src/mednotes/domains/flashcards/install_models.py +445 -0
- package/.opencode/mednotes/src/mednotes/domains/flashcards/model.py +359 -0
- package/.opencode/mednotes/src/mednotes/domains/flashcards/obsidian_links.py +135 -0
- package/.opencode/mednotes/src/mednotes/domains/flashcards/obsidian_note_utils.py +546 -0
- package/.opencode/mednotes/src/mednotes/domains/flashcards/pipeline.py +580 -0
- package/.opencode/mednotes/src/mednotes/domains/flashcards/report.py +510 -0
- package/.opencode/mednotes/src/mednotes/domains/flashcards/sources.py +682 -0
- package/.opencode/mednotes/src/mednotes/domains/flashcards/sync_rules.py +184 -0
- package/.opencode/mednotes/src/mednotes/domains/history/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/history/history_fsm.py +852 -0
- package/.opencode/mednotes/src/mednotes/domains/history/history_machine.py +453 -0
- package/.opencode/mednotes/src/mednotes/domains/setup/__init__.py +7 -0
- package/.opencode/mednotes/src/mednotes/domains/setup/setup_fsm.py +808 -0
- package/.opencode/mednotes/src/mednotes/domains/setup/setup_machine.py +973 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/README.md +64 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/api.py +668 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/batch_state.py +102 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/atomicity/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/atomicity/atomicity.py +877 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/body_link/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/body_link/body_linker.py +1562 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/effects/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/effects/effect_adapters.py +949 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/effects/fix_wiki_runtime_adapters.py +433 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/graph/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/graph/coverage.py +413 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/graph/graph.py +396 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/graph/graph_fixes.py +161 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/hygiene/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/hygiene/hygiene.py +483 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/illustrate/__init__.py +2 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/illustrate/anchors.py +185 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/illustrate/core/__init__.py +0 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/illustrate/core/cache.py +223 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/illustrate/core/config.py +131 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/illustrate/core/download.py +224 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/illustrate/core/frontmatter.py +59 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/illustrate/core/insert.py +227 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/illustrate/core/local_import.py +54 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/illustrate/sources/__init__.py +42 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/illustrate/sources/web_profiles.py +99 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/illustrate/sources/web_search.py +203 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/illustrate/sources/wikimedia.py +102 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/markdown/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/markdown/markdown_db_adapter.mjs +434 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/markdown/markdown_node_runtime.py +274 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/markdown/markdown_query.py +227 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/artifacts.py +605 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/canonical_merge.py +277 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/markdown_zones.py +85 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/meaning_planner.py +307 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/note_iter.py +67 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/note_merge.py +278 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/note_plan.py +409 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/note_policy.py +22 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/note_style/__init__.py +79 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/note_style/fixes.py +264 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/note_style/frontmatter.py +435 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/note_style/models.py +208 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/note_style/prompts.py +37 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/note_style/tables.py +236 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/note_style/validate.py +404 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/provenance.py +478 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/raw_chats.py +273 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/notes/sources_backfill.py +235 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/__init__.py +10 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/anchors.py +16 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/captions.py +47 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/cli.py +179 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/cloud.py +52 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/config.py +196 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/context_packets.py +76 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/db.py +81 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/doctor.py +102 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/figure_ids.py +42 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/ingest.py +326 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/insert.py +316 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/mentions.py +57 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/ocr.py +71 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/paths.py +35 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/pdf_engine.py +77 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/schema.py +155 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/search.py +188 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/tui/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/tui/app.py +89 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/tui/image_backend.py +29 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/pdf/tui/state.py +65 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/publish/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/publish/publish.py +1139 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/publish/publish_receipts.py +365 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/publish/publish_recovery.py +240 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/quality/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/quality/agent_behavior_corpus.py +2069 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/quality/agent_report_validation.py +4448 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/quality/agent_run_audit.py +852 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/quality/architect_prompt_eval.py +341 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/quality/body_linker_eval.py +240 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/quality/curator_output_validation.py +175 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/quality/curator_prompt_eval.py +865 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/quality/triager_prompt_eval.py +1295 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/related_notes/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/related_notes/related_notes.py +1920 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/related_notes/related_notes_headless.py +1186 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/specialist/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/specialist/plan_attestation.py +148 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/specialist/specialist_receipts.py +360 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/specialist/specialist_runtime.py +52 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/specialist/specialist_task_runner.py +2470 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/style/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/style/style.py +1952 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/subagents/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/subagents/agents.py +1767 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/vocabulary/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/vocabulary/alias_projection.py +331 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/vocabulary/link_terms.py +151 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/vocabulary/llm_disambiguation.py +182 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/vocabulary/taxonomy/__init__.py +116 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/vocabulary/taxonomy/audit.py +201 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/vocabulary/taxonomy/migration.py +314 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/vocabulary/taxonomy/normalize.py +72 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/vocabulary/taxonomy/policy.py +135 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/vocabulary/taxonomy/resolve.py +413 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/vocabulary/taxonomy/schema.py +157 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/vocabulary/taxonomy/status.py +137 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/vocabulary/vocabulary_bootstrap.py +509 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/vocabulary/vocabulary_curator_batch.py +1115 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/vocabulary/vocabulary_ingestion.py +632 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/vocabulary/vocabulary_map.py +930 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/capabilities/vocabulary/vocabulary_recovery.py +1388 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/cli.py +6665 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/common.py +69 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/config.py +210 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/__init__.py +74 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/agent_report.py +242 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/agent_run_audit.py +196 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/agents.py +601 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/curator.py +256 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/effect_payloads.py +519 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/happy_path.py +190 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/link_git.py +110 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/link_runtime_artifact.py +52 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/note_plan.py +75 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/paths.py +114 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/public_report.py +53 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/publish.py +111 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/raw_coverage.py +217 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/related_notes.py +136 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/related_notes_headless.py +153 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/related_notes_runtime.py +395 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/schema_registry.py +637 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/specialist.py +432 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/status.py +62 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/style_rewrite.py +568 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/vocabulary_ingestion.py +223 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/workflow_blockers.py +510 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/workflow_guardrails.py +637 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/workflow_outcomes.py +121 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/contracts/workflow_receipts.py +100 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/enrich/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/enrich/__main__.py +4 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/enrich/cli.py +275 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/enrich/workflow/__init__.py +2 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/enrich/workflow/candidates.py +193 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/enrich/workflow/cli.py +189 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/enrich/workflow/gemini.py +220 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/enrich/workflow/inputs.py +120 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/enrich/workflow/models.py +34 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/enrich/workflow/parsing.py +48 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/enrich/workflow/prompts.py +216 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/enrich/workflow/quality.py +54 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/enrich/workflow/reporting.py +24 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/enrich/workflow/runner.py +433 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/enrich/workflow/utils.py +39 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/enrich/workflow/vault_guard_bridge.py +17 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/fix_wiki/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/fix_wiki/fix_wiki_context_packets.py +454 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/fix_wiki/fix_wiki_decision_projection.py +133 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/fix_wiki/fix_wiki_effects.py +1260 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/fix_wiki/fix_wiki_fsm.py +2768 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/fix_wiki/fix_wiki_machine.py +1588 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/fix_wiki/fix_wiki_plan.py +306 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/fix_wiki/fix_wiki_primary_objective.py +316 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/fix_wiki/fix_wiki_problem.py +153 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/fix_wiki/fix_wiki_receipt_evidence.py +306 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/fix_wiki/fix_wiki_states.py +290 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/fix_wiki/fix_wiki_user_report.py +342 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/fix_wiki/health.py +6332 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/link/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/link/link_fsm.py +1119 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/link/link_git.py +638 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/link/link_machine.py +1106 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/link/link_retry_governance.py +374 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/link/link_runtime_result.py +485 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/link/link_triggers.py +183 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/link/linking.py +2758 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/link/reference_repair.py +718 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/link/related_notes_fsm.py +1855 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/link_related/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/link_related/link_related_machine.py +834 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/process_chats/__init__.py +1 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/process_chats/process_chats_fsm.py +1592 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/process_chats/process_chats_machine.py +3097 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/process_chats/process_chats_primary_objective.py +28 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/flows/process_chats/process_chats_runtime_result.py +185 -0
- package/.opencode/mednotes/src/mednotes/domains/wiki/performance.py +97 -0
- package/.opencode/mednotes/src/mednotes/kernel/__init__.py +6 -0
- package/.opencode/mednotes/src/mednotes/kernel/agent_directive.py +336 -0
- package/.opencode/mednotes/src/mednotes/kernel/base.py +51 -0
- package/.opencode/mednotes/src/mednotes/kernel/blockers.py +39 -0
- package/.opencode/mednotes/src/mednotes/kernel/effect_executor.py +55 -0
- package/.opencode/mednotes/src/mednotes/kernel/effect_intent.py +69 -0
- package/.opencode/mednotes/src/mednotes/kernel/effects.py +160 -0
- package/.opencode/mednotes/src/mednotes/kernel/errors.py +38 -0
- package/.opencode/mednotes/src/mednotes/kernel/fsm_event.py +35 -0
- package/.opencode/mednotes/src/mednotes/kernel/fsm_model.py +55 -0
- package/.opencode/mednotes/src/mednotes/kernel/fsm_transition_result.py +75 -0
- package/.opencode/mednotes/src/mednotes/kernel/guardrails.py +188 -0
- package/.opencode/mednotes/src/mednotes/kernel/progress.py +319 -0
- package/.opencode/mednotes/src/mednotes/kernel/public_report.py +346 -0
- package/.opencode/mednotes/src/mednotes/kernel/state_machine.py +164 -0
- package/.opencode/mednotes/src/mednotes/kernel/workflow.py +619 -0
- package/.opencode/mednotes/src/mednotes/platform/__init__.py +5 -0
- package/.opencode/mednotes/src/mednotes/platform/backup_policy.py +382 -0
- package/.opencode/mednotes/src/mednotes/platform/feedback/__init__.py +62 -0
- package/.opencode/mednotes/src/mednotes/platform/feedback/cli.py +275 -0
- package/.opencode/mednotes/src/mednotes/platform/feedback/contracts.py +83 -0
- package/.opencode/mednotes/src/mednotes/platform/feedback/core.py +4168 -0
- package/.opencode/mednotes/src/mednotes/platform/feedback/integrity.py +989 -0
- package/.opencode/mednotes/src/mednotes/platform/feedback/operational_contract.py +2293 -0
- package/.opencode/mednotes/src/mednotes/platform/feedback/telemetry.py +875 -0
- package/.opencode/mednotes/src/mednotes/platform/feedback/telemetry_config.py +65 -0
- package/.opencode/mednotes/src/mednotes/platform/opencode_runtime_config.py +182 -0
- package/.opencode/mednotes/src/mednotes/platform/paths/__init__.py +1560 -0
- package/.opencode/mednotes/src/mednotes/platform/secrets.py +89 -0
- package/.opencode/mednotes/src/mednotes/platform/user_config.py +103 -0
- package/.opencode/mednotes/src/mednotes/platform/vault_guard.py +214 -0
- package/.opencode/mednotes/uv.lock +932 -0
- package/.opencode/mednotes.generated.json +395 -0
- package/.opencode/opencode.json +31 -0
- package/.opencode/plugins/mednotes-fsm.mjs +7 -0
- package/.opencode/plugins/mednotes_hook/adapters/antigravity.mjs +169 -0
- package/.opencode/plugins/mednotes_hook/adapters/harness_payload.mjs +103 -0
- package/.opencode/plugins/mednotes_hook/adapters/opencode_plugin.mjs +341 -0
- package/.opencode/plugins/mednotes_hook/adapters/opencode_user_config_sync.mjs +177 -0
- package/.opencode/plugins/mednotes_hook/anki_preflight.mjs +214 -0
- package/.opencode/plugins/mednotes_hook/cli.mjs +143 -0
- package/.opencode/plugins/mednotes_hook/diagnostics.mjs +11 -0
- package/.opencode/plugins/mednotes_hook/domain/agent_directive_core.mjs +160 -0
- package/.opencode/plugins/mednotes_hook/fsm_directive.mjs +1470 -0
- package/.opencode/plugins/mednotes_hook/hook_errors.mjs +120 -0
- package/.opencode/plugins/mednotes_hook/retention.mjs +114 -0
- package/.opencode/plugins/mednotes_hook/runtime.mjs +174 -0
- package/.opencode/plugins/mednotes_hook/telemetry_capture.mjs +511 -0
- package/.opencode/plugins/mednotes_hook/vault_guard.mjs +624 -0
- package/AGENTS.md +57 -0
- package/README.md +194 -0
- package/adapters/antigravity/agents.json +80 -0
- package/adapters/antigravity/templates/med-chat-triager.md +214 -0
- package/adapters/antigravity/templates/med-flashcard-maker.md +72 -0
- package/adapters/antigravity/templates/med-knowledge-architect.md +241 -0
- package/adapters/antigravity/templates/med-link-graph-curator.md +187 -0
- package/adapters/antigravity/templates/med-publish-guard.md +71 -0
- package/adapters/gemini-cli/gemini-extension.json +14 -0
- package/adapters/gemini-cli/package.json +15 -0
- package/adapters/gemini-cli/pyproject.toml +48 -0
- package/bin/mednotes-opencode.mjs +155 -0
- package/contracts/agents.json +116 -0
- package/core/agents/med-chat-triager.md +197 -0
- package/core/agents/med-flashcard-maker.md +56 -0
- package/core/agents/med-knowledge-architect.md +224 -0
- package/core/agents/med-link-graph-curator.md +171 -0
- package/core/agents/med-publish-guard.md +55 -0
- package/core/commands/flashcards.toml +22 -0
- package/core/commands/mednotes/create.toml +22 -0
- package/core/commands/mednotes/enrich.toml +24 -0
- package/core/commands/mednotes/fix-wiki.toml +24 -0
- package/core/commands/mednotes/history.toml +19 -0
- package/core/commands/mednotes/link-body.toml +22 -0
- package/core/commands/mednotes/link-related.toml +24 -0
- package/core/commands/mednotes/link.toml +24 -0
- package/core/commands/mednotes/pdf-library.toml +24 -0
- package/core/commands/mednotes/process-chats.toml +20 -0
- package/core/commands/mednotes/setup.toml +18 -0
- package/core/commands/mednotes/status.toml +24 -0
- package/core/commands/mednotes/telemetry.toml +24 -0
- package/core/commands/report.toml +23 -0
- package/core/skills/THIRD_PARTY_NOTICES.md +45 -0
- package/core/skills/create-medical-flashcards/SKILL.md +113 -0
- package/core/skills/create-medical-note/SKILL.md +90 -0
- package/core/skills/enrich-medical-note/SKILL.md +120 -0
- package/core/skills/fix-medical-wiki/SKILL.md +559 -0
- package/core/skills/link-medical-wiki/SKILL.md +224 -0
- package/core/skills/obsidian-cli/SKILL.md +118 -0
- package/core/skills/obsidian-markdown/SKILL.md +207 -0
- package/core/skills/obsidian-markdown/references/CALLOUTS.md +58 -0
- package/core/skills/obsidian-markdown/references/EMBEDS.md +63 -0
- package/core/skills/obsidian-markdown/references/PROPERTIES.md +61 -0
- package/core/skills/obsidian-ops/SKILL.md +136 -0
- package/core/skills/pdf-library/SKILL.md +45 -0
- package/core/skills/process-medical-chats/SKILL.md +246 -0
- package/core/skills/workflow-report/SKILL.md +100 -0
- package/package.json +45 -0
|
@@ -0,0 +1,478 @@
|
|
|
1
|
+
"""Canonical chat provenance helpers for Wiki notes."""
|
|
2
|
+
from __future__ import annotations
|
|
3
|
+
|
|
4
|
+
import re
|
|
5
|
+
from dataclasses import dataclass
|
|
6
|
+
from pathlib import Path
|
|
7
|
+
from types import SimpleNamespace
|
|
8
|
+
from typing import Any
|
|
9
|
+
|
|
10
|
+
from mednotes.domains.wiki.capabilities.notes.note_style.frontmatter import (
|
|
11
|
+
SOURCE_METADATA_KEYS,
|
|
12
|
+
dump_frontmatter_yaml,
|
|
13
|
+
load_frontmatter_yaml,
|
|
14
|
+
normalize_wiki_frontmatter,
|
|
15
|
+
split_frontmatter,
|
|
16
|
+
)
|
|
17
|
+
from mednotes.domains.wiki.capabilities.notes.raw_chats import read_note_meta
|
|
18
|
+
from mednotes.domains.wiki.capabilities.vocabulary.link_terms import normalize_key
|
|
19
|
+
|
|
20
|
+
CONSOLIDATED_SOURCES_HEADING = "## 🧬 Fontes Consolidadas"
|
|
21
|
+
CHAT_ORIGINAL_LABEL = "Chat Original"
|
|
22
|
+
|
|
23
|
+
_CHAT_ORIGINAL_RE = re.compile(r"\[Chat Original\]\((https://gemini\.google\.com/app/([^)\s]+))\)")
|
|
24
|
+
_GEMINI_URL_RE = re.compile(r"https://gemini\.google\.com/app/([^)\s]+)")
|
|
25
|
+
_H2_RE = re.compile(r"(?m)^##\s+(.+?)\s*$")
|
|
26
|
+
_LEGACY_CHAT_FOOTER_RE = re.compile(
|
|
27
|
+
r"(?ms)\n*\n---\s*\n\[Chat Original\]\(https://gemini\.google\.com/app/[^)\s]+\)\s*"
|
|
28
|
+
)
|
|
29
|
+
_CONSOLIDATED_SOURCES_SECTION_RE = re.compile(
|
|
30
|
+
r"(?ms)^##\s+(?:\S+\s+)?Fontes Consolidadas\s*$.*?(?=^##\s+|\Z)"
|
|
31
|
+
)
|
|
32
|
+
_LEGACY_SOURCE_DELTA_RE = re.compile(
|
|
33
|
+
r"-\s*(?P<delta>.+?)\s+adicionad[ao]s?\s+a\s+partir\s+de:\s*"
|
|
34
|
+
r"\[Chat Original\]\(https://gemini\.google\.com/app/(?P<chat_id>[^)\s]+)\)",
|
|
35
|
+
re.IGNORECASE,
|
|
36
|
+
)
|
|
37
|
+
_SOURCE_LINK_RE = re.compile(r"^-\s+\[[^\]]+\]\(https://gemini\.google\.com/app/(?P<chat_id>[^)\s]+)\)\s*$")
|
|
38
|
+
_MARKDOWN_SOURCE_URL_RE = re.compile(r"\[[^\]]+\]\((?P<url>https?://[^)\s]+)\)")
|
|
39
|
+
_SOURCE_DELTA_RE = re.compile(r"^\s+-\s+Delta:\s*(?P<delta>.+?)\s*$")
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
def _optional_text(value: str | None) -> str:
|
|
43
|
+
return value.strip() if isinstance(value, str) else ""
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
@dataclass(frozen=True)
|
|
47
|
+
class ChatProvenance:
|
|
48
|
+
id: str
|
|
49
|
+
date_created: str = ""
|
|
50
|
+
date_exported: str = ""
|
|
51
|
+
|
|
52
|
+
def __post_init__(self) -> None:
|
|
53
|
+
object.__setattr__(self, "id", _normalize_chat_id(self.id))
|
|
54
|
+
object.__setattr__(self, "date_created", _optional_text(self.date_created))
|
|
55
|
+
object.__setattr__(self, "date_exported", _optional_text(self.date_exported))
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
@dataclass(frozen=True)
|
|
59
|
+
class ProvenanceState:
|
|
60
|
+
status: str
|
|
61
|
+
chat_ids: tuple[str, ...]
|
|
62
|
+
legacy_urls: tuple[str, ...]
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
def classify_note_provenance(text: str) -> ProvenanceState:
|
|
66
|
+
legacy = _legacy_urls(text)
|
|
67
|
+
try:
|
|
68
|
+
chats = _frontmatter_chats(text)
|
|
69
|
+
except ValueError:
|
|
70
|
+
return ProvenanceState("invalid", (), tuple(legacy))
|
|
71
|
+
chat_ids = tuple(chat.id for chat in chats)
|
|
72
|
+
if legacy:
|
|
73
|
+
return ProvenanceState("migratable", tuple(_chat_id_from_url(url) for url in legacy), tuple(legacy))
|
|
74
|
+
if chat_ids and _has_final_consolidated_sources(text):
|
|
75
|
+
return ProvenanceState("already_canonical", chat_ids, tuple(legacy))
|
|
76
|
+
return ProvenanceState("unrecoverable", chat_ids, ())
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
def audit_note_provenance(text: str, *, chat_lookup: Any) -> dict[str, object]:
|
|
80
|
+
try:
|
|
81
|
+
chats = _frontmatter_chats(text)
|
|
82
|
+
except ValueError as exc:
|
|
83
|
+
return {
|
|
84
|
+
"status": "blocked",
|
|
85
|
+
"blocked_reason": "chats.shape_invalid",
|
|
86
|
+
"errors": [{"code": "chats.shape_invalid", "message": str(exc), "severity": "error"}],
|
|
87
|
+
"warnings": [],
|
|
88
|
+
}
|
|
89
|
+
state = classify_note_provenance(text)
|
|
90
|
+
if state.status == "already_canonical":
|
|
91
|
+
return {
|
|
92
|
+
"status": "ok",
|
|
93
|
+
"blocked_reason": "",
|
|
94
|
+
"chat_ids": list(state.chat_ids),
|
|
95
|
+
"errors": [],
|
|
96
|
+
"warnings": [],
|
|
97
|
+
}
|
|
98
|
+
if state.status == "migratable":
|
|
99
|
+
return {
|
|
100
|
+
"status": "fixable",
|
|
101
|
+
"blocked_reason": "provenance.legacy_chat_original_footer",
|
|
102
|
+
"chat_ids": list(state.chat_ids),
|
|
103
|
+
"legacy_urls": list(state.legacy_urls),
|
|
104
|
+
"errors": [
|
|
105
|
+
{
|
|
106
|
+
"code": "provenance.legacy_chat_original_footer",
|
|
107
|
+
"message": "migrate legacy Chat Original footer to YAML chats[] and Fontes Consolidadas",
|
|
108
|
+
"severity": "error",
|
|
109
|
+
}
|
|
110
|
+
],
|
|
111
|
+
"warnings": [],
|
|
112
|
+
}
|
|
113
|
+
if chats and not _has_final_consolidated_sources(text):
|
|
114
|
+
return {
|
|
115
|
+
"status": "blocked",
|
|
116
|
+
"blocked_reason": "provenance.sources_section_missing",
|
|
117
|
+
"chat_ids": [chat.id for chat in chats],
|
|
118
|
+
"errors": [
|
|
119
|
+
{
|
|
120
|
+
"code": "provenance.sources_section_missing",
|
|
121
|
+
"message": "canonical chat provenance requires final Fontes Consolidadas section",
|
|
122
|
+
"severity": "error",
|
|
123
|
+
}
|
|
124
|
+
],
|
|
125
|
+
"warnings": [],
|
|
126
|
+
}
|
|
127
|
+
if _has_non_chat_source_provenance(text):
|
|
128
|
+
return {
|
|
129
|
+
"status": "ok",
|
|
130
|
+
"blocked_reason": "",
|
|
131
|
+
"chat_ids": [],
|
|
132
|
+
"errors": [],
|
|
133
|
+
"warnings": [],
|
|
134
|
+
"source_kind": "non_chat",
|
|
135
|
+
}
|
|
136
|
+
return {
|
|
137
|
+
"status": "warning",
|
|
138
|
+
"blocked_reason": "",
|
|
139
|
+
"chat_ids": [],
|
|
140
|
+
"errors": [],
|
|
141
|
+
"warnings": [
|
|
142
|
+
{
|
|
143
|
+
"code": "chats.missing_unrecoverable",
|
|
144
|
+
"message": "no recoverable Gemini chat provenance found",
|
|
145
|
+
"severity": "warning",
|
|
146
|
+
}
|
|
147
|
+
],
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
def apply_note_provenance(
|
|
152
|
+
text: str,
|
|
153
|
+
*,
|
|
154
|
+
chats: list[ChatProvenance],
|
|
155
|
+
chat_lookup: Any,
|
|
156
|
+
deltas: dict[str, str] | None = None,
|
|
157
|
+
) -> dict[str, object]:
|
|
158
|
+
existing = _frontmatter_chats(text)
|
|
159
|
+
legacy = [ChatProvenance(_chat_id_from_url(url)) for url in _legacy_urls(text)]
|
|
160
|
+
merged = _enrich_chats(merge_chat_provenance(existing, legacy, chats), chat_lookup)
|
|
161
|
+
if not merged:
|
|
162
|
+
return {"status": "unchanged", "text": text, "chat_ids": []}
|
|
163
|
+
|
|
164
|
+
frontmatter, body = split_frontmatter(text)
|
|
165
|
+
data: dict[str, object] = load_frontmatter_yaml(text) if frontmatter is not None else {}
|
|
166
|
+
data["chats"] = [_chat_to_yaml(chat) for chat in merged]
|
|
167
|
+
legacy_deltas = _legacy_consolidated_source_deltas(body)
|
|
168
|
+
rendered_deltas = {**legacy_deltas, **(deltas or {})}
|
|
169
|
+
body = _remove_legacy_footer(body)
|
|
170
|
+
body = _replace_consolidated_sources(body, _render_sources_section(merged, chat_lookup, rendered_deltas))
|
|
171
|
+
with_frontmatter = f"---\n{dump_frontmatter_yaml(data)}---\n{body.lstrip(chr(10))}"
|
|
172
|
+
normalized, fixes = normalize_wiki_frontmatter(with_frontmatter, preserve_keys={"chats"})
|
|
173
|
+
status = "already_canonical" if normalized == text else "updated"
|
|
174
|
+
return {
|
|
175
|
+
"status": status,
|
|
176
|
+
"text": normalized,
|
|
177
|
+
"chat_ids": [chat.id for chat in merged],
|
|
178
|
+
"fixes_applied": fixes,
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
def merge_chat_provenance(*groups: list[ChatProvenance]) -> list[ChatProvenance]:
|
|
183
|
+
by_id: dict[str, ChatProvenance] = {}
|
|
184
|
+
for group in groups:
|
|
185
|
+
for chat in group:
|
|
186
|
+
chat_id = chat.id.strip()
|
|
187
|
+
if not chat_id:
|
|
188
|
+
continue
|
|
189
|
+
existing = by_id.get(chat_id)
|
|
190
|
+
if existing is None:
|
|
191
|
+
by_id[chat_id] = ChatProvenance(chat_id, chat.date_created, chat.date_exported)
|
|
192
|
+
continue
|
|
193
|
+
by_id[chat_id] = ChatProvenance(
|
|
194
|
+
chat_id,
|
|
195
|
+
existing.date_created or chat.date_created,
|
|
196
|
+
existing.date_exported or chat.date_exported,
|
|
197
|
+
)
|
|
198
|
+
return sorted(by_id.values(), key=lambda item: (not item.date_created, item.date_created, item.id))
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
def _apply_note_provenance_from_raw_files(
|
|
202
|
+
text: str,
|
|
203
|
+
*,
|
|
204
|
+
raw_files: list[Path],
|
|
205
|
+
title: str,
|
|
206
|
+
coverage_summary: dict[str, Any] | None = None,
|
|
207
|
+
) -> dict[str, object]:
|
|
208
|
+
unique_raw_files = _unique_paths(raw_files)
|
|
209
|
+
chats = [
|
|
210
|
+
chat
|
|
211
|
+
for raw_file in unique_raw_files
|
|
212
|
+
for chat in [_chat_from_raw_file(raw_file)]
|
|
213
|
+
if chat is not None
|
|
214
|
+
]
|
|
215
|
+
return apply_note_provenance(
|
|
216
|
+
text,
|
|
217
|
+
chats=chats,
|
|
218
|
+
chat_lookup=_RawFilesChatLookup(unique_raw_files, fallback_title=title),
|
|
219
|
+
deltas=_coverage_deltas(coverage_summary, title=title),
|
|
220
|
+
)
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
class _RawFilesChatLookup:
|
|
224
|
+
def __init__(self, raw_files: list[Path], *, fallback_title: str) -> None:
|
|
225
|
+
self.fallback_title = fallback_title
|
|
226
|
+
self.by_id: dict[str, SimpleNamespace] = {}
|
|
227
|
+
for raw_file in raw_files:
|
|
228
|
+
meta = read_note_meta(raw_file)
|
|
229
|
+
chat = _chat_from_raw_meta(meta)
|
|
230
|
+
if chat is None:
|
|
231
|
+
continue
|
|
232
|
+
title = str(meta.get("titulo_triagem") or fallback_title or f"Chat {chat.id[:8]}").strip()
|
|
233
|
+
source = _optional_text(meta.get("fonte_id"))
|
|
234
|
+
self.by_id[chat.id] = SimpleNamespace(
|
|
235
|
+
id=chat.id,
|
|
236
|
+
title=title,
|
|
237
|
+
url=source if source.startswith(("http://", "https://")) else _chat_url(chat.id),
|
|
238
|
+
date_created=chat.date_created,
|
|
239
|
+
date_exported=chat.date_exported,
|
|
240
|
+
)
|
|
241
|
+
|
|
242
|
+
def lookup_chat(self, chat_id: str) -> SimpleNamespace:
|
|
243
|
+
normalized_id = _normalize_chat_id(chat_id)
|
|
244
|
+
return self.by_id.get(
|
|
245
|
+
normalized_id,
|
|
246
|
+
SimpleNamespace(
|
|
247
|
+
id=normalized_id,
|
|
248
|
+
title=f"Chat {normalized_id[:8]}",
|
|
249
|
+
url=_chat_url(normalized_id),
|
|
250
|
+
date_created="",
|
|
251
|
+
date_exported="",
|
|
252
|
+
),
|
|
253
|
+
)
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
def _chat_from_raw_file(raw_file: Path) -> ChatProvenance | None:
|
|
257
|
+
return _chat_from_raw_meta(read_note_meta(raw_file))
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
def _chat_from_raw_meta(meta: dict[str, str]) -> ChatProvenance | None:
|
|
261
|
+
source = _optional_text(meta.get("fonte_id"))
|
|
262
|
+
if not source:
|
|
263
|
+
return None
|
|
264
|
+
return ChatProvenance(
|
|
265
|
+
id=source,
|
|
266
|
+
date_created=_optional_text(meta.get("date_created")),
|
|
267
|
+
date_exported=_optional_text(meta.get("exported_at")) or _optional_text(meta.get("date_exported")),
|
|
268
|
+
)
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
def _coverage_deltas(coverage_summary: dict[str, Any] | None, *, title: str) -> dict[str, str]:
|
|
272
|
+
if not coverage_summary:
|
|
273
|
+
return {}
|
|
274
|
+
sources = coverage_summary.get("sources")
|
|
275
|
+
if not isinstance(sources, list):
|
|
276
|
+
return {}
|
|
277
|
+
title_key = normalize_key(title)
|
|
278
|
+
deltas: dict[str, str] = {}
|
|
279
|
+
for source in sources:
|
|
280
|
+
if not isinstance(source, dict):
|
|
281
|
+
continue
|
|
282
|
+
if str(source.get("status") or "") != "covered":
|
|
283
|
+
continue
|
|
284
|
+
source_title = str(source.get("target_title") or "").strip()
|
|
285
|
+
if source_title and normalize_key(source_title) != title_key:
|
|
286
|
+
continue
|
|
287
|
+
raw_file_value = str(source.get("raw_file") or "").strip()
|
|
288
|
+
if not raw_file_value:
|
|
289
|
+
continue
|
|
290
|
+
chat = _chat_from_raw_file(Path(raw_file_value))
|
|
291
|
+
if chat is None:
|
|
292
|
+
continue
|
|
293
|
+
delta = str(source.get("new_information_summary") or "").strip()
|
|
294
|
+
if delta:
|
|
295
|
+
deltas[chat.id] = delta
|
|
296
|
+
return deltas
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
def _unique_paths(paths: list[Path]) -> list[Path]:
|
|
300
|
+
seen: set[str] = set()
|
|
301
|
+
unique: list[Path] = []
|
|
302
|
+
for path in paths:
|
|
303
|
+
key = str(path)
|
|
304
|
+
if key in seen:
|
|
305
|
+
continue
|
|
306
|
+
seen.add(key)
|
|
307
|
+
unique.append(path)
|
|
308
|
+
return unique
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
def _legacy_urls(text: str) -> list[str]:
|
|
312
|
+
seen: set[str] = set()
|
|
313
|
+
urls: list[str] = []
|
|
314
|
+
for match in _CHAT_ORIGINAL_RE.finditer(text):
|
|
315
|
+
url = match.group(1)
|
|
316
|
+
if url not in seen:
|
|
317
|
+
seen.add(url)
|
|
318
|
+
urls.append(url)
|
|
319
|
+
return urls
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
def _chat_id_from_url(url: str) -> str:
|
|
323
|
+
match = _GEMINI_URL_RE.search(url)
|
|
324
|
+
return match.group(1).strip().strip("/") if match else ""
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
def _normalize_chat_id(value: str) -> str:
|
|
328
|
+
value = str(value or "").strip().strip("/")
|
|
329
|
+
match = _GEMINI_URL_RE.search(value)
|
|
330
|
+
return match.group(1).strip().strip("/") if match else value
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
def _chat_url(chat_id: str) -> str:
|
|
334
|
+
return f"https://gemini.google.com/app/{_normalize_chat_id(chat_id)}"
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
def _frontmatter_chats(text: str) -> list[ChatProvenance]:
|
|
338
|
+
data = load_frontmatter_yaml(text)
|
|
339
|
+
value = data.get("chats")
|
|
340
|
+
if value is None:
|
|
341
|
+
return []
|
|
342
|
+
if not isinstance(value, list):
|
|
343
|
+
raise ValueError("chats must be a list of objects")
|
|
344
|
+
chats: list[ChatProvenance] = []
|
|
345
|
+
for index, item in enumerate(value, start=1):
|
|
346
|
+
if not isinstance(item, dict):
|
|
347
|
+
raise ValueError(f"chats item #{index} must be an object")
|
|
348
|
+
chat_id = str(item.get("id") or "").strip()
|
|
349
|
+
if not chat_id:
|
|
350
|
+
raise ValueError(f"chats item #{index} missing id")
|
|
351
|
+
chats.append(
|
|
352
|
+
ChatProvenance(
|
|
353
|
+
id=chat_id,
|
|
354
|
+
date_created=str(item.get("date_created") or "").strip(),
|
|
355
|
+
date_exported=str(item.get("date_exported") or "").strip(),
|
|
356
|
+
)
|
|
357
|
+
)
|
|
358
|
+
return chats
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
def _has_final_consolidated_sources(text: str) -> bool:
|
|
362
|
+
matches = list(_H2_RE.finditer(text))
|
|
363
|
+
if not matches:
|
|
364
|
+
return False
|
|
365
|
+
return matches[-1].group(0).strip() == CONSOLIDATED_SOURCES_HEADING
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
def _has_non_chat_source_provenance(text: str) -> bool:
|
|
369
|
+
data = load_frontmatter_yaml(text)
|
|
370
|
+
if any(_has_value(value) for key, value in data.items() if str(key).strip().lower() in SOURCE_METADATA_KEYS):
|
|
371
|
+
return True
|
|
372
|
+
source_section = _final_consolidated_sources_section(text)
|
|
373
|
+
if not source_section:
|
|
374
|
+
return False
|
|
375
|
+
for match in _MARKDOWN_SOURCE_URL_RE.finditer(source_section):
|
|
376
|
+
if "://gemini.google.com/app/" not in match.group("url"):
|
|
377
|
+
return True
|
|
378
|
+
return False
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
def _has_value(value: object) -> bool:
|
|
382
|
+
if value is None:
|
|
383
|
+
return False
|
|
384
|
+
if isinstance(value, str):
|
|
385
|
+
return bool(value.strip())
|
|
386
|
+
if isinstance(value, (list, tuple, set)):
|
|
387
|
+
return any(_has_value(item) for item in value)
|
|
388
|
+
if isinstance(value, dict):
|
|
389
|
+
return any(_has_value(item) for item in value.values())
|
|
390
|
+
return True
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
def _final_consolidated_sources_section(text: str) -> str:
|
|
394
|
+
matches = list(_H2_RE.finditer(text))
|
|
395
|
+
if not matches:
|
|
396
|
+
return ""
|
|
397
|
+
last = matches[-1]
|
|
398
|
+
if last.group(0).strip() != CONSOLIDATED_SOURCES_HEADING:
|
|
399
|
+
return ""
|
|
400
|
+
return text[last.end() :]
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
def _lookup_chat(chat_lookup: Any, chat_id: str) -> Any:
|
|
404
|
+
if hasattr(chat_lookup, "lookup_chat"):
|
|
405
|
+
return chat_lookup.lookup_chat(chat_id)
|
|
406
|
+
if callable(chat_lookup):
|
|
407
|
+
return chat_lookup(chat_id)
|
|
408
|
+
return None
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
def _enrich_chats(chats: list[ChatProvenance], chat_lookup: Any) -> list[ChatProvenance]:
|
|
412
|
+
enriched: list[ChatProvenance] = []
|
|
413
|
+
for chat in chats:
|
|
414
|
+
meta = _lookup_chat(chat_lookup, chat.id)
|
|
415
|
+
enriched.append(
|
|
416
|
+
ChatProvenance(
|
|
417
|
+
id=chat.id,
|
|
418
|
+
date_created=chat.date_created or str(getattr(meta, "date_created", "") or ""),
|
|
419
|
+
date_exported=chat.date_exported or str(getattr(meta, "date_exported", "") or ""),
|
|
420
|
+
)
|
|
421
|
+
)
|
|
422
|
+
return merge_chat_provenance(enriched)
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
def _chat_to_yaml(chat: ChatProvenance) -> dict[str, str]:
|
|
426
|
+
item = {"id": chat.id}
|
|
427
|
+
if chat.date_created:
|
|
428
|
+
item["date_created"] = chat.date_created
|
|
429
|
+
if chat.date_exported:
|
|
430
|
+
item["date_exported"] = chat.date_exported
|
|
431
|
+
return item
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
def _remove_legacy_footer(body: str) -> str:
|
|
435
|
+
match = _LEGACY_CHAT_FOOTER_RE.search(body)
|
|
436
|
+
if match:
|
|
437
|
+
body = body[: match.start()]
|
|
438
|
+
return body.rstrip() + "\n"
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
def _replace_consolidated_sources(body: str, section: str) -> str:
|
|
442
|
+
without_existing = _CONSOLIDATED_SOURCES_SECTION_RE.sub("", body.rstrip()).rstrip()
|
|
443
|
+
return without_existing + "\n\n" + section
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
def _legacy_consolidated_source_deltas(body: str) -> dict[str, str]:
|
|
447
|
+
deltas: dict[str, str] = {}
|
|
448
|
+
for section in _CONSOLIDATED_SOURCES_SECTION_RE.findall(body):
|
|
449
|
+
for match in _LEGACY_SOURCE_DELTA_RE.finditer(section):
|
|
450
|
+
chat_id = _normalize_chat_id(match.group("chat_id"))
|
|
451
|
+
delta = re.sub(r"\s+", " ", match.group("delta")).strip()
|
|
452
|
+
if chat_id and delta:
|
|
453
|
+
deltas.setdefault(chat_id, delta)
|
|
454
|
+
current_chat_id = ""
|
|
455
|
+
for line in section.splitlines():
|
|
456
|
+
source_match = _SOURCE_LINK_RE.match(line.strip())
|
|
457
|
+
if source_match:
|
|
458
|
+
current_chat_id = _normalize_chat_id(source_match.group("chat_id"))
|
|
459
|
+
continue
|
|
460
|
+
delta_match = _SOURCE_DELTA_RE.match(line)
|
|
461
|
+
if delta_match and current_chat_id:
|
|
462
|
+
delta = re.sub(r"\s+", " ", delta_match.group("delta")).strip()
|
|
463
|
+
if delta:
|
|
464
|
+
deltas.setdefault(current_chat_id, delta)
|
|
465
|
+
return deltas
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
def _render_sources_section(chats: list[ChatProvenance], chat_lookup: Any, deltas: dict[str, str]) -> str:
|
|
469
|
+
lines = [CONSOLIDATED_SOURCES_HEADING]
|
|
470
|
+
for chat in chats:
|
|
471
|
+
meta = _lookup_chat(chat_lookup, chat.id)
|
|
472
|
+
title = str(getattr(meta, "title", "") or f"Chat {chat.id[:8]}")
|
|
473
|
+
url = str(getattr(meta, "url", "") or f"https://gemini.google.com/app/{chat.id}")
|
|
474
|
+
lines.append(f"- [{title}]({url})")
|
|
475
|
+
delta = str(deltas.get(chat.id) or "").strip()
|
|
476
|
+
if delta:
|
|
477
|
+
lines.append(f" - Delta: {delta}")
|
|
478
|
+
return "\n".join(lines).rstrip() + "\n"
|