@ngockhoale/ukit 1.1.6
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/CHANGELOG.md +179 -0
- package/LICENSE +21 -0
- package/README.md +189 -0
- package/bin/ukit +30 -0
- package/manifests/platform.full.yaml +1194 -0
- package/package.json +71 -0
- package/scripts/bug/triage.mjs +37 -0
- package/scripts/index/build-index.mjs +35 -0
- package/scripts/index/query-index.mjs +92 -0
- package/scripts/index/refresh-index.mjs +85 -0
- package/scripts/release/verify-release.mjs +56 -0
- package/src/bug/triageBug.js +123 -0
- package/src/cli/adapters.js +148 -0
- package/src/cli/commands/diff.js +51 -0
- package/src/cli/commands/doctor.js +125 -0
- package/src/cli/commands/indexArgs.js +73 -0
- package/src/cli/commands/indexTools.js +509 -0
- package/src/cli/commands/install.js +293 -0
- package/src/cli/commands/memory.js +126 -0
- package/src/cli/commands/status.js +8 -0
- package/src/cli/commands/uninstall.js +51 -0
- package/src/cli/index.js +109 -0
- package/src/context/detectProjectContext.js +49 -0
- package/src/context/detectProviders.js +12 -0
- package/src/core/applyPlan.js +89 -0
- package/src/core/buildPlan.js +228 -0
- package/src/core/compact/index.js +294 -0
- package/src/core/compact/threshold.js +936 -0
- package/src/core/diffPlan.js +73 -0
- package/src/core/ensureGitignore.js +117 -0
- package/src/core/fileOps.js +188 -0
- package/src/core/memory/hygiene.js +160 -0
- package/src/core/memory/index.js +2 -0
- package/src/core/memory/retrieval.js +476 -0
- package/src/core/memory/store.js +202 -0
- package/src/core/metadata.js +132 -0
- package/src/core/migrateLegacy.js +139 -0
- package/src/core/output/index.js +1309 -0
- package/src/core/paths.js +13 -0
- package/src/core/report.js +17 -0
- package/src/core/router/advisor.js +42 -0
- package/src/core/router/index.js +2 -0
- package/src/core/router/router.js +164 -0
- package/src/core/runInstallPipeline.js +365 -0
- package/src/core/runtimeConfig.js +190 -0
- package/src/core/runtimePaths.js +24 -0
- package/src/core/status.js +186 -0
- package/src/core/token/index.js +328 -0
- package/src/core/uninstall.js +246 -0
- package/src/core/validation/confidence.js +89 -0
- package/src/core/validation/index.js +2 -0
- package/src/core/validation/validator.js +165 -0
- package/src/index/buildIndex.js +1392 -0
- package/src/index/gitHooks.js +109 -0
- package/src/index/importResolution.js +377 -0
- package/src/index/languageTools.js +127 -0
- package/src/index/paths.js +27 -0
- package/src/index/queryIndex.js +637 -0
- package/src/index/relatedTests.js +237 -0
- package/src/index/resolveContext.js +345 -0
- package/src/index/routeCatalog.js +258 -0
- package/src/index/taskRouting.js +677 -0
- package/src/index/verificationPlan.js +437 -0
- package/src/manifest/loadManifest.js +22 -0
- package/src/manifest/selectItems.js +78 -0
- package/src/manifest/validateManifest.js +115 -0
- package/src/render/buildVariables.js +39 -0
- package/src/render/renderTemplate.js +44 -0
- package/src/stack/detectStack.js +213 -0
- package/templates/.claude/agents/bug-debugger.md +57 -0
- package/templates/.claude/agents/feature-implementer.md +55 -0
- package/templates/.claude/config/providers.md +25 -0
- package/templates/.claude/hooks/auto-allow-bash.sh +155 -0
- package/templates/.claude/hooks/auto-prune-bash.sh +75 -0
- package/templates/.claude/hooks/block-dangerous.sh +54 -0
- package/templates/.claude/hooks/compress-output.sh +17 -0
- package/templates/.claude/hooks/protect-files.sh +37 -0
- package/templates/.claude/hooks/reinject-context.sh +28 -0
- package/templates/.claude/hooks/session-start.md +13 -0
- package/templates/.claude/hooks/skill-router.sh +1681 -0
- package/templates/.claude/hooks/verification-guard.sh +271 -0
- package/templates/.claude/settings.json +144 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/mce/mc.xsd +75 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/templates/.claude/skills/_shared/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/templates/.claude/skills/_shared/ooxml/scripts/pack.py +159 -0
- package/templates/.claude/skills/_shared/ooxml/scripts/unpack.py +29 -0
- package/templates/.claude/skills/_shared/ooxml/scripts/validate.py +69 -0
- package/templates/.claude/skills/_shared/ooxml/scripts/validation/__init__.py +15 -0
- package/templates/.claude/skills/_shared/ooxml/scripts/validation/base.py +951 -0
- package/templates/.claude/skills/_shared/ooxml/scripts/validation/docx.py +274 -0
- package/templates/.claude/skills/_shared/ooxml/scripts/validation/pptx.py +315 -0
- package/templates/.claude/skills/_shared/ooxml/scripts/validation/redlining.py +279 -0
- package/templates/.claude/skills/backend-api/SKILL.md +26 -0
- package/templates/.claude/skills/canvas-design/LICENSE.txt +202 -0
- package/templates/.claude/skills/canvas-design/SKILL.md +130 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/InstrumentSans-OFL.txt +93 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Lora-Bold.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Lora-Italic.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Lora-OFL.txt +93 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Lora-Regular.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Outfit-Bold.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Outfit-OFL.txt +93 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Outfit-Regular.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Tektur-Medium.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Tektur-OFL.txt +93 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/Tektur-Regular.ttf +0 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/YoungSerif-OFL.txt +93 -0
- package/templates/.claude/skills/canvas-design/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- package/templates/.claude/skills/code-review/SKILL.md +97 -0
- package/templates/.claude/skills/debugging-toolkit/SKILL.md +156 -0
- package/templates/.claude/skills/delivery/SKILL.md +92 -0
- package/templates/.claude/skills/discover-security/SKILL.md +86 -0
- package/templates/.claude/skills/docker-packaging/SKILL.md +60 -0
- package/templates/.claude/skills/docs-manager/SKILL.md +465 -0
- package/templates/.claude/skills/docs-manager/init-project-docs.sh +70 -0
- package/templates/.claude/skills/docs-manager/templates/README.md.template +50 -0
- package/templates/.claude/skills/docs-manager/templates/agent-roles.md.template +24 -0
- package/templates/.claude/skills/docs-manager/templates/coding-conventions.md.template +28 -0
- package/templates/.claude/skills/docs-manager/templates/memory.md.template +30 -0
- package/templates/.claude/skills/docs-manager/templates/onboarding.md.template +20 -0
- package/templates/.claude/skills/docs-manager/templates/project.md.template +26 -0
- package/templates/.claude/skills/docs-quality/SKILL.md +148 -0
- package/templates/.claude/skills/docx/LICENSE.txt +30 -0
- package/templates/.claude/skills/docx/SKILL.md +197 -0
- package/templates/.claude/skills/docx/docx-js.md +350 -0
- package/templates/.claude/skills/docx/ooxml.md +610 -0
- package/templates/.claude/skills/docx/scripts/__init__.py +1 -0
- package/templates/.claude/skills/docx/scripts/document.py +1276 -0
- package/templates/.claude/skills/docx/scripts/templates/comments.xml +3 -0
- package/templates/.claude/skills/docx/scripts/templates/commentsExtended.xml +3 -0
- package/templates/.claude/skills/docx/scripts/templates/commentsExtensible.xml +3 -0
- package/templates/.claude/skills/docx/scripts/templates/commentsIds.xml +3 -0
- package/templates/.claude/skills/docx/scripts/templates/people.xml +3 -0
- package/templates/.claude/skills/docx/scripts/utilities.py +374 -0
- package/templates/.claude/skills/duraone/SKILL.md +204 -0
- package/templates/.claude/skills/duraone/references/backend.md +636 -0
- package/templates/.claude/skills/duraone/references/frontend.md +1506 -0
- package/templates/.claude/skills/duraone/references/sql.md +631 -0
- package/templates/.claude/skills/duraone/references/workflow.md +520 -0
- package/templates/.claude/skills/executing-plans/SKILL.md +76 -0
- package/templates/.claude/skills/file-organizer/SKILL.md +433 -0
- package/templates/.claude/skills/frontend/SKILL.md +26 -0
- package/templates/.claude/skills/frontend-design/LICENSE.txt +177 -0
- package/templates/.claude/skills/frontend-design/SKILL.md +42 -0
- package/templates/.claude/skills/frontend-vue/SKILL.md +127 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Box.vue +137 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Button.vue +93 -0
- package/templates/.claude/skills/frontend-vue/components/Control/ButtonBar.vue +29 -0
- package/templates/.claude/skills/frontend-vue/components/Control/ButtonFloat.vue +62 -0
- package/templates/.claude/skills/frontend-vue/components/Control/CheckButton.vue +75 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Checkbox.vue +58 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Datetime.vue +148 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Dropdownlist.vue +156 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Input.vue +106 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Label.vue +38 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Master/BoxColumn.vue +24 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Popup/Confirm.vue +33 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Popup/Info.vue +32 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Popup/ModalInfo.vue +39 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Popup/Reject.vue +64 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Tag.vue +82 -0
- package/templates/.claude/skills/frontend-vue/components/Control/Upload.vue +61 -0
- package/templates/.claude/skills/frontend-vue/components/ControlMobile/Dropdownlist.vue +103 -0
- package/templates/.claude/skills/frontend-vue/components/ControlMobile/PagingBar.vue +108 -0
- package/templates/.claude/skills/frontend-vue/components/ControlMobile/UploadImage.vue +137 -0
- package/templates/.claude/skills/frontend-vue/components/Grid/AG.vue +806 -0
- package/templates/.claude/skills/frontend-vue/components/Grid/AntTable.vue +253 -0
- package/templates/.claude/skills/frontend-vue/components/Grid/CustomDropdownEditor.vue +43 -0
- package/templates/.claude/skills/frontend-vue/components/Grid/CustomDropdownEditorEnable.vue +55 -0
- package/templates/.claude/skills/frontend-vue/components/Grid/HtmlTable.vue +40 -0
- package/templates/.claude/skills/frontend-vue/components/PDFViewer.vue +25 -0
- package/templates/.claude/skills/frontend-vue/components/Panel/FormView.vue +309 -0
- package/templates/.claude/skills/frontend-vue/components/Partial/Footer.vue +23 -0
- package/templates/.claude/skills/frontend-vue/components/Partial/Header.vue +265 -0
- package/templates/.claude/skills/frontend-vue/components/Partial/Sidebar.vue +122 -0
- package/templates/.claude/skills/frontend-vue/components/Template.vue +16 -0
- package/templates/.claude/skills/frontend-vue/components/View/Form.vue +89 -0
- package/templates/.claude/skills/frontend-vue/composables/indexDBStore.js +140 -0
- package/templates/.claude/skills/frontend-vue/composables/masterApi.js +362 -0
- package/templates/.claude/skills/frontend-vue/composables/state.js +578 -0
- package/templates/.claude/skills/frontend-vue/composables/useRequest.js +221 -0
- package/templates/.claude/skills/frontend-vue/composables/useSession.js +179 -0
- package/templates/.claude/skills/frontend-vue/composables/useTranslation.js +54 -0
- package/templates/.claude/skills/frontend-vue/composables/useWebSocket.js +257 -0
- package/templates/.claude/skills/frontend-vue/composables/userObj.js +111 -0
- package/templates/.claude/skills/frontend-vue/composables/utils.js +322 -0
- package/templates/.claude/skills/frontend-vue/reference/composables-example.vue +320 -0
- package/templates/.claude/skills/frontend-vue/reference/form-example.vue +183 -0
- package/templates/.claude/skills/frontend-vue/reference/grid-example.vue +147 -0
- package/templates/.claude/skills/frontend-vue/reference/masterdata-example/[id].vue +106 -0
- package/templates/.claude/skills/frontend-vue/reference/masterdata-example/index.vue +58 -0
- package/templates/.claude/skills/frontend-vue/reference/popup-example.vue +159 -0
- package/templates/.claude/skills/pdf/LICENSE.txt +30 -0
- package/templates/.claude/skills/pdf/SKILL.md +294 -0
- package/templates/.claude/skills/pdf/forms.md +205 -0
- package/templates/.claude/skills/pdf/reference.md +612 -0
- package/templates/.claude/skills/pdf/scripts/check_bounding_boxes.py +70 -0
- package/templates/.claude/skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
- package/templates/.claude/skills/pdf/scripts/check_fillable_fields.py +12 -0
- package/templates/.claude/skills/pdf/scripts/convert_pdf_to_images.py +35 -0
- package/templates/.claude/skills/pdf/scripts/create_validation_image.py +41 -0
- package/templates/.claude/skills/pdf/scripts/extract_form_field_info.py +152 -0
- package/templates/.claude/skills/pdf/scripts/fill_fillable_fields.py +114 -0
- package/templates/.claude/skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
- package/templates/.claude/skills/pdf-processing/SKILL.md +107 -0
- package/templates/.claude/skills/pdf-processing-pro/FORMS.md +610 -0
- package/templates/.claude/skills/pdf-processing-pro/OCR.md +137 -0
- package/templates/.claude/skills/pdf-processing-pro/SKILL.md +296 -0
- package/templates/.claude/skills/pdf-processing-pro/TABLES.md +626 -0
- package/templates/.claude/skills/pdf-processing-pro/scripts/analyze_form.py +307 -0
- package/templates/.claude/skills/postgres/SKILL.md +69 -0
- package/templates/.claude/skills/postgres/reference/fn_get_examples.sql +208 -0
- package/templates/.claude/skills/postgres/reference/fn_rpt_examples.sql +239 -0
- package/templates/.claude/skills/postgres/reference/utility_functions.sql +94 -0
- package/templates/.claude/skills/pptx/LICENSE.txt +30 -0
- package/templates/.claude/skills/pptx/SKILL.md +484 -0
- package/templates/.claude/skills/pptx/html2pptx.md +625 -0
- package/templates/.claude/skills/pptx/ooxml.md +427 -0
- package/templates/.claude/skills/pptx/scripts/html2pptx.js +979 -0
- package/templates/.claude/skills/pptx/scripts/inventory.py +1020 -0
- package/templates/.claude/skills/pptx/scripts/rearrange.py +231 -0
- package/templates/.claude/skills/pptx/scripts/replace.py +385 -0
- package/templates/.claude/skills/pptx/scripts/thumbnail.py +450 -0
- package/templates/.claude/skills/repo-maintenance/SKILL.md +97 -0
- package/templates/.claude/skills/research/EXAMPLES.md +434 -0
- package/templates/.claude/skills/research/REFERENCE.md +399 -0
- package/templates/.claude/skills/research/SKILL.md +136 -0
- package/templates/.claude/skills/root-cause-tracing/SKILL.md +174 -0
- package/templates/.claude/skills/root-cause-tracing/find-polluter.sh +63 -0
- package/templates/.claude/skills/sharing-skills/SKILL.md +194 -0
- package/templates/.claude/skills/sql-optimization-patterns/SKILL.md +493 -0
- package/templates/.claude/skills/subagent-driven-development/SKILL.md +189 -0
- package/templates/.claude/skills/systematic-debugging/CREATION-LOG.md +119 -0
- package/templates/.claude/skills/systematic-debugging/SKILL.md +295 -0
- package/templates/.claude/skills/systematic-debugging/test-academic.md +14 -0
- package/templates/.claude/skills/systematic-debugging/test-pressure-1.md +58 -0
- package/templates/.claude/skills/systematic-debugging/test-pressure-2.md +68 -0
- package/templates/.claude/skills/systematic-debugging/test-pressure-3.md +69 -0
- package/templates/.claude/skills/test-driven-development/SKILL.md +364 -0
- package/templates/.claude/skills/testing-anti-patterns/SKILL.md +302 -0
- package/templates/.claude/skills/testing-quality/SKILL.md +97 -0
- package/templates/.claude/skills/verification-before-completion/SKILL.md +139 -0
- package/templates/.claude/skills/webapp-testing/LICENSE.txt +202 -0
- package/templates/.claude/skills/webapp-testing/SKILL.md +96 -0
- package/templates/.claude/skills/webapp-testing/examples/console_logging.py +35 -0
- package/templates/.claude/skills/webapp-testing/examples/element_discovery.py +40 -0
- package/templates/.claude/skills/webapp-testing/examples/static_html_automation.py +33 -0
- package/templates/.claude/skills/webapp-testing/scripts/with_server.py +106 -0
- package/templates/.claude/ukit/index/build-index.mjs +28 -0
- package/templates/.claude/ukit/index/cache-utils.mjs +140 -0
- package/templates/.claude/ukit/index/lib/index-core.mjs +2800 -0
- package/templates/.claude/ukit/index/query-index.mjs +150 -0
- package/templates/.claude/ukit/index/refresh-index.mjs +57 -0
- package/templates/.claude/ukit/index/reset-auto-permissions.mjs +76 -0
- package/templates/.claude/ukit/index/resolve-context.mjs +279 -0
- package/templates/.claude/ukit/index/route-catalog.mjs +258 -0
- package/templates/.claude/ukit/index/route-task.mjs +1994 -0
- package/templates/.claude/ukit/index/triage.mjs +133 -0
- package/templates/.claude/ukit/index/verify-context.mjs +689 -0
- package/templates/.claude/ukit/runtime/compact-threshold.mjs +1013 -0
- package/templates/.claude/ukit/runtime/output-compression.mjs +1340 -0
- package/templates/.claude/ukit/runtime/reinject-context.mjs +874 -0
- package/templates/.claude/ukit/runtime/token-utils.mjs +500 -0
- package/templates/.codex/README.md +83 -0
- package/templates/.codex/settings.json +187 -0
- package/templates/.gitignore +75 -0
- package/templates/AGENTS.md +116 -0
- package/templates/CLAUDE.md +93 -0
- package/templates/adapter-presets/antigravity/README.md +22 -0
- package/templates/adapter-presets/antigravity/rules.md +49 -0
- package/templates/adapter-presets/claude/settings.local.json +42 -0
- package/templates/adapter-presets/codex/settings.local.json +6 -0
- package/templates/adapter-presets/opencode/opencode.template.json +1 -0
- package/templates/docs/BUGFIX.md +20 -0
- package/templates/docs/BUG_INDEX.md +12 -0
- package/templates/docs/BUG_METRICS.md +7 -0
- package/templates/docs/BUG_TEMPLATE.md +13 -0
- package/templates/docs/CODE_MAP.md +35 -0
- package/templates/docs/INSTALL.md +113 -0
- package/templates/docs/MEMORY.md +49 -0
- package/templates/docs/PROJECT.md +50 -0
- package/templates/docs/UKIT_USAGE_GUIDE.md +147 -0
- package/templates/docs/WORKLOG.md +10 -0
- package/templates/ukit/README.md +14 -0
- package/templates/ukit/storage/cache/compact-history.json +3 -0
- package/templates/ukit/storage/cache/compact-pressure.json +1 -0
- package/templates/ukit/storage/cache/output-history.json +3 -0
- package/templates/ukit/storage/cache/prompt-cache.json +3 -0
- package/templates/ukit/storage/config.json +37 -0
- package/templates/ukit/storage/memory/projects/.gitkeep +2 -0
- package/templates/ukit/storage/memory/sessions/.gitkeep +0 -0
- package/templates/ukit/storage/memory/user.json +5 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# {{PROJECT_NAME}}
|
|
2
|
+
|
|
3
|
+
## 🎯 Mission
|
|
4
|
+
[Mục tiêu chính của project]
|
|
5
|
+
|
|
6
|
+
## 🏗️ Tech Stack
|
|
7
|
+
- **Backend**:
|
|
8
|
+
- **Database**:
|
|
9
|
+
- **Frontend**:
|
|
10
|
+
- **Infrastructure**:
|
|
11
|
+
- **AI/Tools**:
|
|
12
|
+
|
|
13
|
+
## 📋 Status
|
|
14
|
+
- [ ] Setup
|
|
15
|
+
- [ ] Core features
|
|
16
|
+
- [ ] Testing
|
|
17
|
+
- [ ] Deployment
|
|
18
|
+
|
|
19
|
+
## 🎯 Milestones
|
|
20
|
+
1.
|
|
21
|
+
2.
|
|
22
|
+
3.
|
|
23
|
+
|
|
24
|
+
## 🔗 Resources
|
|
25
|
+
- Repo:
|
|
26
|
+
- Docs:
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: docs-quality
|
|
3
|
+
description: Project-local documentation quality workflow for README/docs updates, source-vs-doc drift cleanup, durable handoff notes, and keeping PROJECT/MEMORY/WORKLOG/CODE_MAP aligned with real code. Use when documentation must stay useful, current, and grounded in source.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Docs Quality
|
|
7
|
+
|
|
8
|
+
## Overview
|
|
9
|
+
|
|
10
|
+
Documentation should help the next AI or teammate act faster, not create a second fake codebase.
|
|
11
|
+
|
|
12
|
+
**Core rule:** source code is truth, and the code index is the fastest map to that truth.
|
|
13
|
+
|
|
14
|
+
Use this skill to keep project docs:
|
|
15
|
+
- aligned with real source
|
|
16
|
+
- concise and durable
|
|
17
|
+
- useful for future sessions
|
|
18
|
+
- consistent with UKit's install-first workflow
|
|
19
|
+
|
|
20
|
+
## First Principles
|
|
21
|
+
|
|
22
|
+
### 1. Source + index before prose
|
|
23
|
+
|
|
24
|
+
Before updating docs:
|
|
25
|
+
- verify the current behavior in source
|
|
26
|
+
- use the project index to find the right files/modules quickly
|
|
27
|
+
- do not preserve stale statements just because they were already written
|
|
28
|
+
|
|
29
|
+
If docs and source disagree:
|
|
30
|
+
- **source wins**
|
|
31
|
+
- update or remove the stale doc text immediately
|
|
32
|
+
|
|
33
|
+
### 2. Human workflow stays simple
|
|
34
|
+
|
|
35
|
+
For normal teammates, do **not** turn docs into a list of UKit subcommands.
|
|
36
|
+
|
|
37
|
+
The remembered command is still:
|
|
38
|
+
|
|
39
|
+
> `ukit install`
|
|
40
|
+
|
|
41
|
+
If a repo needs refresh/setup repair, default human guidance is:
|
|
42
|
+
- rerun `ukit install`
|
|
43
|
+
|
|
44
|
+
Maintainer-only index/debug commands may exist, but they should stay behind the scenes.
|
|
45
|
+
|
|
46
|
+
### 3. Durable notes only
|
|
47
|
+
|
|
48
|
+
Docs should capture:
|
|
49
|
+
- architecture that matters
|
|
50
|
+
- constraints AI must not violate
|
|
51
|
+
- bug patterns/root causes worth remembering
|
|
52
|
+
- navigation paths that save future time
|
|
53
|
+
|
|
54
|
+
Docs should **not** become:
|
|
55
|
+
- a raw session dump
|
|
56
|
+
- speculative TODO spam
|
|
57
|
+
- duplicated code comments
|
|
58
|
+
- contradictory layers of old and new instructions
|
|
59
|
+
|
|
60
|
+
## Use This Skill For
|
|
61
|
+
|
|
62
|
+
- update README / docs after code changes
|
|
63
|
+
- fix source-vs-doc drift
|
|
64
|
+
- improve `docs/PROJECT.md`, `docs/MEMORY.md`, `docs/WORKLOG.md`, `docs/CODE_MAP.md`
|
|
65
|
+
- prepare durable handoff notes
|
|
66
|
+
- tighten or remove stale setup instructions
|
|
67
|
+
- document newly discovered module boundaries, dangerous areas, or bug patterns
|
|
68
|
+
|
|
69
|
+
## Update Order
|
|
70
|
+
|
|
71
|
+
### 1. Reconfirm the truth from source
|
|
72
|
+
|
|
73
|
+
For non-trivial docs work:
|
|
74
|
+
- open the primary source files first
|
|
75
|
+
- open 1-2 related files/tests if wording depends on shared behavior
|
|
76
|
+
- if AI navigation matters, confirm index artifacts are current before writing summaries
|
|
77
|
+
|
|
78
|
+
### 2. Update only the right document
|
|
79
|
+
|
|
80
|
+
#### `docs/PROJECT.md`
|
|
81
|
+
Use for:
|
|
82
|
+
- architecture overview
|
|
83
|
+
- key modules
|
|
84
|
+
- data flow
|
|
85
|
+
- business/domain constraints
|
|
86
|
+
- dangerous areas
|
|
87
|
+
|
|
88
|
+
Do **not** put session chatter here.
|
|
89
|
+
|
|
90
|
+
#### `docs/MEMORY.md`
|
|
91
|
+
Use for durable knowledge:
|
|
92
|
+
- architecture decisions
|
|
93
|
+
- active constraints
|
|
94
|
+
- known bugs + root causes
|
|
95
|
+
- open risks
|
|
96
|
+
- milestones
|
|
97
|
+
|
|
98
|
+
Prefer short entries that future sessions can scan in seconds.
|
|
99
|
+
|
|
100
|
+
#### `docs/WORKLOG.md`
|
|
101
|
+
Use for session-level execution history:
|
|
102
|
+
- what changed
|
|
103
|
+
- which files changed
|
|
104
|
+
- what verification ran
|
|
105
|
+
- outcome/blockers
|
|
106
|
+
|
|
107
|
+
Keep it factual and compact.
|
|
108
|
+
|
|
109
|
+
#### `docs/CODE_MAP.md`
|
|
110
|
+
Use for navigation:
|
|
111
|
+
- module ownership
|
|
112
|
+
- important files to open first
|
|
113
|
+
- data flow hotspots
|
|
114
|
+
- test coverage notes
|
|
115
|
+
- dangerous/fragile areas
|
|
116
|
+
|
|
117
|
+
This is especially valuable because fast AI navigation depends on finding the right files early.
|
|
118
|
+
|
|
119
|
+
### 3. Remove drift, do not stack drift
|
|
120
|
+
|
|
121
|
+
When a statement is outdated:
|
|
122
|
+
- replace it if the concept still matters
|
|
123
|
+
- delete it if it no longer helps
|
|
124
|
+
|
|
125
|
+
Do not leave both old and new guidance in place.
|
|
126
|
+
|
|
127
|
+
## UKit-Specific Guidance
|
|
128
|
+
|
|
129
|
+
When updating docs for **UKit itself**:
|
|
130
|
+
- keep reinforcing that teams should only need `ukit install`
|
|
131
|
+
- keep index/source-code navigation as a first-class capability
|
|
132
|
+
- absorb maintainer complexity into UKit instead of teaching more commands to contributors
|
|
133
|
+
- document install/refresh behavior from the teammate perspective, not maintainer internals first
|
|
134
|
+
|
|
135
|
+
## Pairing Guidance
|
|
136
|
+
|
|
137
|
+
- For stale workspace / reinstall / cleanup issues → pair with `.claude/skills/repo-maintenance/SKILL.md`
|
|
138
|
+
- For correctness review of doc-backed claims → pair with `.claude/skills/code-review/SKILL.md`
|
|
139
|
+
- For implementation work that changed behavior → pair with `.claude/skills/delivery/SKILL.md`
|
|
140
|
+
|
|
141
|
+
## Rules
|
|
142
|
+
|
|
143
|
+
- source is always truth
|
|
144
|
+
- index-backed file discovery matters for doc quality
|
|
145
|
+
- prefer the smallest accurate doc delta
|
|
146
|
+
- name concrete files/modules when useful
|
|
147
|
+
- record durable knowledge, not temporary noise
|
|
148
|
+
- if a code change affects behavior, setup, or navigation, update docs in the same task
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
© 2025 Anthropic, PBC. All rights reserved.
|
|
2
|
+
|
|
3
|
+
LICENSE: Use of these materials (including all code, prompts, assets, files,
|
|
4
|
+
and other components of this Skill) is governed by your agreement with
|
|
5
|
+
Anthropic regarding use of Anthropic's services. If no separate agreement
|
|
6
|
+
exists, use is governed by Anthropic's Consumer Terms of Service or
|
|
7
|
+
Commercial Terms of Service, as applicable:
|
|
8
|
+
https://www.anthropic.com/legal/consumer-terms
|
|
9
|
+
https://www.anthropic.com/legal/commercial-terms
|
|
10
|
+
Your applicable agreement is referred to as the "Agreement." "Services" are
|
|
11
|
+
as defined in the Agreement.
|
|
12
|
+
|
|
13
|
+
ADDITIONAL RESTRICTIONS: Notwithstanding anything in the Agreement to the
|
|
14
|
+
contrary, users may not:
|
|
15
|
+
|
|
16
|
+
- Extract these materials from the Services or retain copies of these
|
|
17
|
+
materials outside the Services
|
|
18
|
+
- Reproduce or copy these materials, except for temporary copies created
|
|
19
|
+
automatically during authorized use of the Services
|
|
20
|
+
- Create derivative works based on these materials
|
|
21
|
+
- Distribute, sublicense, or transfer these materials to any third party
|
|
22
|
+
- Make, offer to sell, sell, or import any inventions embodied in these
|
|
23
|
+
materials
|
|
24
|
+
- Reverse engineer, decompile, or disassemble these materials
|
|
25
|
+
|
|
26
|
+
The receipt, viewing, or possession of these materials does not convey or
|
|
27
|
+
imply any license or right beyond those expressly granted above.
|
|
28
|
+
|
|
29
|
+
Anthropic retains all right, title, and interest in these materials,
|
|
30
|
+
including all copyrights, patents, and other intellectual property rights.
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: docx
|
|
3
|
+
description: "Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks"
|
|
4
|
+
license: Proprietary. LICENSE.txt has complete terms
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# DOCX creation, editing, and analysis
|
|
8
|
+
|
|
9
|
+
## Overview
|
|
10
|
+
|
|
11
|
+
A user may ask you to create, edit, or analyze the contents of a .docx file. A .docx file is essentially a ZIP archive containing XML files and other resources that you can read or edit. You have different tools and workflows available for different tasks.
|
|
12
|
+
|
|
13
|
+
## Workflow Decision Tree
|
|
14
|
+
|
|
15
|
+
### Reading/Analyzing Content
|
|
16
|
+
Use "Text extraction" or "Raw XML access" sections below
|
|
17
|
+
|
|
18
|
+
### Creating New Document
|
|
19
|
+
Use "Creating a new Word document" workflow
|
|
20
|
+
|
|
21
|
+
### Editing Existing Document
|
|
22
|
+
- **Your own document + simple changes**
|
|
23
|
+
Use "Basic OOXML editing" workflow
|
|
24
|
+
|
|
25
|
+
- **Someone else's document**
|
|
26
|
+
Use **"Redlining workflow"** (recommended default)
|
|
27
|
+
|
|
28
|
+
- **Legal, academic, business, or government docs**
|
|
29
|
+
Use **"Redlining workflow"** (required)
|
|
30
|
+
|
|
31
|
+
## Reading and analyzing content
|
|
32
|
+
|
|
33
|
+
### Text extraction
|
|
34
|
+
If you just need to read the text contents of a document, you should convert the document to markdown using pandoc. Pandoc provides excellent support for preserving document structure and can show tracked changes:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
# Convert document to markdown with tracked changes
|
|
38
|
+
pandoc --track-changes=all path-to-file.docx -o output.md
|
|
39
|
+
# Options: --track-changes=accept/reject/all
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### Raw XML access
|
|
43
|
+
You need raw XML access for: comments, complex formatting, document structure, embedded media, and metadata. For any of these features, you'll need to unpack a document and read its raw XML contents.
|
|
44
|
+
|
|
45
|
+
#### Unpacking a file
|
|
46
|
+
`python ooxml/scripts/unpack.py <office_file> <output_directory>`
|
|
47
|
+
|
|
48
|
+
#### Key file structures
|
|
49
|
+
* `word/document.xml` - Main document contents
|
|
50
|
+
* `word/comments.xml` - Comments referenced in document.xml
|
|
51
|
+
* `word/media/` - Embedded images and media files
|
|
52
|
+
* Tracked changes use `<w:ins>` (insertions) and `<w:del>` (deletions) tags
|
|
53
|
+
|
|
54
|
+
## Creating a new Word document
|
|
55
|
+
|
|
56
|
+
When creating a new Word document from scratch, use **docx-js**, which allows you to create Word documents using JavaScript/TypeScript.
|
|
57
|
+
|
|
58
|
+
### Workflow
|
|
59
|
+
1. **MANDATORY - READ ENTIRE FILE**: Read [`docx-js.md`](docx-js.md) (~500 lines) completely from start to finish. **NEVER set any range limits when reading this file.** Read the full file content for detailed syntax, critical formatting rules, and best practices before proceeding with document creation.
|
|
60
|
+
2. Create a JavaScript/TypeScript file using Document, Paragraph, TextRun components (You can assume all dependencies are installed, but if not, refer to the dependencies section below)
|
|
61
|
+
3. Export as .docx using Packer.toBuffer()
|
|
62
|
+
|
|
63
|
+
## Editing an existing Word document
|
|
64
|
+
|
|
65
|
+
When editing an existing Word document, use the **Document library** (a Python library for OOXML manipulation). The library automatically handles infrastructure setup and provides methods for document manipulation. For complex scenarios, you can access the underlying DOM directly through the library.
|
|
66
|
+
|
|
67
|
+
### Workflow
|
|
68
|
+
1. **MANDATORY - READ ENTIRE FILE**: Read [`ooxml.md`](ooxml.md) (~600 lines) completely from start to finish. **NEVER set any range limits when reading this file.** Read the full file content for the Document library API and XML patterns for directly editing document files.
|
|
69
|
+
2. Unpack the document: `python ooxml/scripts/unpack.py <office_file> <output_directory>`
|
|
70
|
+
3. Create and run a Python script using the Document library (see "Document Library" section in ooxml.md)
|
|
71
|
+
4. Pack the final document: `python ooxml/scripts/pack.py <input_directory> <office_file>`
|
|
72
|
+
|
|
73
|
+
The Document library provides both high-level methods for common operations and direct DOM access for complex scenarios.
|
|
74
|
+
|
|
75
|
+
## Redlining workflow for document review
|
|
76
|
+
|
|
77
|
+
This workflow allows you to plan comprehensive tracked changes using markdown before implementing them in OOXML. **CRITICAL**: For complete tracked changes, you must implement ALL changes systematically.
|
|
78
|
+
|
|
79
|
+
**Batching Strategy**: Group related changes into batches of 3-10 changes. This makes debugging manageable while maintaining efficiency. Test each batch before moving to the next.
|
|
80
|
+
|
|
81
|
+
**Principle: Minimal, Precise Edits**
|
|
82
|
+
When implementing tracked changes, only mark text that actually changes. Repeating unchanged text makes edits harder to review and appears unprofessional. Break replacements into: [unchanged text] + [deletion] + [insertion] + [unchanged text]. Preserve the original run's RSID for unchanged text by extracting the `<w:r>` element from the original and reusing it.
|
|
83
|
+
|
|
84
|
+
Example - Changing "30 days" to "60 days" in a sentence:
|
|
85
|
+
```python
|
|
86
|
+
# BAD - Replaces entire sentence
|
|
87
|
+
'<w:del><w:r><w:delText>The term is 30 days.</w:delText></w:r></w:del><w:ins><w:r><w:t>The term is 60 days.</w:t></w:r></w:ins>'
|
|
88
|
+
|
|
89
|
+
# GOOD - Only marks what changed, preserves original <w:r> for unchanged text
|
|
90
|
+
'<w:r w:rsidR="00AB12CD"><w:t>The term is </w:t></w:r><w:del><w:r><w:delText>30</w:delText></w:r></w:del><w:ins><w:r><w:t>60</w:t></w:r></w:ins><w:r w:rsidR="00AB12CD"><w:t> days.</w:t></w:r>'
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
### Tracked changes workflow
|
|
94
|
+
|
|
95
|
+
1. **Get markdown representation**: Convert document to markdown with tracked changes preserved:
|
|
96
|
+
```bash
|
|
97
|
+
pandoc --track-changes=all path-to-file.docx -o current.md
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
2. **Identify and group changes**: Review the document and identify ALL changes needed, organizing them into logical batches:
|
|
101
|
+
|
|
102
|
+
**Location methods** (for finding changes in XML):
|
|
103
|
+
- Section/heading numbers (e.g., "Section 3.2", "Article IV")
|
|
104
|
+
- Paragraph identifiers if numbered
|
|
105
|
+
- Grep patterns with unique surrounding text
|
|
106
|
+
- Document structure (e.g., "first paragraph", "signature block")
|
|
107
|
+
- **DO NOT use markdown line numbers** - they don't map to XML structure
|
|
108
|
+
|
|
109
|
+
**Batch organization** (group 3-10 related changes per batch):
|
|
110
|
+
- By section: "Batch 1: Section 2 amendments", "Batch 2: Section 5 updates"
|
|
111
|
+
- By type: "Batch 1: Date corrections", "Batch 2: Party name changes"
|
|
112
|
+
- By complexity: Start with simple text replacements, then tackle complex structural changes
|
|
113
|
+
- Sequential: "Batch 1: Pages 1-3", "Batch 2: Pages 4-6"
|
|
114
|
+
|
|
115
|
+
3. **Read documentation and unpack**:
|
|
116
|
+
- **MANDATORY - READ ENTIRE FILE**: Read [`ooxml.md`](ooxml.md) (~600 lines) completely from start to finish. **NEVER set any range limits when reading this file.** Pay special attention to the "Document Library" and "Tracked Change Patterns" sections.
|
|
117
|
+
- **Unpack the document**: `python ooxml/scripts/unpack.py <file.docx> <dir>`
|
|
118
|
+
- **Note the suggested RSID**: The unpack script will suggest an RSID to use for your tracked changes. Copy this RSID for use in step 4b.
|
|
119
|
+
|
|
120
|
+
4. **Implement changes in batches**: Group changes logically (by section, by type, or by proximity) and implement them together in a single script. This approach:
|
|
121
|
+
- Makes debugging easier (smaller batch = easier to isolate errors)
|
|
122
|
+
- Allows incremental progress
|
|
123
|
+
- Maintains efficiency (batch size of 3-10 changes works well)
|
|
124
|
+
|
|
125
|
+
**Suggested batch groupings:**
|
|
126
|
+
- By document section (e.g., "Section 3 changes", "Definitions", "Termination clause")
|
|
127
|
+
- By change type (e.g., "Date changes", "Party name updates", "Legal term replacements")
|
|
128
|
+
- By proximity (e.g., "Changes on pages 1-3", "Changes in first half of document")
|
|
129
|
+
|
|
130
|
+
For each batch of related changes:
|
|
131
|
+
|
|
132
|
+
**a. Map text to XML**: Grep for text in `word/document.xml` to verify how text is split across `<w:r>` elements.
|
|
133
|
+
|
|
134
|
+
**b. Create and run script**: Use `get_node` to find nodes, implement changes, then `doc.save()`. See **"Document Library"** section in ooxml.md for patterns.
|
|
135
|
+
|
|
136
|
+
**Note**: Always grep `word/document.xml` immediately before writing a script to get current line numbers and verify text content. Line numbers change after each script run.
|
|
137
|
+
|
|
138
|
+
5. **Pack the document**: After all batches are complete, convert the unpacked directory back to .docx:
|
|
139
|
+
```bash
|
|
140
|
+
python ooxml/scripts/pack.py unpacked reviewed-document.docx
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
6. **Final verification**: Do a comprehensive check of the complete document:
|
|
144
|
+
- Convert final document to markdown:
|
|
145
|
+
```bash
|
|
146
|
+
pandoc --track-changes=all reviewed-document.docx -o verification.md
|
|
147
|
+
```
|
|
148
|
+
- Verify ALL changes were applied correctly:
|
|
149
|
+
```bash
|
|
150
|
+
grep "original phrase" verification.md # Should NOT find it
|
|
151
|
+
grep "replacement phrase" verification.md # Should find it
|
|
152
|
+
```
|
|
153
|
+
- Check that no unintended changes were introduced
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
## Converting Documents to Images
|
|
157
|
+
|
|
158
|
+
To visually analyze Word documents, convert them to images using a two-step process:
|
|
159
|
+
|
|
160
|
+
1. **Convert DOCX to PDF**:
|
|
161
|
+
```bash
|
|
162
|
+
soffice --headless --convert-to pdf document.docx
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
2. **Convert PDF pages to JPEG images**:
|
|
166
|
+
```bash
|
|
167
|
+
pdftoppm -jpeg -r 150 document.pdf page
|
|
168
|
+
```
|
|
169
|
+
This creates files like `page-1.jpg`, `page-2.jpg`, etc.
|
|
170
|
+
|
|
171
|
+
Options:
|
|
172
|
+
- `-r 150`: Sets resolution to 150 DPI (adjust for quality/size balance)
|
|
173
|
+
- `-jpeg`: Output JPEG format (use `-png` for PNG if preferred)
|
|
174
|
+
- `-f N`: First page to convert (e.g., `-f 2` starts from page 2)
|
|
175
|
+
- `-l N`: Last page to convert (e.g., `-l 5` stops at page 5)
|
|
176
|
+
- `page`: Prefix for output files
|
|
177
|
+
|
|
178
|
+
Example for specific range:
|
|
179
|
+
```bash
|
|
180
|
+
pdftoppm -jpeg -r 150 -f 2 -l 5 document.pdf page # Converts only pages 2-5
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
## Code Style Guidelines
|
|
184
|
+
**IMPORTANT**: When generating code for DOCX operations:
|
|
185
|
+
- Write concise code
|
|
186
|
+
- Avoid verbose variable names and redundant operations
|
|
187
|
+
- Avoid unnecessary print statements
|
|
188
|
+
|
|
189
|
+
## Dependencies
|
|
190
|
+
|
|
191
|
+
Required dependencies (install if not available):
|
|
192
|
+
|
|
193
|
+
- **pandoc**: `sudo apt-get install pandoc` (for text extraction)
|
|
194
|
+
- **docx**: `npm install -g docx` (for creating new documents)
|
|
195
|
+
- **LibreOffice**: `sudo apt-get install libreoffice` (for PDF conversion)
|
|
196
|
+
- **Poppler**: `sudo apt-get install poppler-utils` (for pdftoppm to convert PDF to images)
|
|
197
|
+
- **defusedxml**: `pip install defusedxml` (for secure XML parsing)
|