anchi-kit 1.1.2
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/.ai-audit/README.md +87 -0
- package/.ai-memory/README.md +123 -0
- package/.ai-memory/context.json +21 -0
- package/.ai-memory/decisions.json +3 -0
- package/.ai-memory/sessions/2025-12-28.json +36 -0
- package/.antigravity/.ai-memory/context.json +36 -0
- package/.antigravity/.ai-memory/knowledge-graph.json +3470 -0
- package/.antigravity/agent-skill-index.yaml +438 -0
- package/.antigravity/agents/brainstormer.md +115 -0
- package/.antigravity/agents/code-reviewer.md +168 -0
- package/.antigravity/agents/copywriter.md +110 -0
- package/.antigravity/agents/database-admin.md +104 -0
- package/.antigravity/agents/ddd-architect.md +128 -0
- package/.antigravity/agents/debugger.md +149 -0
- package/.antigravity/agents/design-system-architect.md +166 -0
- package/.antigravity/agents/docs-manager.md +133 -0
- package/.antigravity/agents/fullstack-developer.md +105 -0
- package/.antigravity/agents/git-manager.md +321 -0
- package/.antigravity/agents/journal-writer.md +113 -0
- package/.antigravity/agents/mcp-manager.md +93 -0
- package/.antigravity/agents/planner.md +61 -0
- package/.antigravity/agents/project-manager.md +131 -0
- package/.antigravity/agents/researcher.md +50 -0
- package/.antigravity/agents/scout-external.md +151 -0
- package/.antigravity/agents/scout.md +117 -0
- package/.antigravity/agents/tester.md +117 -0
- package/.antigravity/agents/ui-ux-designer.md +233 -0
- package/.antigravity/anchi-kit.config.yaml +12 -0
- package/.antigravity/codebase-index.json +3049 -0
- package/.antigravity/docs/README.md +9 -0
- package/.antigravity/failure-modes.yaml +148 -0
- package/.antigravity/orchestration.yaml +155 -0
- package/.antigravity/skills/.env.example +100 -0
- package/.antigravity/skills/INSTALLATION.md +360 -0
- package/.antigravity/skills/README.md +149 -0
- package/.antigravity/skills/SKILLS_INDEX.md +118 -0
- package/.antigravity/skills/THIRD_PARTY_NOTICES.md +405 -0
- package/.antigravity/skills/_template.md +30 -0
- package/.antigravity/skills/advanced-coding/references/getting-started.md +93 -0
- package/.antigravity/skills/advanced-coding/skill.md +34 -0
- package/.antigravity/skills/aesthetic/SKILL.md +121 -0
- package/.antigravity/skills/aesthetic/assets/design-guideline-template.md +163 -0
- package/.antigravity/skills/aesthetic/assets/design-story-template.md +135 -0
- package/.antigravity/skills/aesthetic/references/design-principles.md +62 -0
- package/.antigravity/skills/aesthetic/references/design-resources.md +75 -0
- package/.antigravity/skills/aesthetic/references/micro-interactions.md +53 -0
- package/.antigravity/skills/aesthetic/references/storytelling-design.md +50 -0
- package/.antigravity/skills/agent_skills_spec.md +55 -0
- package/.antigravity/skills/ai-multimodal/.env.example +181 -0
- package/.antigravity/skills/ai-multimodal/SKILL.md +65 -0
- package/.antigravity/skills/ai-multimodal/references/audio-processing.md +386 -0
- package/.antigravity/skills/ai-multimodal/references/image-generation.md +722 -0
- package/.antigravity/skills/ai-multimodal/references/video-analysis.md +515 -0
- package/.antigravity/skills/ai-multimodal/references/video-generation.md +457 -0
- package/.antigravity/skills/ai-multimodal/references/vision-understanding.md +492 -0
- package/.antigravity/skills/ai-multimodal/scripts/.coverage +0 -0
- package/.antigravity/skills/ai-multimodal/scripts/check_setup.py +299 -0
- package/.antigravity/skills/ai-multimodal/scripts/document_converter.py +395 -0
- package/.antigravity/skills/ai-multimodal/scripts/gemini_batch_process.py +896 -0
- package/.antigravity/skills/ai-multimodal/scripts/media_optimizer.py +506 -0
- package/.antigravity/skills/ai-multimodal/scripts/requirements.txt +26 -0
- package/.antigravity/skills/ai-multimodal/scripts/tests/.coverage +0 -0
- package/.antigravity/skills/ai-multimodal/scripts/tests/requirements.txt +20 -0
- package/.antigravity/skills/ai-multimodal/scripts/tests/test_document_converter.py +74 -0
- package/.antigravity/skills/ai-multimodal/scripts/tests/test_failures.log +258 -0
- package/.antigravity/skills/ai-multimodal/scripts/tests/test_gemini_batch_process.py +362 -0
- package/.antigravity/skills/ai-multimodal/scripts/tests/test_media_optimizer.py +373 -0
- package/.antigravity/skills/backend-development/SKILL.md +95 -0
- package/.antigravity/skills/backend-development/references/backend-api-design.md +495 -0
- package/.antigravity/skills/backend-development/references/backend-architecture.md +454 -0
- package/.antigravity/skills/backend-development/references/backend-authentication.md +338 -0
- package/.antigravity/skills/backend-development/references/backend-code-quality.md +659 -0
- package/.antigravity/skills/backend-development/references/backend-debugging.md +904 -0
- package/.antigravity/skills/backend-development/references/backend-devops.md +494 -0
- package/.antigravity/skills/backend-development/references/backend-mindset.md +387 -0
- package/.antigravity/skills/backend-development/references/backend-performance.md +397 -0
- package/.antigravity/skills/backend-development/references/backend-security.md +290 -0
- package/.antigravity/skills/backend-development/references/backend-technologies.md +256 -0
- package/.antigravity/skills/backend-development/references/backend-testing.md +429 -0
- package/.antigravity/skills/better-auth/SKILL.md +204 -0
- package/.antigravity/skills/better-auth/references/advanced-features.md +553 -0
- package/.antigravity/skills/better-auth/references/database-integration.md +577 -0
- package/.antigravity/skills/better-auth/references/email-password-auth.md +416 -0
- package/.antigravity/skills/better-auth/references/oauth-providers.md +430 -0
- package/.antigravity/skills/better-auth/scripts/.coverage +0 -0
- package/.antigravity/skills/better-auth/scripts/better_auth_init.py +521 -0
- package/.antigravity/skills/better-auth/scripts/requirements.txt +15 -0
- package/.antigravity/skills/better-auth/scripts/tests/.coverage +0 -0
- package/.antigravity/skills/better-auth/scripts/tests/test_better_auth_init.py +421 -0
- package/.antigravity/skills/chrome-devtools/SKILL.md +360 -0
- package/.antigravity/skills/chrome-devtools/references/cdp-domains.md +694 -0
- package/.antigravity/skills/chrome-devtools/references/performance-guide.md +940 -0
- package/.antigravity/skills/chrome-devtools/references/puppeteer-reference.md +953 -0
- package/.antigravity/skills/chrome-devtools/scripts/README.md +213 -0
- package/.antigravity/skills/chrome-devtools/scripts/__tests__/selector.test.js +210 -0
- package/.antigravity/skills/chrome-devtools/scripts/click.js +79 -0
- package/.antigravity/skills/chrome-devtools/scripts/console.js +75 -0
- package/.antigravity/skills/chrome-devtools/scripts/evaluate.js +49 -0
- package/.antigravity/skills/chrome-devtools/scripts/fill.js +72 -0
- package/.antigravity/skills/chrome-devtools/scripts/install-deps.sh +181 -0
- package/.antigravity/skills/chrome-devtools/scripts/install.sh +83 -0
- package/.antigravity/skills/chrome-devtools/scripts/lib/browser.js +122 -0
- package/.antigravity/skills/chrome-devtools/scripts/lib/selector.js +178 -0
- package/.antigravity/skills/chrome-devtools/scripts/navigate.js +46 -0
- package/.antigravity/skills/chrome-devtools/scripts/network.js +102 -0
- package/.antigravity/skills/chrome-devtools/scripts/package.json +15 -0
- package/.antigravity/skills/chrome-devtools/scripts/performance.js +145 -0
- package/.antigravity/skills/chrome-devtools/scripts/screenshot.js +180 -0
- package/.antigravity/skills/chrome-devtools/scripts/snapshot.js +131 -0
- package/.antigravity/skills/code-review/SKILL.md +143 -0
- package/.antigravity/skills/code-review/references/code-review-reception.md +209 -0
- package/.antigravity/skills/code-review/references/requesting-code-review.md +105 -0
- package/.antigravity/skills/code-review/references/verification-before-completion.md +139 -0
- package/.antigravity/skills/common/README.md +120 -0
- package/.antigravity/skills/common/api_key_helper.py +300 -0
- package/.antigravity/skills/databases/SKILL.md +232 -0
- package/.antigravity/skills/databases/references/mongodb-aggregation.md +447 -0
- package/.antigravity/skills/databases/references/mongodb-atlas.md +465 -0
- package/.antigravity/skills/databases/references/mongodb-crud.md +408 -0
- package/.antigravity/skills/databases/references/mongodb-indexing.md +442 -0
- package/.antigravity/skills/databases/references/postgresql-administration.md +594 -0
- package/.antigravity/skills/databases/references/postgresql-performance.md +527 -0
- package/.antigravity/skills/databases/references/postgresql-psql-cli.md +467 -0
- package/.antigravity/skills/databases/references/postgresql-queries.md +475 -0
- package/.antigravity/skills/databases/scripts/.coverage +0 -0
- package/.antigravity/skills/databases/scripts/db_backup.py +502 -0
- package/.antigravity/skills/databases/scripts/db_migrate.py +414 -0
- package/.antigravity/skills/databases/scripts/db_performance_check.py +444 -0
- package/.antigravity/skills/databases/scripts/requirements.txt +20 -0
- package/.antigravity/skills/databases/scripts/tests/coverage-db.json +1 -0
- package/.antigravity/skills/databases/scripts/tests/requirements.txt +4 -0
- package/.antigravity/skills/databases/scripts/tests/test_db_backup.py +340 -0
- package/.antigravity/skills/databases/scripts/tests/test_db_migrate.py +277 -0
- package/.antigravity/skills/databases/scripts/tests/test_db_performance_check.py +370 -0
- package/.antigravity/skills/ddd-modular-monolith/README.md +300 -0
- package/.antigravity/skills/debugging/SKILL.md +84 -0
- package/.antigravity/skills/debugging/references/defense-in-depth.md +124 -0
- package/.antigravity/skills/debugging/references/root-cause-tracing.md +122 -0
- package/.antigravity/skills/debugging/references/systematic-debugging.md +102 -0
- package/.antigravity/skills/debugging/references/verification.md +123 -0
- package/.antigravity/skills/debugging/scripts/find-polluter.sh +63 -0
- package/.antigravity/skills/debugging/scripts/find-polluter.test.md +102 -0
- package/.antigravity/skills/devops/.env.example +76 -0
- package/.antigravity/skills/devops/SKILL.md +285 -0
- package/.antigravity/skills/devops/references/browser-rendering.md +305 -0
- package/.antigravity/skills/devops/references/cloudflare-d1-kv.md +123 -0
- package/.antigravity/skills/devops/references/cloudflare-platform.md +271 -0
- package/.antigravity/skills/devops/references/cloudflare-r2-storage.md +280 -0
- package/.antigravity/skills/devops/references/cloudflare-workers-advanced.md +312 -0
- package/.antigravity/skills/devops/references/cloudflare-workers-apis.md +309 -0
- package/.antigravity/skills/devops/references/cloudflare-workers-basics.md +418 -0
- package/.antigravity/skills/devops/references/docker-basics.md +297 -0
- package/.antigravity/skills/devops/references/docker-compose.md +292 -0
- package/.antigravity/skills/devops/references/gcloud-platform.md +297 -0
- package/.antigravity/skills/devops/references/gcloud-services.md +304 -0
- package/.antigravity/skills/devops/scripts/cloudflare_deploy.py +269 -0
- package/.antigravity/skills/devops/scripts/docker_optimize.py +320 -0
- package/.antigravity/skills/devops/scripts/requirements.txt +20 -0
- package/.antigravity/skills/devops/scripts/tests/requirements.txt +3 -0
- package/.antigravity/skills/devops/scripts/tests/test_cloudflare_deploy.py +285 -0
- package/.antigravity/skills/devops/scripts/tests/test_docker_optimize.py +436 -0
- package/.antigravity/skills/docs-seeker/.env.example +15 -0
- package/.antigravity/skills/docs-seeker/SKILL.md +97 -0
- package/.antigravity/skills/docs-seeker/package.json +25 -0
- package/.antigravity/skills/docs-seeker/references/advanced.md +79 -0
- package/.antigravity/skills/docs-seeker/references/context7-patterns.md +68 -0
- package/.antigravity/skills/docs-seeker/references/errors.md +68 -0
- package/.antigravity/skills/docs-seeker/scripts/analyze-llms-txt.js +211 -0
- package/.antigravity/skills/docs-seeker/scripts/detect-topic.js +172 -0
- package/.antigravity/skills/docs-seeker/scripts/fetch-docs.js +213 -0
- package/.antigravity/skills/docs-seeker/scripts/tests/run-tests.js +72 -0
- package/.antigravity/skills/docs-seeker/scripts/tests/test-analyze-llms.js +119 -0
- package/.antigravity/skills/docs-seeker/scripts/tests/test-detect-topic.js +112 -0
- package/.antigravity/skills/docs-seeker/scripts/tests/test-fetch-docs.js +84 -0
- package/.antigravity/skills/docs-seeker/scripts/utils/env-loader.js +94 -0
- package/.antigravity/skills/docs-seeker/workflows/library-search.md +87 -0
- package/.antigravity/skills/docs-seeker/workflows/repo-analysis.md +91 -0
- package/.antigravity/skills/docs-seeker/workflows/topic-search.md +77 -0
- package/.antigravity/skills/document-skills/docx/LICENSE.txt +30 -0
- package/.antigravity/skills/document-skills/docx/SKILL.md +197 -0
- package/.antigravity/skills/document-skills/docx/docx-js.md +350 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/mce/mc.xsd +75 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/.antigravity/skills/document-skills/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/.antigravity/skills/document-skills/docx/ooxml/scripts/pack.py +159 -0
- package/.antigravity/skills/document-skills/docx/ooxml/scripts/unpack.py +29 -0
- package/.antigravity/skills/document-skills/docx/ooxml/scripts/validate.py +69 -0
- package/.antigravity/skills/document-skills/docx/ooxml/scripts/validation/__init__.py +15 -0
- package/.antigravity/skills/document-skills/docx/ooxml/scripts/validation/base.py +951 -0
- package/.antigravity/skills/document-skills/docx/ooxml/scripts/validation/docx.py +274 -0
- package/.antigravity/skills/document-skills/docx/ooxml/scripts/validation/pptx.py +315 -0
- package/.antigravity/skills/document-skills/docx/ooxml/scripts/validation/redlining.py +279 -0
- package/.antigravity/skills/document-skills/docx/ooxml.md +610 -0
- package/.antigravity/skills/document-skills/docx/scripts/__init__.py +1 -0
- package/.antigravity/skills/document-skills/docx/scripts/document.py +1276 -0
- package/.antigravity/skills/document-skills/docx/scripts/templates/comments.xml +3 -0
- package/.antigravity/skills/document-skills/docx/scripts/templates/commentsExtended.xml +3 -0
- package/.antigravity/skills/document-skills/docx/scripts/templates/commentsExtensible.xml +3 -0
- package/.antigravity/skills/document-skills/docx/scripts/templates/commentsIds.xml +3 -0
- package/.antigravity/skills/document-skills/docx/scripts/templates/people.xml +3 -0
- package/.antigravity/skills/document-skills/docx/scripts/utilities.py +374 -0
- package/.antigravity/skills/document-skills/pdf/LICENSE.txt +30 -0
- package/.antigravity/skills/document-skills/pdf/SKILL.md +294 -0
- package/.antigravity/skills/document-skills/pdf/forms.md +205 -0
- package/.antigravity/skills/document-skills/pdf/reference.md +612 -0
- package/.antigravity/skills/document-skills/pdf/scripts/check_bounding_boxes.py +70 -0
- package/.antigravity/skills/document-skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
- package/.antigravity/skills/document-skills/pdf/scripts/check_fillable_fields.py +12 -0
- package/.antigravity/skills/document-skills/pdf/scripts/convert_pdf_to_images.py +35 -0
- package/.antigravity/skills/document-skills/pdf/scripts/create_validation_image.py +41 -0
- package/.antigravity/skills/document-skills/pdf/scripts/extract_form_field_info.py +152 -0
- package/.antigravity/skills/document-skills/pdf/scripts/fill_fillable_fields.py +114 -0
- package/.antigravity/skills/document-skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
- package/.antigravity/skills/document-skills/pptx/LICENSE.txt +30 -0
- package/.antigravity/skills/document-skills/pptx/SKILL.md +484 -0
- package/.antigravity/skills/document-skills/pptx/html2pptx.md +625 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/mce/mc.xsd +75 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/scripts/pack.py +159 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/scripts/unpack.py +29 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/scripts/validate.py +69 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/scripts/validation/__init__.py +15 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/scripts/validation/base.py +951 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/scripts/validation/docx.py +274 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/scripts/validation/pptx.py +315 -0
- package/.antigravity/skills/document-skills/pptx/ooxml/scripts/validation/redlining.py +279 -0
- package/.antigravity/skills/document-skills/pptx/ooxml.md +427 -0
- package/.antigravity/skills/document-skills/pptx/scripts/html2pptx.js +979 -0
- package/.antigravity/skills/document-skills/pptx/scripts/inventory.py +1020 -0
- package/.antigravity/skills/document-skills/pptx/scripts/rearrange.py +231 -0
- package/.antigravity/skills/document-skills/pptx/scripts/replace.py +385 -0
- package/.antigravity/skills/document-skills/pptx/scripts/thumbnail.py +450 -0
- package/.antigravity/skills/document-skills/xlsx/LICENSE.txt +30 -0
- package/.antigravity/skills/document-skills/xlsx/SKILL.md +289 -0
- package/.antigravity/skills/document-skills/xlsx/recalc.py +178 -0
- package/.antigravity/skills/frontend-design/SKILL.md +91 -0
- package/.antigravity/skills/frontend-design/references/ai-multimodal-overview.md +165 -0
- package/.antigravity/skills/frontend-design/references/analysis-best-practices.md +80 -0
- package/.antigravity/skills/frontend-design/references/analysis-prompts.md +141 -0
- package/.antigravity/skills/frontend-design/references/analysis-techniques.md +118 -0
- package/.antigravity/skills/frontend-design/references/animejs.md +396 -0
- package/.antigravity/skills/frontend-design/references/asset-generation.md +337 -0
- package/.antigravity/skills/frontend-design/references/design-extraction-overview.md +71 -0
- package/.antigravity/skills/frontend-design/references/extraction-best-practices.md +141 -0
- package/.antigravity/skills/frontend-design/references/extraction-output-templates.md +162 -0
- package/.antigravity/skills/frontend-design/references/extraction-prompts.md +127 -0
- package/.antigravity/skills/frontend-design/references/technical-accessibility.md +119 -0
- package/.antigravity/skills/frontend-design/references/technical-best-practices.md +97 -0
- package/.antigravity/skills/frontend-design/references/technical-optimization.md +44 -0
- package/.antigravity/skills/frontend-design/references/technical-overview.md +90 -0
- package/.antigravity/skills/frontend-design/references/technical-workflows.md +150 -0
- package/.antigravity/skills/frontend-design/references/visual-analysis-overview.md +95 -0
- package/.antigravity/skills/frontend-design-pro/SKILL.md +58 -0
- package/.antigravity/skills/frontend-development/SKILL.md +399 -0
- package/.antigravity/skills/frontend-development/resources/common-patterns.md +331 -0
- package/.antigravity/skills/frontend-development/resources/complete-examples.md +872 -0
- package/.antigravity/skills/frontend-development/resources/component-patterns.md +502 -0
- package/.antigravity/skills/frontend-development/resources/data-fetching.md +767 -0
- package/.antigravity/skills/frontend-development/resources/file-organization.md +502 -0
- package/.antigravity/skills/frontend-development/resources/loading-and-error-states.md +501 -0
- package/.antigravity/skills/frontend-development/resources/performance.md +406 -0
- package/.antigravity/skills/frontend-development/resources/routing-guide.md +364 -0
- package/.antigravity/skills/frontend-development/resources/styling-guide.md +428 -0
- package/.antigravity/skills/frontend-development/resources/typescript-standards.md +418 -0
- package/.antigravity/skills/google-adk-python/SKILL.md +237 -0
- package/.antigravity/skills/install.ps1 +600 -0
- package/.antigravity/skills/install.sh +685 -0
- package/.antigravity/skills/mcp-builder/LICENSE.txt +202 -0
- package/.antigravity/skills/mcp-builder/SKILL.md +328 -0
- package/.antigravity/skills/mcp-builder/reference/evaluation.md +602 -0
- package/.antigravity/skills/mcp-builder/reference/mcp_best_practices.md +915 -0
- package/.antigravity/skills/mcp-builder/reference/node_mcp_server.md +916 -0
- package/.antigravity/skills/mcp-builder/reference/python_mcp_server.md +752 -0
- package/.antigravity/skills/mcp-builder/scripts/connections.py +151 -0
- package/.antigravity/skills/mcp-builder/scripts/evaluation.py +373 -0
- package/.antigravity/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
- package/.antigravity/skills/mcp-builder/scripts/requirements.txt +2 -0
- package/.antigravity/skills/mcp-management/README.md +219 -0
- package/.antigravity/skills/mcp-management/SKILL.md +209 -0
- package/.antigravity/skills/mcp-management/assets/tools.json +3146 -0
- package/.antigravity/skills/mcp-management/references/configuration.md +114 -0
- package/.antigravity/skills/mcp-management/references/gemini-cli-integration.md +215 -0
- package/.antigravity/skills/mcp-management/references/mcp-protocol.md +116 -0
- package/.antigravity/skills/mcp-management/scripts/.env.example +10 -0
- package/.antigravity/skills/mcp-management/scripts/cli.ts +195 -0
- package/.antigravity/skills/mcp-management/scripts/mcp-client.ts +230 -0
- package/.antigravity/skills/mcp-management/scripts/package.json +20 -0
- package/.antigravity/skills/mcp-management/scripts/tsconfig.json +15 -0
- package/.antigravity/skills/media-processing/SKILL.md +91 -0
- package/.antigravity/skills/media-processing/references/common-workflows.md +132 -0
- package/.antigravity/skills/media-processing/references/ffmpeg-encoding.md +358 -0
- package/.antigravity/skills/media-processing/references/ffmpeg-filters.md +503 -0
- package/.antigravity/skills/media-processing/references/ffmpeg-streaming.md +403 -0
- package/.antigravity/skills/media-processing/references/format-compatibility.md +375 -0
- package/.antigravity/skills/media-processing/references/imagemagick-batch.md +612 -0
- package/.antigravity/skills/media-processing/references/imagemagick-editing.md +623 -0
- package/.antigravity/skills/media-processing/references/rmbg-background-removal.md +66 -0
- package/.antigravity/skills/media-processing/references/troubleshooting.md +109 -0
- package/.antigravity/skills/media-processing/scripts/README.md +111 -0
- package/.antigravity/skills/media-processing/scripts/batch-remove-background.sh +124 -0
- package/.antigravity/skills/media-processing/scripts/batch_resize.py +342 -0
- package/.antigravity/skills/media-processing/scripts/media_convert.py +311 -0
- package/.antigravity/skills/media-processing/scripts/remove-background.sh +96 -0
- package/.antigravity/skills/media-processing/scripts/remove-bg-node.js +158 -0
- package/.antigravity/skills/media-processing/scripts/requirements.txt +24 -0
- package/.antigravity/skills/media-processing/scripts/tests/.coverage +0 -0
- package/.antigravity/skills/media-processing/scripts/tests/requirements.txt +2 -0
- package/.antigravity/skills/media-processing/scripts/tests/test_batch_resize.py +372 -0
- package/.antigravity/skills/media-processing/scripts/tests/test_media_convert.py +259 -0
- package/.antigravity/skills/media-processing/scripts/tests/test_video_optimize.py +397 -0
- package/.antigravity/skills/media-processing/scripts/video_optimize.py +414 -0
- package/.antigravity/skills/mobile-development/SKILL.md +212 -0
- package/.antigravity/skills/mobile-development/references/mobile-android.md +604 -0
- package/.antigravity/skills/mobile-development/references/mobile-best-practices.md +545 -0
- package/.antigravity/skills/mobile-development/references/mobile-debugging.md +1089 -0
- package/.antigravity/skills/mobile-development/references/mobile-frameworks.md +465 -0
- package/.antigravity/skills/mobile-development/references/mobile-ios.md +496 -0
- package/.antigravity/skills/mobile-development/references/mobile-mindset.md +544 -0
- package/.antigravity/skills/payment-integration/README.md +185 -0
- package/.antigravity/skills/payment-integration/SKILL.md +118 -0
- package/.antigravity/skills/payment-integration/references/polar/benefits.md +396 -0
- package/.antigravity/skills/payment-integration/references/polar/best-practices.md +482 -0
- package/.antigravity/skills/payment-integration/references/polar/checkouts.md +266 -0
- package/.antigravity/skills/payment-integration/references/polar/overview.md +184 -0
- package/.antigravity/skills/payment-integration/references/polar/products.md +244 -0
- package/.antigravity/skills/payment-integration/references/polar/sdk.md +436 -0
- package/.antigravity/skills/payment-integration/references/polar/subscriptions.md +340 -0
- package/.antigravity/skills/payment-integration/references/polar/webhooks.md +405 -0
- package/.antigravity/skills/payment-integration/references/sepay/api.md +140 -0
- package/.antigravity/skills/payment-integration/references/sepay/best-practices.md +337 -0
- package/.antigravity/skills/payment-integration/references/sepay/overview.md +138 -0
- package/.antigravity/skills/payment-integration/references/sepay/qr-codes.md +228 -0
- package/.antigravity/skills/payment-integration/references/sepay/sdk.md +213 -0
- package/.antigravity/skills/payment-integration/references/sepay/webhooks.md +208 -0
- package/.antigravity/skills/payment-integration/scripts/.env.example +20 -0
- package/.antigravity/skills/payment-integration/scripts/checkout-helper.js +244 -0
- package/.antigravity/skills/payment-integration/scripts/package.json +17 -0
- package/.antigravity/skills/payment-integration/scripts/polar-webhook-verify.js +202 -0
- package/.antigravity/skills/payment-integration/scripts/sepay-webhook-verify.js +193 -0
- package/.antigravity/skills/payment-integration/scripts/test-scripts.js +237 -0
- package/.antigravity/skills/planning/SKILL.md +121 -0
- package/.antigravity/skills/planning/references/codebase-understanding.md +62 -0
- package/.antigravity/skills/planning/references/output-standards.md +87 -0
- package/.antigravity/skills/planning/references/plan-organization.md +123 -0
- package/.antigravity/skills/planning/references/research-phase.md +49 -0
- package/.antigravity/skills/planning/references/solution-design.md +63 -0
- package/.antigravity/skills/problem-solving/SKILL.md +96 -0
- package/.antigravity/skills/problem-solving/references/attribution.md +69 -0
- package/.antigravity/skills/problem-solving/references/collision-zone-thinking.md +79 -0
- package/.antigravity/skills/problem-solving/references/inversion-exercise.md +91 -0
- package/.antigravity/skills/problem-solving/references/meta-pattern-recognition.md +87 -0
- package/.antigravity/skills/problem-solving/references/scale-game.md +95 -0
- package/.antigravity/skills/problem-solving/references/simplification-cascades.md +80 -0
- package/.antigravity/skills/problem-solving/references/when-stuck.md +72 -0
- package/.antigravity/skills/repomix/SKILL.md +247 -0
- package/.antigravity/skills/repomix/references/configuration.md +211 -0
- package/.antigravity/skills/repomix/references/usage-patterns.md +232 -0
- package/.antigravity/skills/repomix/scripts/.coverage +0 -0
- package/.antigravity/skills/repomix/scripts/README.md +179 -0
- package/.antigravity/skills/repomix/scripts/repomix_batch.py +455 -0
- package/.antigravity/skills/repomix/scripts/repos.example.json +15 -0
- package/.antigravity/skills/repomix/scripts/requirements.txt +15 -0
- package/.antigravity/skills/repomix/scripts/tests/test_repomix_batch.py +531 -0
- package/.antigravity/skills/research/SKILL.md +168 -0
- package/.antigravity/skills/sequential-thinking/.env.example +8 -0
- package/.antigravity/skills/sequential-thinking/README.md +183 -0
- package/.antigravity/skills/sequential-thinking/SKILL.md +94 -0
- package/.antigravity/skills/sequential-thinking/package.json +31 -0
- package/.antigravity/skills/sequential-thinking/references/advanced-strategies.md +79 -0
- package/.antigravity/skills/sequential-thinking/references/advanced-techniques.md +76 -0
- package/.antigravity/skills/sequential-thinking/references/core-patterns.md +95 -0
- package/.antigravity/skills/sequential-thinking/references/examples-api.md +88 -0
- package/.antigravity/skills/sequential-thinking/references/examples-architecture.md +94 -0
- package/.antigravity/skills/sequential-thinking/references/examples-debug.md +90 -0
- package/.antigravity/skills/sequential-thinking/scripts/format-thought.js +159 -0
- package/.antigravity/skills/sequential-thinking/scripts/process-thought.js +236 -0
- package/.antigravity/skills/sequential-thinking/tests/format-thought.test.js +133 -0
- package/.antigravity/skills/sequential-thinking/tests/process-thought.test.js +215 -0
- package/.antigravity/skills/shopify/README.md +66 -0
- package/.antigravity/skills/shopify/SKILL.md +319 -0
- package/.antigravity/skills/shopify/references/app-development.md +470 -0
- package/.antigravity/skills/shopify/references/extensions.md +493 -0
- package/.antigravity/skills/shopify/references/themes.md +498 -0
- package/.antigravity/skills/shopify/scripts/.coverage +0 -0
- package/.antigravity/skills/shopify/scripts/requirements.txt +19 -0
- package/.antigravity/skills/shopify/scripts/shopify_init.py +423 -0
- package/.antigravity/skills/shopify/scripts/tests/.coverage +0 -0
- package/.antigravity/skills/shopify/scripts/tests/test_shopify_init.py +385 -0
- package/.antigravity/skills/skill-creator/LICENSE.txt +202 -0
- package/.antigravity/skills/skill-creator/SKILL.md +266 -0
- package/.antigravity/skills/skill-creator/scripts/init_skill.py +303 -0
- package/.antigravity/skills/skill-creator/scripts/package_skill.py +110 -0
- package/.antigravity/skills/skill-creator/scripts/quick_validate.py +65 -0
- package/.antigravity/skills/template-skill/SKILL.md +6 -0
- package/.antigravity/skills/threejs/SKILL.md +89 -0
- package/.antigravity/skills/threejs/references/01-getting-started.md +177 -0
- package/.antigravity/skills/threejs/references/02-loaders.md +169 -0
- package/.antigravity/skills/threejs/references/03-textures.md +170 -0
- package/.antigravity/skills/threejs/references/04-cameras.md +195 -0
- package/.antigravity/skills/threejs/references/05-lights.md +183 -0
- package/.antigravity/skills/threejs/references/06-animations.md +214 -0
- package/.antigravity/skills/threejs/references/07-math.md +260 -0
- package/.antigravity/skills/threejs/references/08-interaction.md +267 -0
- package/.antigravity/skills/threejs/references/09-postprocessing.md +240 -0
- package/.antigravity/skills/threejs/references/10-controls.md +259 -0
- package/.antigravity/skills/threejs/references/11-materials-advanced.md +270 -0
- package/.antigravity/skills/threejs/references/12-performance.md +269 -0
- package/.antigravity/skills/threejs/references/13-node-materials.md +298 -0
- package/.antigravity/skills/threejs/references/14-physics-vr.md +304 -0
- package/.antigravity/skills/threejs/references/15-specialized-loaders.md +333 -0
- package/.antigravity/skills/threejs/references/16-webgpu.md +302 -0
- package/.antigravity/skills/ui-styling/LICENSE.txt +202 -0
- package/.antigravity/skills/ui-styling/SKILL.md +321 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/ArsenalSC-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/BigShoulders-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Boldonse-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Boldonse-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/CrimsonPro-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/DMMono-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/DMMono-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/EricaOne-OFL.txt +94 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/EricaOne-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/GeistMono-Bold.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/GeistMono-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/GeistMono-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Gloock-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Gloock-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/InstrumentSans-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Italiana-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Italiana-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Jura-Light.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Jura-Medium.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Jura-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Lora-Bold.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Lora-Italic.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Lora-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Lora-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/NationalPark-Bold.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/NationalPark-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/NationalPark-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Outfit-Bold.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Outfit-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Outfit-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/PixelifySans-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/PoiretOne-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/RedHatMono-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Silkscreen-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/SmoochSans-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Tektur-Medium.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Tektur-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/Tektur-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/WorkSans-Bold.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/WorkSans-Italic.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/WorkSans-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/WorkSans-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/YoungSerif-OFL.txt +93 -0
- package/.antigravity/skills/ui-styling/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- package/.antigravity/skills/ui-styling/references/canvas-design-system.md +320 -0
- package/.antigravity/skills/ui-styling/references/shadcn-accessibility.md +471 -0
- package/.antigravity/skills/ui-styling/references/shadcn-components.md +424 -0
- package/.antigravity/skills/ui-styling/references/shadcn-theming.md +373 -0
- package/.antigravity/skills/ui-styling/references/tailwind-customization.md +483 -0
- package/.antigravity/skills/ui-styling/references/tailwind-responsive.md +382 -0
- package/.antigravity/skills/ui-styling/references/tailwind-utilities.md +455 -0
- package/.antigravity/skills/ui-styling/scripts/.coverage +0 -0
- package/.antigravity/skills/ui-styling/scripts/requirements.txt +17 -0
- package/.antigravity/skills/ui-styling/scripts/shadcn_add.py +292 -0
- package/.antigravity/skills/ui-styling/scripts/tailwind_config_gen.py +456 -0
- package/.antigravity/skills/ui-styling/scripts/tests/coverage-ui.json +1 -0
- package/.antigravity/skills/ui-styling/scripts/tests/requirements.txt +3 -0
- package/.antigravity/skills/ui-styling/scripts/tests/test_shadcn_add.py +266 -0
- package/.antigravity/skills/ui-styling/scripts/tests/test_tailwind_config_gen.py +336 -0
- package/.antigravity/skills/ui-ux-pro-max/SKILL.md +227 -0
- package/.antigravity/skills/ui-ux-pro-max/data/charts.csv +26 -0
- package/.antigravity/skills/ui-ux-pro-max/data/colors.csv +97 -0
- package/.antigravity/skills/ui-ux-pro-max/data/landing.csv +31 -0
- package/.antigravity/skills/ui-ux-pro-max/data/products.csv +97 -0
- package/.antigravity/skills/ui-ux-pro-max/data/prompts.csv +24 -0
- package/.antigravity/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/.antigravity/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +51 -0
- package/.antigravity/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/.antigravity/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/.antigravity/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/.antigravity/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/.antigravity/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/.antigravity/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/.antigravity/skills/ui-ux-pro-max/data/styles.csv +59 -0
- package/.antigravity/skills/ui-ux-pro-max/data/typography.csv +58 -0
- package/.antigravity/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/.antigravity/skills/ui-ux-pro-max/scripts/core.py +236 -0
- package/.antigravity/skills/ui-ux-pro-max/scripts/search.py +61 -0
- package/.antigravity/skills/web-frameworks/SKILL.md +324 -0
- package/.antigravity/skills/web-frameworks/references/nextjs-app-router.md +465 -0
- package/.antigravity/skills/web-frameworks/references/nextjs-data-fetching.md +459 -0
- package/.antigravity/skills/web-frameworks/references/nextjs-optimization.md +511 -0
- package/.antigravity/skills/web-frameworks/references/nextjs-server-components.md +495 -0
- package/.antigravity/skills/web-frameworks/references/remix-icon-integration.md +603 -0
- package/.antigravity/skills/web-frameworks/references/turborepo-caching.md +551 -0
- package/.antigravity/skills/web-frameworks/references/turborepo-pipelines.md +517 -0
- package/.antigravity/skills/web-frameworks/references/turborepo-setup.md +542 -0
- package/.antigravity/skills/web-frameworks/scripts/.coverage +0 -0
- package/.antigravity/skills/web-frameworks/scripts/__init__.py +0 -0
- package/.antigravity/skills/web-frameworks/scripts/nextjs_init.py +547 -0
- package/.antigravity/skills/web-frameworks/scripts/requirements.txt +16 -0
- package/.antigravity/skills/web-frameworks/scripts/tests/coverage-web.json +1 -0
- package/.antigravity/skills/web-frameworks/scripts/tests/requirements.txt +3 -0
- package/.antigravity/skills/web-frameworks/scripts/tests/test_nextjs_init.py +319 -0
- package/.antigravity/skills/web-frameworks/scripts/tests/test_turborepo_migrate.py +374 -0
- package/.antigravity/skills/web-frameworks/scripts/turborepo_migrate.py +394 -0
- package/.antigravity/team.yaml +158 -0
- package/.antigravity/workflows/audit.md +116 -0
- package/.antigravity/workflows/commit.md +116 -0
- package/.antigravity/workflows/config.md +144 -0
- package/.antigravity/workflows/demo.md +50 -0
- package/.antigravity/workflows/design.md +177 -0
- package/.antigravity/workflows/do.md +380 -0
- package/.antigravity/workflows/docs.md +101 -0
- package/.antigravity/workflows/generate.md +140 -0
- package/.antigravity/workflows/help.md +128 -0
- package/.antigravity/workflows/integrate.md +119 -0
- package/.antigravity/workflows/memory.md +97 -0
- package/.antigravity/workflows/migrate.md +180 -0
- package/.antigravity/workflows/review.md +108 -0
- package/.antigravity/workflows/scout.md +111 -0
- package/.antigravity/workflows/skill-learn.md +48 -0
- package/.antigravity/workflows/start.md +56 -0
- package/.antigravity/workflows/status.md +163 -0
- package/.antigravity/workflows/test.md +121 -0
- package/.antigravity/workflows/theme.md +158 -0
- package/.antigravity/workflows/undo.md +166 -0
- package/.antigravity/workflows/why.md +155 -0
- package/.cursor/.ckignore +11 -0
- package/.cursor/.env.example +87 -0
- package/.cursor/.mcp.json.example +23 -0
- package/.cursor/MODEL_COSTS.md +61 -0
- package/.cursor/UX_GUIDELINES.md +146 -0
- package/.cursor/agent-skill-index.yaml +833 -0
- package/.cursor/agents/brainstormer.md +115 -0
- package/.cursor/agents/code-reviewer.md +168 -0
- package/.cursor/agents/copywriter.md +110 -0
- package/.cursor/agents/database-admin.md +104 -0
- package/.cursor/agents/ddd-architect.md +128 -0
- package/.cursor/agents/debugger.md +149 -0
- package/.cursor/agents/design-system-architect.md +166 -0
- package/.cursor/agents/docs-manager.md +133 -0
- package/.cursor/agents/fullstack-developer.md +105 -0
- package/.cursor/agents/git-manager.md +321 -0
- package/.cursor/agents/graph-architect.md +30 -0
- package/.cursor/agents/journal-writer.md +113 -0
- package/.cursor/agents/mcp-manager.md +93 -0
- package/.cursor/agents/planner.md +61 -0
- package/.cursor/agents/project-manager.md +131 -0
- package/.cursor/agents/researcher.md +50 -0
- package/.cursor/agents/scout-external.md +151 -0
- package/.cursor/agents/scout.md +117 -0
- package/.cursor/agents/tester.md +117 -0
- package/.cursor/agents/trend-watcher.md +24 -0
- package/.cursor/agents/ui-ux-designer.md +233 -0
- package/.cursor/anchi-toolkit.config.yaml +32 -0
- package/.cursor/commands/audit.md +116 -0
- package/.cursor/commands/clean.md +333 -0
- package/.cursor/commands/commit.md +130 -0
- package/.cursor/commands/config.md +157 -0
- package/.cursor/commands/demo.md +88 -0
- package/.cursor/commands/design.md +177 -0
- package/.cursor/commands/do.md +403 -0
- package/.cursor/commands/docs.md +101 -0
- package/.cursor/commands/generate.md +140 -0
- package/.cursor/commands/help.md +137 -0
- package/.cursor/commands/integrate.md +119 -0
- package/.cursor/commands/memory.md +97 -0
- package/.cursor/commands/migrate.md +180 -0
- package/.cursor/commands/review.md +108 -0
- package/.cursor/commands/scout.md +111 -0
- package/.cursor/commands/skill-learn.md +48 -0
- package/.cursor/commands/start.md +56 -0
- package/.cursor/commands/status.md +163 -0
- package/.cursor/commands/test.md +121 -0
- package/.cursor/commands/theme.md +158 -0
- package/.cursor/commands/undo.md +166 -0
- package/.cursor/commands/why.md +155 -0
- package/.cursor/custom-commands/example.md +30 -0
- package/.cursor/failure-modes.yaml +148 -0
- package/.cursor/hooks/.env.example +15 -0
- package/.cursor/hooks/README.md +356 -0
- package/.cursor/hooks/dev-rules-reminder.cjs +115 -0
- package/.cursor/hooks/dev-rules-reminder.js +115 -0
- package/.cursor/hooks/discord-hook-setup.md +412 -0
- package/.cursor/hooks/discord_notify.sh +221 -0
- package/.cursor/hooks/scout-block.cjs +100 -0
- package/.cursor/hooks/scout-block.js +104 -0
- package/.cursor/hooks/scout-block.ps1 +92 -0
- package/.cursor/hooks/scout-block.sh +119 -0
- package/.cursor/hooks/send-discord.sh +75 -0
- package/.cursor/hooks/telegram-hook-setup.md +774 -0
- package/.cursor/hooks/telegram_notify.sh +158 -0
- package/.cursor/hooks/tests/test-ckignore.js +194 -0
- package/.cursor/hooks/tests/test-modularization-hook.js +126 -0
- package/.cursor/hooks/tests/test-scout-block.js +125 -0
- package/.cursor/hooks.yaml +28 -0
- package/.cursor/metadata.json +15 -0
- package/.cursor/orchestration.yaml +144 -0
- package/.cursor/scripts/README.md +153 -0
- package/.cursor/scripts/ck-help.py +489 -0
- package/.cursor/scripts/commands_data.yaml +363 -0
- package/.cursor/scripts/generate_catalogs.py +163 -0
- package/.cursor/scripts/requirements.txt +1 -0
- package/.cursor/scripts/resolve_env.py +329 -0
- package/.cursor/scripts/scan_commands.py +99 -0
- package/.cursor/scripts/scan_skills.py +187 -0
- package/.cursor/scripts/skills_data.yaml +367 -0
- package/.cursor/settings.json +31 -0
- package/.cursor/skills/.env.example +100 -0
- package/.cursor/skills/INSTALLATION.md +360 -0
- package/.cursor/skills/README.md +149 -0
- package/.cursor/skills/SKILLS_INDEX.md +118 -0
- package/.cursor/skills/THIRD_PARTY_NOTICES.md +405 -0
- package/.cursor/skills/_template.md +30 -0
- package/.cursor/skills/aesthetic/SKILL.md +121 -0
- package/.cursor/skills/aesthetic/assets/design-guideline-template.md +163 -0
- package/.cursor/skills/aesthetic/assets/design-story-template.md +135 -0
- package/.cursor/skills/aesthetic/references/design-principles.md +62 -0
- package/.cursor/skills/aesthetic/references/design-resources.md +75 -0
- package/.cursor/skills/aesthetic/references/micro-interactions.md +53 -0
- package/.cursor/skills/aesthetic/references/storytelling-design.md +50 -0
- package/.cursor/skills/agent_skills_spec.md +55 -0
- package/.cursor/skills/ai-multimodal/.env.example +181 -0
- package/.cursor/skills/ai-multimodal/SKILL.md +65 -0
- package/.cursor/skills/ai-multimodal/references/audio-processing.md +386 -0
- package/.cursor/skills/ai-multimodal/references/image-generation.md +722 -0
- package/.cursor/skills/ai-multimodal/references/video-analysis.md +515 -0
- package/.cursor/skills/ai-multimodal/references/video-generation.md +457 -0
- package/.cursor/skills/ai-multimodal/references/vision-understanding.md +492 -0
- package/.cursor/skills/ai-multimodal/scripts/.coverage +0 -0
- package/.cursor/skills/ai-multimodal/scripts/check_setup.py +299 -0
- package/.cursor/skills/ai-multimodal/scripts/document_converter.py +395 -0
- package/.cursor/skills/ai-multimodal/scripts/gemini_batch_process.py +896 -0
- package/.cursor/skills/ai-multimodal/scripts/media_optimizer.py +506 -0
- package/.cursor/skills/ai-multimodal/scripts/requirements.txt +26 -0
- package/.cursor/skills/ai-multimodal/scripts/tests/.coverage +0 -0
- package/.cursor/skills/ai-multimodal/scripts/tests/requirements.txt +20 -0
- package/.cursor/skills/ai-multimodal/scripts/tests/test_document_converter.py +74 -0
- package/.cursor/skills/ai-multimodal/scripts/tests/test_failures.log +258 -0
- package/.cursor/skills/ai-multimodal/scripts/tests/test_gemini_batch_process.py +362 -0
- package/.cursor/skills/ai-multimodal/scripts/tests/test_media_optimizer.py +373 -0
- package/.cursor/skills/article-extractor/SKILL.md +52 -0
- package/.cursor/skills/artifacts-builder/SKILL.md +63 -0
- package/.cursor/skills/aws-deployment/SKILL.md +85 -0
- package/.cursor/skills/backend-development/SKILL.md +95 -0
- package/.cursor/skills/backend-development/references/backend-api-design.md +495 -0
- package/.cursor/skills/backend-development/references/backend-architecture.md +454 -0
- package/.cursor/skills/backend-development/references/backend-authentication.md +338 -0
- package/.cursor/skills/backend-development/references/backend-code-quality.md +659 -0
- package/.cursor/skills/backend-development/references/backend-debugging.md +904 -0
- package/.cursor/skills/backend-development/references/backend-devops.md +494 -0
- package/.cursor/skills/backend-development/references/backend-mindset.md +387 -0
- package/.cursor/skills/backend-development/references/backend-performance.md +397 -0
- package/.cursor/skills/backend-development/references/backend-security.md +290 -0
- package/.cursor/skills/backend-development/references/backend-technologies.md +256 -0
- package/.cursor/skills/backend-development/references/backend-testing.md +429 -0
- package/.cursor/skills/better-auth/SKILL.md +204 -0
- package/.cursor/skills/better-auth/references/advanced-features.md +553 -0
- package/.cursor/skills/better-auth/references/database-integration.md +577 -0
- package/.cursor/skills/better-auth/references/email-password-auth.md +416 -0
- package/.cursor/skills/better-auth/references/oauth-providers.md +430 -0
- package/.cursor/skills/better-auth/scripts/.coverage +0 -0
- package/.cursor/skills/better-auth/scripts/better_auth_init.py +521 -0
- package/.cursor/skills/better-auth/scripts/requirements.txt +15 -0
- package/.cursor/skills/better-auth/scripts/tests/.coverage +0 -0
- package/.cursor/skills/better-auth/scripts/tests/test_better_auth_init.py +421 -0
- package/.cursor/skills/brainstorming/SKILL.md +73 -0
- package/.cursor/skills/canvas-design/SKILL.md +62 -0
- package/.cursor/skills/changelog-generator/SKILL.md +149 -0
- package/.cursor/skills/changelog-generator/assets/changelog-template.md +60 -0
- package/.cursor/skills/changelog-generator/scripts/generate-changelog.js +181 -0
- package/.cursor/skills/chrome-devtools/SKILL.md +407 -0
- package/.cursor/skills/chrome-devtools/references/cdp-domains.md +694 -0
- package/.cursor/skills/chrome-devtools/references/performance-guide.md +940 -0
- package/.cursor/skills/chrome-devtools/references/puppeteer-reference.md +953 -0
- package/.cursor/skills/chrome-devtools/scripts/README.md +213 -0
- package/.cursor/skills/chrome-devtools/scripts/__tests__/selector.test.js +210 -0
- package/.cursor/skills/chrome-devtools/scripts/click.js +79 -0
- package/.cursor/skills/chrome-devtools/scripts/console.js +75 -0
- package/.cursor/skills/chrome-devtools/scripts/evaluate.js +49 -0
- package/.cursor/skills/chrome-devtools/scripts/fill.js +72 -0
- package/.cursor/skills/chrome-devtools/scripts/install-deps.sh +181 -0
- package/.cursor/skills/chrome-devtools/scripts/install.sh +83 -0
- package/.cursor/skills/chrome-devtools/scripts/lib/browser.js +122 -0
- package/.cursor/skills/chrome-devtools/scripts/lib/selector.js +178 -0
- package/.cursor/skills/chrome-devtools/scripts/navigate.js +46 -0
- package/.cursor/skills/chrome-devtools/scripts/network.js +102 -0
- package/.cursor/skills/chrome-devtools/scripts/package.json +15 -0
- package/.cursor/skills/chrome-devtools/scripts/performance.js +145 -0
- package/.cursor/skills/chrome-devtools/scripts/screenshot.js +180 -0
- package/.cursor/skills/chrome-devtools/scripts/snapshot.js +131 -0
- package/.cursor/skills/claude-code/references/advanced-features.md +399 -0
- package/.cursor/skills/claude-code/references/agent-skills.md +399 -0
- package/.cursor/skills/claude-code/references/api-reference.md +498 -0
- package/.cursor/skills/claude-code/references/best-practices.md +447 -0
- package/.cursor/skills/claude-code/references/cicd-integration.md +428 -0
- package/.cursor/skills/claude-code/references/common-workflows.md +119 -0
- package/.cursor/skills/claude-code/references/configuration.md +480 -0
- package/.cursor/skills/claude-code/references/enterprise-features.md +472 -0
- package/.cursor/skills/claude-code/references/getting-started.md +252 -0
- package/.cursor/skills/claude-code/references/hooks-and-plugins.md +444 -0
- package/.cursor/skills/claude-code/references/hooks-comprehensive.md +622 -0
- package/.cursor/skills/claude-code/references/ide-integration.md +316 -0
- package/.cursor/skills/claude-code/references/mcp-integration.md +386 -0
- package/.cursor/skills/claude-code/references/slash-commands.md +489 -0
- package/.cursor/skills/claude-code/references/troubleshooting.md +456 -0
- package/.cursor/skills/claude-code/skill.md +60 -0
- package/.cursor/skills/code-review/SKILL.md +143 -0
- package/.cursor/skills/code-review/references/code-review-reception.md +209 -0
- package/.cursor/skills/code-review/references/requesting-code-review.md +105 -0
- package/.cursor/skills/code-review/references/verification-before-completion.md +139 -0
- package/.cursor/skills/common/README.md +120 -0
- package/.cursor/skills/common/api_key_helper.py +300 -0
- package/.cursor/skills/comprehensive-review/complexity.md +11 -0
- package/.cursor/skills/comprehensive-review/index.yaml +19 -0
- package/.cursor/skills/comprehensive-review/maintainability.md +12 -0
- package/.cursor/skills/comprehensive-review/readability.md +12 -0
- package/.cursor/skills/content-research-writer/SKILL.md +65 -0
- package/.cursor/skills/csv-data-analyzer/SKILL.md +91 -0
- package/.cursor/skills/d3-visualization/SKILL.md +65 -0
- package/.cursor/skills/databases/SKILL.md +232 -0
- package/.cursor/skills/databases/references/mongodb-aggregation.md +447 -0
- package/.cursor/skills/databases/references/mongodb-atlas.md +465 -0
- package/.cursor/skills/databases/references/mongodb-crud.md +408 -0
- package/.cursor/skills/databases/references/mongodb-indexing.md +442 -0
- package/.cursor/skills/databases/references/postgresql-administration.md +594 -0
- package/.cursor/skills/databases/references/postgresql-performance.md +527 -0
- package/.cursor/skills/databases/references/postgresql-psql-cli.md +467 -0
- package/.cursor/skills/databases/references/postgresql-queries.md +475 -0
- package/.cursor/skills/databases/scripts/.coverage +0 -0
- package/.cursor/skills/databases/scripts/db_backup.py +502 -0
- package/.cursor/skills/databases/scripts/db_migrate.py +414 -0
- package/.cursor/skills/databases/scripts/db_performance_check.py +444 -0
- package/.cursor/skills/databases/scripts/requirements.txt +20 -0
- package/.cursor/skills/databases/scripts/tests/coverage-db.json +1 -0
- package/.cursor/skills/databases/scripts/tests/requirements.txt +4 -0
- package/.cursor/skills/databases/scripts/tests/test_db_backup.py +340 -0
- package/.cursor/skills/databases/scripts/tests/test_db_migrate.py +277 -0
- package/.cursor/skills/databases/scripts/tests/test_db_performance_check.py +370 -0
- package/.cursor/skills/ddd-modular-monolith/README.md +300 -0
- package/.cursor/skills/debugging/SKILL.md +98 -0
- package/.cursor/skills/debugging/references/defense-in-depth.md +124 -0
- package/.cursor/skills/debugging/references/root-cause-analysis-methods.md +140 -0
- package/.cursor/skills/debugging/references/root-cause-tracing.md +122 -0
- package/.cursor/skills/debugging/references/systematic-debugging.md +102 -0
- package/.cursor/skills/debugging/references/verification.md +123 -0
- package/.cursor/skills/debugging/scripts/find-polluter.sh +63 -0
- package/.cursor/skills/debugging/scripts/find-polluter.test.md +102 -0
- package/.cursor/skills/devops/.env.example +76 -0
- package/.cursor/skills/devops/SKILL.md +285 -0
- package/.cursor/skills/devops/references/browser-rendering.md +305 -0
- package/.cursor/skills/devops/references/cloudflare-d1-kv.md +123 -0
- package/.cursor/skills/devops/references/cloudflare-platform.md +271 -0
- package/.cursor/skills/devops/references/cloudflare-r2-storage.md +280 -0
- package/.cursor/skills/devops/references/cloudflare-workers-advanced.md +312 -0
- package/.cursor/skills/devops/references/cloudflare-workers-apis.md +309 -0
- package/.cursor/skills/devops/references/cloudflare-workers-basics.md +418 -0
- package/.cursor/skills/devops/references/docker-basics.md +297 -0
- package/.cursor/skills/devops/references/docker-compose.md +292 -0
- package/.cursor/skills/devops/references/gcloud-platform.md +297 -0
- package/.cursor/skills/devops/references/gcloud-services.md +304 -0
- package/.cursor/skills/devops/scripts/cloudflare_deploy.py +269 -0
- package/.cursor/skills/devops/scripts/docker_optimize.py +320 -0
- package/.cursor/skills/devops/scripts/requirements.txt +20 -0
- package/.cursor/skills/devops/scripts/tests/requirements.txt +3 -0
- package/.cursor/skills/devops/scripts/tests/test_cloudflare_deploy.py +285 -0
- package/.cursor/skills/devops/scripts/tests/test_docker_optimize.py +436 -0
- package/.cursor/skills/docs-seeker/.env.example +15 -0
- package/.cursor/skills/docs-seeker/SKILL.md +97 -0
- package/.cursor/skills/docs-seeker/package.json +25 -0
- package/.cursor/skills/docs-seeker/references/advanced.md +79 -0
- package/.cursor/skills/docs-seeker/references/context7-patterns.md +68 -0
- package/.cursor/skills/docs-seeker/references/errors.md +68 -0
- package/.cursor/skills/docs-seeker/scripts/analyze-llms-txt.js +211 -0
- package/.cursor/skills/docs-seeker/scripts/detect-topic.js +172 -0
- package/.cursor/skills/docs-seeker/scripts/fetch-docs.js +213 -0
- package/.cursor/skills/docs-seeker/scripts/tests/run-tests.js +72 -0
- package/.cursor/skills/docs-seeker/scripts/tests/test-analyze-llms.js +119 -0
- package/.cursor/skills/docs-seeker/scripts/tests/test-detect-topic.js +112 -0
- package/.cursor/skills/docs-seeker/scripts/tests/test-fetch-docs.js +84 -0
- package/.cursor/skills/docs-seeker/scripts/utils/env-loader.js +94 -0
- package/.cursor/skills/docs-seeker/workflows/library-search.md +87 -0
- package/.cursor/skills/docs-seeker/workflows/repo-analysis.md +91 -0
- package/.cursor/skills/docs-seeker/workflows/topic-search.md +77 -0
- package/.cursor/skills/document-skills/docx/LICENSE.txt +30 -0
- package/.cursor/skills/document-skills/docx/SKILL.md +197 -0
- package/.cursor/skills/document-skills/docx/docx-js.md +350 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/mce/mc.xsd +75 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/.cursor/skills/document-skills/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/.cursor/skills/document-skills/docx/ooxml/scripts/pack.py +159 -0
- package/.cursor/skills/document-skills/docx/ooxml/scripts/unpack.py +29 -0
- package/.cursor/skills/document-skills/docx/ooxml/scripts/validate.py +69 -0
- package/.cursor/skills/document-skills/docx/ooxml/scripts/validation/__init__.py +15 -0
- package/.cursor/skills/document-skills/docx/ooxml/scripts/validation/base.py +951 -0
- package/.cursor/skills/document-skills/docx/ooxml/scripts/validation/docx.py +274 -0
- package/.cursor/skills/document-skills/docx/ooxml/scripts/validation/pptx.py +315 -0
- package/.cursor/skills/document-skills/docx/ooxml/scripts/validation/redlining.py +279 -0
- package/.cursor/skills/document-skills/docx/ooxml.md +610 -0
- package/.cursor/skills/document-skills/docx/scripts/__init__.py +1 -0
- package/.cursor/skills/document-skills/docx/scripts/document.py +1276 -0
- package/.cursor/skills/document-skills/docx/scripts/templates/comments.xml +3 -0
- package/.cursor/skills/document-skills/docx/scripts/templates/commentsExtended.xml +3 -0
- package/.cursor/skills/document-skills/docx/scripts/templates/commentsExtensible.xml +3 -0
- package/.cursor/skills/document-skills/docx/scripts/templates/commentsIds.xml +3 -0
- package/.cursor/skills/document-skills/docx/scripts/templates/people.xml +3 -0
- package/.cursor/skills/document-skills/docx/scripts/utilities.py +374 -0
- package/.cursor/skills/document-skills/pdf/LICENSE.txt +30 -0
- package/.cursor/skills/document-skills/pdf/SKILL.md +294 -0
- package/.cursor/skills/document-skills/pdf/forms.md +205 -0
- package/.cursor/skills/document-skills/pdf/reference.md +612 -0
- package/.cursor/skills/document-skills/pdf/scripts/check_bounding_boxes.py +70 -0
- package/.cursor/skills/document-skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
- package/.cursor/skills/document-skills/pdf/scripts/check_fillable_fields.py +12 -0
- package/.cursor/skills/document-skills/pdf/scripts/convert_pdf_to_images.py +35 -0
- package/.cursor/skills/document-skills/pdf/scripts/create_validation_image.py +41 -0
- package/.cursor/skills/document-skills/pdf/scripts/extract_form_field_info.py +152 -0
- package/.cursor/skills/document-skills/pdf/scripts/fill_fillable_fields.py +114 -0
- package/.cursor/skills/document-skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
- package/.cursor/skills/document-skills/pptx/LICENSE.txt +30 -0
- package/.cursor/skills/document-skills/pptx/SKILL.md +484 -0
- package/.cursor/skills/document-skills/pptx/html2pptx.md +625 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/mce/mc.xsd +75 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/.cursor/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/.cursor/skills/document-skills/pptx/ooxml/scripts/pack.py +159 -0
- package/.cursor/skills/document-skills/pptx/ooxml/scripts/unpack.py +29 -0
- package/.cursor/skills/document-skills/pptx/ooxml/scripts/validate.py +69 -0
- package/.cursor/skills/document-skills/pptx/ooxml/scripts/validation/__init__.py +15 -0
- package/.cursor/skills/document-skills/pptx/ooxml/scripts/validation/base.py +951 -0
- package/.cursor/skills/document-skills/pptx/ooxml/scripts/validation/docx.py +274 -0
- package/.cursor/skills/document-skills/pptx/ooxml/scripts/validation/pptx.py +315 -0
- package/.cursor/skills/document-skills/pptx/ooxml/scripts/validation/redlining.py +279 -0
- package/.cursor/skills/document-skills/pptx/ooxml.md +427 -0
- package/.cursor/skills/document-skills/pptx/scripts/html2pptx.js +979 -0
- package/.cursor/skills/document-skills/pptx/scripts/inventory.py +1020 -0
- package/.cursor/skills/document-skills/pptx/scripts/rearrange.py +231 -0
- package/.cursor/skills/document-skills/pptx/scripts/replace.py +385 -0
- package/.cursor/skills/document-skills/pptx/scripts/thumbnail.py +450 -0
- package/.cursor/skills/document-skills/xlsx/LICENSE.txt +30 -0
- package/.cursor/skills/document-skills/xlsx/SKILL.md +289 -0
- package/.cursor/skills/document-skills/xlsx/recalc.py +178 -0
- package/.cursor/skills/engineering-discipline/incremental-change.md +15 -0
- package/.cursor/skills/engineering-discipline/index.yaml +30 -0
- package/.cursor/skills/engineering-discipline/planning-first.md +18 -0
- package/.cursor/skills/engineering-discipline/reasoning-clarity.md +19 -0
- package/.cursor/skills/engineering-discipline/verify-before-commit.md +17 -0
- package/.cursor/skills/file-organizer/SKILL.md +64 -0
- package/.cursor/skills/frontend-design/SKILL.md +91 -0
- package/.cursor/skills/frontend-design/references/ai-multimodal-overview.md +165 -0
- package/.cursor/skills/frontend-design/references/analysis-best-practices.md +80 -0
- package/.cursor/skills/frontend-design/references/analysis-prompts.md +141 -0
- package/.cursor/skills/frontend-design/references/analysis-techniques.md +118 -0
- package/.cursor/skills/frontend-design/references/animejs.md +396 -0
- package/.cursor/skills/frontend-design/references/asset-generation.md +337 -0
- package/.cursor/skills/frontend-design/references/design-extraction-overview.md +71 -0
- package/.cursor/skills/frontend-design/references/extraction-best-practices.md +141 -0
- package/.cursor/skills/frontend-design/references/extraction-output-templates.md +162 -0
- package/.cursor/skills/frontend-design/references/extraction-prompts.md +127 -0
- package/.cursor/skills/frontend-design/references/technical-accessibility.md +119 -0
- package/.cursor/skills/frontend-design/references/technical-best-practices.md +97 -0
- package/.cursor/skills/frontend-design/references/technical-optimization.md +44 -0
- package/.cursor/skills/frontend-design/references/technical-overview.md +90 -0
- package/.cursor/skills/frontend-design/references/technical-workflows.md +150 -0
- package/.cursor/skills/frontend-design/references/visual-analysis-overview.md +95 -0
- package/.cursor/skills/frontend-design-pro/SKILL.md +58 -0
- package/.cursor/skills/frontend-development/SKILL.md +399 -0
- package/.cursor/skills/frontend-development/resources/common-patterns.md +331 -0
- package/.cursor/skills/frontend-development/resources/complete-examples.md +872 -0
- package/.cursor/skills/frontend-development/resources/component-patterns.md +502 -0
- package/.cursor/skills/frontend-development/resources/data-fetching.md +767 -0
- package/.cursor/skills/frontend-development/resources/file-organization.md +502 -0
- package/.cursor/skills/frontend-development/resources/loading-and-error-states.md +501 -0
- package/.cursor/skills/frontend-development/resources/performance.md +406 -0
- package/.cursor/skills/frontend-development/resources/routing-guide.md +364 -0
- package/.cursor/skills/frontend-development/resources/styling-guide.md +428 -0
- package/.cursor/skills/frontend-development/resources/typescript-standards.md +418 -0
- package/.cursor/skills/git-automation/SKILL.md +68 -0
- package/.cursor/skills/git-automation/references/branch-finishing.md +64 -0
- package/.cursor/skills/google-adk-python/SKILL.md +237 -0
- package/.cursor/skills/install.ps1 +600 -0
- package/.cursor/skills/install.sh +685 -0
- package/.cursor/skills/kaizen/SKILL.md +94 -0
- package/.cursor/skills/mcp-builder/LICENSE.txt +202 -0
- package/.cursor/skills/mcp-builder/SKILL.md +328 -0
- package/.cursor/skills/mcp-builder/reference/evaluation.md +602 -0
- package/.cursor/skills/mcp-builder/reference/mcp_best_practices.md +915 -0
- package/.cursor/skills/mcp-builder/reference/node_mcp_server.md +916 -0
- package/.cursor/skills/mcp-builder/reference/python_mcp_server.md +752 -0
- package/.cursor/skills/mcp-builder/scripts/connections.py +151 -0
- package/.cursor/skills/mcp-builder/scripts/evaluation.py +373 -0
- package/.cursor/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
- package/.cursor/skills/mcp-builder/scripts/requirements.txt +2 -0
- package/.cursor/skills/mcp-management/README.md +219 -0
- package/.cursor/skills/mcp-management/SKILL.md +209 -0
- package/.cursor/skills/mcp-management/assets/tools.json +3146 -0
- package/.cursor/skills/mcp-management/references/configuration.md +114 -0
- package/.cursor/skills/mcp-management/references/gemini-cli-integration.md +215 -0
- package/.cursor/skills/mcp-management/references/mcp-protocol.md +116 -0
- package/.cursor/skills/mcp-management/scripts/.env.example +10 -0
- package/.cursor/skills/mcp-management/scripts/cli.ts +195 -0
- package/.cursor/skills/mcp-management/scripts/mcp-client.ts +230 -0
- package/.cursor/skills/mcp-management/scripts/package.json +20 -0
- package/.cursor/skills/mcp-management/scripts/tsconfig.json +15 -0
- package/.cursor/skills/media-processing/SKILL.md +91 -0
- package/.cursor/skills/media-processing/references/common-workflows.md +132 -0
- package/.cursor/skills/media-processing/references/ffmpeg-encoding.md +358 -0
- package/.cursor/skills/media-processing/references/ffmpeg-filters.md +503 -0
- package/.cursor/skills/media-processing/references/ffmpeg-streaming.md +403 -0
- package/.cursor/skills/media-processing/references/format-compatibility.md +375 -0
- package/.cursor/skills/media-processing/references/imagemagick-batch.md +612 -0
- package/.cursor/skills/media-processing/references/imagemagick-editing.md +623 -0
- package/.cursor/skills/media-processing/references/rmbg-background-removal.md +66 -0
- package/.cursor/skills/media-processing/references/troubleshooting.md +109 -0
- package/.cursor/skills/media-processing/scripts/README.md +111 -0
- package/.cursor/skills/media-processing/scripts/batch-remove-background.sh +124 -0
- package/.cursor/skills/media-processing/scripts/batch_resize.py +342 -0
- package/.cursor/skills/media-processing/scripts/media_convert.py +311 -0
- package/.cursor/skills/media-processing/scripts/remove-background.sh +96 -0
- package/.cursor/skills/media-processing/scripts/remove-bg-node.js +158 -0
- package/.cursor/skills/media-processing/scripts/requirements.txt +24 -0
- package/.cursor/skills/media-processing/scripts/tests/.coverage +0 -0
- package/.cursor/skills/media-processing/scripts/tests/requirements.txt +2 -0
- package/.cursor/skills/media-processing/scripts/tests/test_batch_resize.py +372 -0
- package/.cursor/skills/media-processing/scripts/tests/test_media_convert.py +259 -0
- package/.cursor/skills/media-processing/scripts/tests/test_video_optimize.py +397 -0
- package/.cursor/skills/media-processing/scripts/video_optimize.py +414 -0
- package/.cursor/skills/mobile-development/SKILL.md +212 -0
- package/.cursor/skills/mobile-development/references/mobile-android.md +604 -0
- package/.cursor/skills/mobile-development/references/mobile-best-practices.md +545 -0
- package/.cursor/skills/mobile-development/references/mobile-debugging.md +1089 -0
- package/.cursor/skills/mobile-development/references/mobile-frameworks.md +465 -0
- package/.cursor/skills/mobile-development/references/mobile-ios.md +496 -0
- package/.cursor/skills/mobile-development/references/mobile-mindset.md +544 -0
- package/.cursor/skills/payment-integration/README.md +185 -0
- package/.cursor/skills/payment-integration/SKILL.md +118 -0
- package/.cursor/skills/payment-integration/references/polar/benefits.md +396 -0
- package/.cursor/skills/payment-integration/references/polar/best-practices.md +482 -0
- package/.cursor/skills/payment-integration/references/polar/checkouts.md +266 -0
- package/.cursor/skills/payment-integration/references/polar/overview.md +184 -0
- package/.cursor/skills/payment-integration/references/polar/products.md +244 -0
- package/.cursor/skills/payment-integration/references/polar/sdk.md +436 -0
- package/.cursor/skills/payment-integration/references/polar/subscriptions.md +340 -0
- package/.cursor/skills/payment-integration/references/polar/webhooks.md +405 -0
- package/.cursor/skills/payment-integration/references/sepay/api.md +140 -0
- package/.cursor/skills/payment-integration/references/sepay/best-practices.md +337 -0
- package/.cursor/skills/payment-integration/references/sepay/overview.md +138 -0
- package/.cursor/skills/payment-integration/references/sepay/qr-codes.md +228 -0
- package/.cursor/skills/payment-integration/references/sepay/sdk.md +213 -0
- package/.cursor/skills/payment-integration/references/sepay/webhooks.md +208 -0
- package/.cursor/skills/payment-integration/scripts/.env.example +20 -0
- package/.cursor/skills/payment-integration/scripts/checkout-helper.js +244 -0
- package/.cursor/skills/payment-integration/scripts/package.json +17 -0
- package/.cursor/skills/payment-integration/scripts/polar-webhook-verify.js +202 -0
- package/.cursor/skills/payment-integration/scripts/sepay-webhook-verify.js +193 -0
- package/.cursor/skills/payment-integration/scripts/test-scripts.js +237 -0
- package/.cursor/skills/planning/SKILL.md +121 -0
- package/.cursor/skills/planning/references/codebase-understanding.md +62 -0
- package/.cursor/skills/planning/references/output-standards.md +87 -0
- package/.cursor/skills/planning/references/plan-organization.md +123 -0
- package/.cursor/skills/planning/references/research-phase.md +49 -0
- package/.cursor/skills/planning/references/solution-design.md +63 -0
- package/.cursor/skills/playwright-testing/SKILL.md +115 -0
- package/.cursor/skills/playwright-testing/references/playwright-patterns.md +122 -0
- package/.cursor/skills/problem-solving/SKILL.md +104 -0
- package/.cursor/skills/problem-solving/references/attribution.md +69 -0
- package/.cursor/skills/problem-solving/references/collision-zone-thinking.md +79 -0
- package/.cursor/skills/problem-solving/references/inversion-exercise.md +91 -0
- package/.cursor/skills/problem-solving/references/meta-pattern-recognition.md +87 -0
- package/.cursor/skills/problem-solving/references/scale-game.md +95 -0
- package/.cursor/skills/problem-solving/references/simplification-cascades.md +80 -0
- package/.cursor/skills/problem-solving/references/when-stuck.md +72 -0
- package/.cursor/skills/prompt-engineering/SKILL.md +126 -0
- package/.cursor/skills/prompt-engineering/references/anthropic-best-practices.md +160 -0
- package/.cursor/skills/pypict-testing/SKILL.md +79 -0
- package/.cursor/skills/repomix/SKILL.md +247 -0
- package/.cursor/skills/repomix/references/configuration.md +211 -0
- package/.cursor/skills/repomix/references/usage-patterns.md +232 -0
- package/.cursor/skills/repomix/scripts/.coverage +0 -0
- package/.cursor/skills/repomix/scripts/README.md +179 -0
- package/.cursor/skills/repomix/scripts/repomix_batch.py +455 -0
- package/.cursor/skills/repomix/scripts/repos.example.json +15 -0
- package/.cursor/skills/repomix/scripts/requirements.txt +15 -0
- package/.cursor/skills/repomix/scripts/tests/test_repomix_batch.py +531 -0
- package/.cursor/skills/research/SKILL.md +168 -0
- package/.cursor/skills/review-implementing/SKILL.md +287 -0
- package/.cursor/skills/sequential-thinking/.env.example +8 -0
- package/.cursor/skills/sequential-thinking/README.md +183 -0
- package/.cursor/skills/sequential-thinking/SKILL.md +94 -0
- package/.cursor/skills/sequential-thinking/package.json +31 -0
- package/.cursor/skills/sequential-thinking/references/advanced-strategies.md +79 -0
- package/.cursor/skills/sequential-thinking/references/advanced-techniques.md +76 -0
- package/.cursor/skills/sequential-thinking/references/core-patterns.md +95 -0
- package/.cursor/skills/sequential-thinking/references/examples-api.md +88 -0
- package/.cursor/skills/sequential-thinking/references/examples-architecture.md +94 -0
- package/.cursor/skills/sequential-thinking/references/examples-debug.md +90 -0
- package/.cursor/skills/sequential-thinking/scripts/format-thought.js +159 -0
- package/.cursor/skills/sequential-thinking/scripts/process-thought.js +236 -0
- package/.cursor/skills/sequential-thinking/tests/format-thought.test.js +133 -0
- package/.cursor/skills/sequential-thinking/tests/process-thought.test.js +215 -0
- package/.cursor/skills/shopify/README.md +66 -0
- package/.cursor/skills/shopify/SKILL.md +319 -0
- package/.cursor/skills/shopify/references/app-development.md +470 -0
- package/.cursor/skills/shopify/references/extensions.md +493 -0
- package/.cursor/skills/shopify/references/themes.md +498 -0
- package/.cursor/skills/shopify/scripts/.coverage +0 -0
- package/.cursor/skills/shopify/scripts/requirements.txt +19 -0
- package/.cursor/skills/shopify/scripts/shopify_init.py +423 -0
- package/.cursor/skills/shopify/scripts/tests/.coverage +0 -0
- package/.cursor/skills/shopify/scripts/tests/test_shopify_init.py +385 -0
- package/.cursor/skills/skill-creator/LICENSE.txt +202 -0
- package/.cursor/skills/skill-creator/SKILL.md +266 -0
- package/.cursor/skills/skill-creator/scripts/init_skill.py +303 -0
- package/.cursor/skills/skill-creator/scripts/package_skill.py +110 -0
- package/.cursor/skills/skill-creator/scripts/quick_validate.py +65 -0
- package/.cursor/skills/software-architecture/SKILL.md +91 -0
- package/.cursor/skills/software-architecture/references/solid-principles.md +293 -0
- package/.cursor/skills/subagent-driven-development/SKILL.md +237 -0
- package/.cursor/skills/test-driven-development/SKILL.md +130 -0
- package/.cursor/skills/test-driven-development/references/tdd-patterns.md +124 -0
- package/.cursor/skills/test-driven-development/references/testing-strategies.md +131 -0
- package/.cursor/skills/test-fixing/SKILL.md +256 -0
- package/.cursor/skills/theme-factory/SKILL.md +63 -0
- package/.cursor/skills/threejs/SKILL.md +89 -0
- package/.cursor/skills/threejs/references/01-getting-started.md +177 -0
- package/.cursor/skills/threejs/references/02-loaders.md +169 -0
- package/.cursor/skills/threejs/references/03-textures.md +170 -0
- package/.cursor/skills/threejs/references/04-cameras.md +195 -0
- package/.cursor/skills/threejs/references/05-lights.md +183 -0
- package/.cursor/skills/threejs/references/06-animations.md +214 -0
- package/.cursor/skills/threejs/references/07-math.md +260 -0
- package/.cursor/skills/threejs/references/08-interaction.md +267 -0
- package/.cursor/skills/threejs/references/09-postprocessing.md +240 -0
- package/.cursor/skills/threejs/references/10-controls.md +259 -0
- package/.cursor/skills/threejs/references/11-materials-advanced.md +270 -0
- package/.cursor/skills/threejs/references/12-performance.md +269 -0
- package/.cursor/skills/threejs/references/13-node-materials.md +298 -0
- package/.cursor/skills/threejs/references/14-physics-vr.md +304 -0
- package/.cursor/skills/threejs/references/15-specialized-loaders.md +333 -0
- package/.cursor/skills/threejs/references/16-webgpu.md +302 -0
- package/.cursor/skills/ui-styling/LICENSE.txt +202 -0
- package/.cursor/skills/ui-styling/SKILL.md +321 -0
- package/.cursor/skills/ui-styling/canvas-fonts/ArsenalSC-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/BigShoulders-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Boldonse-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Boldonse-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/CrimsonPro-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/DMMono-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/DMMono-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/EricaOne-OFL.txt +94 -0
- package/.cursor/skills/ui-styling/canvas-fonts/EricaOne-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/GeistMono-Bold.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/GeistMono-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/GeistMono-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Gloock-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Gloock-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/InstrumentSans-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Italiana-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Italiana-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Jura-Light.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Jura-Medium.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Jura-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Lora-Bold.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Lora-Italic.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Lora-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Lora-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/NationalPark-Bold.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/NationalPark-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/NationalPark-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Outfit-Bold.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Outfit-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Outfit-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/PixelifySans-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/PoiretOne-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/RedHatMono-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Silkscreen-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/SmoochSans-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Tektur-Medium.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Tektur-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/Tektur-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/WorkSans-Bold.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/WorkSans-Italic.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/WorkSans-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/WorkSans-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/canvas-fonts/YoungSerif-OFL.txt +93 -0
- package/.cursor/skills/ui-styling/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- package/.cursor/skills/ui-styling/references/canvas-design-system.md +320 -0
- package/.cursor/skills/ui-styling/references/shadcn-accessibility.md +471 -0
- package/.cursor/skills/ui-styling/references/shadcn-components.md +424 -0
- package/.cursor/skills/ui-styling/references/shadcn-theming.md +373 -0
- package/.cursor/skills/ui-styling/references/tailwind-customization.md +483 -0
- package/.cursor/skills/ui-styling/references/tailwind-responsive.md +382 -0
- package/.cursor/skills/ui-styling/references/tailwind-utilities.md +455 -0
- package/.cursor/skills/ui-styling/scripts/.coverage +0 -0
- package/.cursor/skills/ui-styling/scripts/requirements.txt +17 -0
- package/.cursor/skills/ui-styling/scripts/shadcn_add.py +292 -0
- package/.cursor/skills/ui-styling/scripts/tailwind_config_gen.py +456 -0
- package/.cursor/skills/ui-styling/scripts/tests/coverage-ui.json +1 -0
- package/.cursor/skills/ui-styling/scripts/tests/requirements.txt +3 -0
- package/.cursor/skills/ui-styling/scripts/tests/test_shadcn_add.py +266 -0
- package/.cursor/skills/ui-styling/scripts/tests/test_tailwind_config_gen.py +336 -0
- package/.cursor/skills/ui-ux-pro-max/SKILL.md +227 -0
- package/.cursor/skills/ui-ux-pro-max/data/charts.csv +26 -0
- package/.cursor/skills/ui-ux-pro-max/data/colors.csv +97 -0
- package/.cursor/skills/ui-ux-pro-max/data/landing.csv +31 -0
- package/.cursor/skills/ui-ux-pro-max/data/products.csv +97 -0
- package/.cursor/skills/ui-ux-pro-max/data/prompts.csv +24 -0
- package/.cursor/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/.cursor/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +51 -0
- package/.cursor/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/.cursor/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/.cursor/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/.cursor/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/.cursor/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/.cursor/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/.cursor/skills/ui-ux-pro-max/data/styles.csv +59 -0
- package/.cursor/skills/ui-ux-pro-max/data/typography.csv +58 -0
- package/.cursor/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/.cursor/skills/ui-ux-pro-max/scripts/core.py +236 -0
- package/.cursor/skills/ui-ux-pro-max/scripts/search.py +61 -0
- package/.cursor/skills/web-frameworks/SKILL.md +324 -0
- package/.cursor/skills/web-frameworks/references/nextjs-app-router.md +465 -0
- package/.cursor/skills/web-frameworks/references/nextjs-data-fetching.md +459 -0
- package/.cursor/skills/web-frameworks/references/nextjs-optimization.md +511 -0
- package/.cursor/skills/web-frameworks/references/nextjs-server-components.md +495 -0
- package/.cursor/skills/web-frameworks/references/remix-icon-integration.md +603 -0
- package/.cursor/skills/web-frameworks/references/turborepo-caching.md +551 -0
- package/.cursor/skills/web-frameworks/references/turborepo-pipelines.md +517 -0
- package/.cursor/skills/web-frameworks/references/turborepo-setup.md +542 -0
- package/.cursor/skills/web-frameworks/scripts/.coverage +0 -0
- package/.cursor/skills/web-frameworks/scripts/__init__.py +0 -0
- package/.cursor/skills/web-frameworks/scripts/nextjs_init.py +547 -0
- package/.cursor/skills/web-frameworks/scripts/requirements.txt +16 -0
- package/.cursor/skills/web-frameworks/scripts/tests/coverage-web.json +1 -0
- package/.cursor/skills/web-frameworks/scripts/tests/requirements.txt +3 -0
- package/.cursor/skills/web-frameworks/scripts/tests/test_nextjs_init.py +319 -0
- package/.cursor/skills/web-frameworks/scripts/tests/test_turborepo_migrate.py +374 -0
- package/.cursor/skills/web-frameworks/scripts/turborepo_migrate.py +394 -0
- package/.cursor/statusline.cjs +274 -0
- package/.cursor/statusline.ps1 +318 -0
- package/.cursor/statusline.sh +165 -0
- package/.cursor/team.yaml +92 -0
- package/.cursor/workflows/development-rules.md +42 -0
- package/.cursor/workflows/documentation-management.md +121 -0
- package/.cursor/workflows/feature.yaml +51 -0
- package/.cursor/workflows/hotfix.yaml +35 -0
- package/.cursor/workflows/orchestration-protocol.md +16 -0
- package/.cursor/workflows/primary-workflow.md +45 -0
- package/.cursor/workflows/release.yaml +61 -0
- package/.cursorrules +134 -0
- package/ANTIGRAVITY.md +86 -0
- package/CHANGELOG.md +346 -0
- package/CURSOR.md +85 -0
- package/LICENSE +21 -0
- package/README.md +201 -0
- package/bin/cli.js +2 -0
- package/docs/AI_CONTRACT.md +150 -0
- package/docs/ALL_COMMANDS.md +381 -0
- package/docs/ARCHITECTURE.md +207 -0
- package/docs/CI_CD.md +60 -0
- package/docs/CODEBASE.md +187 -0
- package/docs/CODE_STYLE.md +333 -0
- package/docs/COMPARISON.md +65 -0
- package/docs/LOCAL_ONLY_POLICY.md +39 -0
- package/docs/ORCHESTRATION.md +704 -0
- package/docs/PROJECT.md +143 -0
- package/docs/ROADMAP.md +112 -0
- package/docs/TEAM_GUIDE.md +100 -0
- package/docs/UX_MODES.md +173 -0
- package/docs/WORKFLOW.md +128 -0
- package/docs/engineering/core-philosophy.md +37 -0
- package/docs/engineering/reasoning-guidelines.md +34 -0
- package/docs/engineering/when-to-break-the-rules.md +31 -0
- package/package.json +83 -0
- package/presets/MIGRATION_GUIDE.md +270 -0
- package/presets/ci-cd/ai-review.yml +49 -0
- package/presets/enterprise/.cursorrules +131 -0
- package/presets/enterprise/README.md +204 -0
- package/presets/enterprise/contract.json +93 -0
- package/presets/professional/.cursorrules +113 -0
- package/presets/professional/README.md +140 -0
- package/presets/professional/contract.json +72 -0
- package/presets/rapid/contract.json +53 -0
- package/presets/rapid-mvp/.cursorrules +98 -0
- package/presets/rapid-mvp/README.md +107 -0
- package/scripts/add-shebang.js +13 -0
- package/scripts/analyze-skills.js +194 -0
- package/scripts/check-setup.ps1 +59 -0
- package/scripts/install-hooks.ps1 +74 -0
- package/scripts/install-hooks.sh +69 -0
- package/scripts/install.ps1 +204 -0
- package/scripts/install.sh +208 -0
- package/scripts/new-project.ps1 +101 -0
- package/scripts/new-project.sh +61 -0
- package/scripts/setup-enterprise.ps1 +319 -0
- package/scripts/setup-enterprise.sh +259 -0
- package/scripts/setup-professional.ps1 +232 -0
- package/scripts/setup-professional.sh +146 -0
- package/scripts/setup-rapid.ps1 +138 -0
- package/scripts/setup-rapid.sh +134 -0
- package/src/cli.js +601 -0
|
@@ -0,0 +1,3470 @@
|
|
|
1
|
+
{
|
|
2
|
+
"updatedAt": "2025-12-27T17:21:40.461Z",
|
|
3
|
+
"nodes": {
|
|
4
|
+
".antigravity\\skills\\ai-multimodal\\scripts\\check_setup.py": {
|
|
5
|
+
"type": "file",
|
|
6
|
+
"data": {
|
|
7
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\ai-multimodal\\scripts\\check_setup.py",
|
|
8
|
+
"size": 9051,
|
|
9
|
+
"lastModified": "2025-12-24T02:54:10.855Z",
|
|
10
|
+
"imports": [],
|
|
11
|
+
"functions": [],
|
|
12
|
+
"classes": [],
|
|
13
|
+
"lineCount": 300,
|
|
14
|
+
"language": "py"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
".antigravity\\skills\\ai-multimodal\\scripts\\document_converter.py": {
|
|
18
|
+
"type": "file",
|
|
19
|
+
"data": {
|
|
20
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\ai-multimodal\\scripts\\document_converter.py",
|
|
21
|
+
"size": 12882,
|
|
22
|
+
"lastModified": "2025-12-24T02:54:10.860Z",
|
|
23
|
+
"imports": [],
|
|
24
|
+
"functions": [],
|
|
25
|
+
"classes": [],
|
|
26
|
+
"lineCount": 396,
|
|
27
|
+
"language": "py"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
".antigravity\\skills\\ai-multimodal\\scripts\\gemini_batch_process.py": {
|
|
31
|
+
"type": "file",
|
|
32
|
+
"data": {
|
|
33
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\ai-multimodal\\scripts\\gemini_batch_process.py",
|
|
34
|
+
"size": 32141,
|
|
35
|
+
"lastModified": "2025-12-24T02:54:10.871Z",
|
|
36
|
+
"imports": [],
|
|
37
|
+
"functions": [],
|
|
38
|
+
"classes": [],
|
|
39
|
+
"lineCount": 897,
|
|
40
|
+
"language": "py"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
".antigravity\\skills\\ai-multimodal\\scripts\\media_optimizer.py": {
|
|
44
|
+
"type": "file",
|
|
45
|
+
"data": {
|
|
46
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\ai-multimodal\\scripts\\media_optimizer.py",
|
|
47
|
+
"size": 16973,
|
|
48
|
+
"lastModified": "2025-12-24T02:54:10.879Z",
|
|
49
|
+
"imports": [],
|
|
50
|
+
"functions": [],
|
|
51
|
+
"classes": [],
|
|
52
|
+
"lineCount": 507,
|
|
53
|
+
"language": "py"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
".antigravity\\skills\\ai-multimodal\\scripts\\tests\\test_document_converter.py": {
|
|
57
|
+
"type": "file",
|
|
58
|
+
"data": {
|
|
59
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\ai-multimodal\\scripts\\tests\\test_document_converter.py",
|
|
60
|
+
"size": 2303,
|
|
61
|
+
"lastModified": "2025-12-24T02:37:10.558Z",
|
|
62
|
+
"imports": [],
|
|
63
|
+
"functions": [],
|
|
64
|
+
"classes": [
|
|
65
|
+
"TestAPIKeyFinder",
|
|
66
|
+
"TestProjectRoot",
|
|
67
|
+
"TestMimeType",
|
|
68
|
+
"TestIntegration"
|
|
69
|
+
],
|
|
70
|
+
"lineCount": 75,
|
|
71
|
+
"language": "py"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
".antigravity\\skills\\ai-multimodal\\scripts\\tests\\test_gemini_batch_process.py": {
|
|
75
|
+
"type": "file",
|
|
76
|
+
"data": {
|
|
77
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\ai-multimodal\\scripts\\tests\\test_gemini_batch_process.py",
|
|
78
|
+
"size": 13039,
|
|
79
|
+
"lastModified": "2025-12-24T02:37:10.561Z",
|
|
80
|
+
"imports": [],
|
|
81
|
+
"functions": [],
|
|
82
|
+
"classes": [
|
|
83
|
+
"TestAPIKeyFinder",
|
|
84
|
+
"TestMimeTypeDetection",
|
|
85
|
+
"TestFileUpload",
|
|
86
|
+
"TestProcessFile",
|
|
87
|
+
"TestBatchProcessing",
|
|
88
|
+
"TestResultsSaving"
|
|
89
|
+
],
|
|
90
|
+
"lineCount": 363,
|
|
91
|
+
"language": "py"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
".antigravity\\skills\\ai-multimodal\\scripts\\tests\\test_media_optimizer.py": {
|
|
95
|
+
"type": "file",
|
|
96
|
+
"data": {
|
|
97
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\ai-multimodal\\scripts\\tests\\test_media_optimizer.py",
|
|
98
|
+
"size": 12197,
|
|
99
|
+
"lastModified": "2025-12-24T02:37:10.564Z",
|
|
100
|
+
"imports": [],
|
|
101
|
+
"functions": [],
|
|
102
|
+
"classes": [
|
|
103
|
+
"TestEnvLoading",
|
|
104
|
+
"TestFFmpegCheck",
|
|
105
|
+
"TestMediaInfo",
|
|
106
|
+
"TestVideoOptimization",
|
|
107
|
+
"TestAudioOptimization",
|
|
108
|
+
"TestImageOptimization",
|
|
109
|
+
"TestVideoSplitting"
|
|
110
|
+
],
|
|
111
|
+
"lineCount": 374,
|
|
112
|
+
"language": "py"
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
".antigravity\\skills\\better-auth\\scripts\\better_auth_init.py": {
|
|
116
|
+
"type": "file",
|
|
117
|
+
"data": {
|
|
118
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\better-auth\\scripts\\better_auth_init.py",
|
|
119
|
+
"size": 16915,
|
|
120
|
+
"lastModified": "2025-12-24T02:54:10.973Z",
|
|
121
|
+
"imports": [
|
|
122
|
+
"better-sqlite3",
|
|
123
|
+
"mysql2/promise",
|
|
124
|
+
"pg",
|
|
125
|
+
"better-auth/adapters/drizzle",
|
|
126
|
+
"@/db",
|
|
127
|
+
"better-auth/adapters/prisma",
|
|
128
|
+
"@prisma/client",
|
|
129
|
+
"better-auth/adapters/kysely",
|
|
130
|
+
"better-auth/adapters/mongodb",
|
|
131
|
+
"better-auth",
|
|
132
|
+
"better-auth/plugins"
|
|
133
|
+
],
|
|
134
|
+
"functions": [
|
|
135
|
+
"prisma",
|
|
136
|
+
"auth"
|
|
137
|
+
],
|
|
138
|
+
"classes": [
|
|
139
|
+
"class",
|
|
140
|
+
"BetterAuthInit"
|
|
141
|
+
],
|
|
142
|
+
"lineCount": 522,
|
|
143
|
+
"language": "py"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
".antigravity\\skills\\better-auth\\scripts\\tests\\test_better_auth_init.py": {
|
|
147
|
+
"type": "file",
|
|
148
|
+
"data": {
|
|
149
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\better-auth\\scripts\\tests\\test_better_auth_init.py",
|
|
150
|
+
"size": 15917,
|
|
151
|
+
"lastModified": "2025-12-24T02:54:10.991Z",
|
|
152
|
+
"imports": [
|
|
153
|
+
"better-sqlite3",
|
|
154
|
+
"pg",
|
|
155
|
+
"better-auth/plugins"
|
|
156
|
+
],
|
|
157
|
+
"functions": [],
|
|
158
|
+
"classes": [
|
|
159
|
+
"TestBetterAuthInit",
|
|
160
|
+
"TestMainFunction"
|
|
161
|
+
],
|
|
162
|
+
"lineCount": 422,
|
|
163
|
+
"language": "py"
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
".antigravity\\skills\\chrome-devtools\\scripts\\click.js": {
|
|
167
|
+
"type": "file",
|
|
168
|
+
"data": {
|
|
169
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\chrome-devtools\\scripts\\click.js",
|
|
170
|
+
"size": 2318,
|
|
171
|
+
"lastModified": "2025-12-24T02:37:10.625Z",
|
|
172
|
+
"imports": [
|
|
173
|
+
"./lib/browser.js",
|
|
174
|
+
"./lib/selector.js"
|
|
175
|
+
],
|
|
176
|
+
"functions": [
|
|
177
|
+
"click",
|
|
178
|
+
"args",
|
|
179
|
+
"browser",
|
|
180
|
+
"page",
|
|
181
|
+
"parsed",
|
|
182
|
+
"navigationPromise",
|
|
183
|
+
"enhanced"
|
|
184
|
+
],
|
|
185
|
+
"classes": [],
|
|
186
|
+
"lineCount": 80,
|
|
187
|
+
"language": "js"
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
".antigravity\\skills\\chrome-devtools\\scripts\\console.js": {
|
|
191
|
+
"type": "file",
|
|
192
|
+
"data": {
|
|
193
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\chrome-devtools\\scripts\\console.js",
|
|
194
|
+
"size": 1821,
|
|
195
|
+
"lastModified": "2025-12-24T02:37:10.627Z",
|
|
196
|
+
"imports": [
|
|
197
|
+
"./lib/browser.js"
|
|
198
|
+
],
|
|
199
|
+
"functions": [
|
|
200
|
+
"monitorConsole",
|
|
201
|
+
"args",
|
|
202
|
+
"browser",
|
|
203
|
+
"page",
|
|
204
|
+
"messages",
|
|
205
|
+
"filterTypes",
|
|
206
|
+
"type"
|
|
207
|
+
],
|
|
208
|
+
"classes": [],
|
|
209
|
+
"lineCount": 76,
|
|
210
|
+
"language": "js"
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
".antigravity\\skills\\chrome-devtools\\scripts\\evaluate.js": {
|
|
214
|
+
"type": "file",
|
|
215
|
+
"data": {
|
|
216
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\chrome-devtools\\scripts\\evaluate.js",
|
|
217
|
+
"size": 1137,
|
|
218
|
+
"lastModified": "2025-12-24T02:37:10.628Z",
|
|
219
|
+
"imports": [
|
|
220
|
+
"./lib/browser.js"
|
|
221
|
+
],
|
|
222
|
+
"functions": [
|
|
223
|
+
"evaluate",
|
|
224
|
+
"args",
|
|
225
|
+
"browser",
|
|
226
|
+
"page",
|
|
227
|
+
"result"
|
|
228
|
+
],
|
|
229
|
+
"classes": [],
|
|
230
|
+
"lineCount": 50,
|
|
231
|
+
"language": "js"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
".antigravity\\skills\\chrome-devtools\\scripts\\fill.js": {
|
|
235
|
+
"type": "file",
|
|
236
|
+
"data": {
|
|
237
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\chrome-devtools\\scripts\\fill.js",
|
|
238
|
+
"size": 1976,
|
|
239
|
+
"lastModified": "2025-12-24T02:37:10.629Z",
|
|
240
|
+
"imports": [
|
|
241
|
+
"./lib/browser.js",
|
|
242
|
+
"./lib/selector.js"
|
|
243
|
+
],
|
|
244
|
+
"functions": [
|
|
245
|
+
"fill",
|
|
246
|
+
"args",
|
|
247
|
+
"browser",
|
|
248
|
+
"page",
|
|
249
|
+
"parsed",
|
|
250
|
+
"enhanced"
|
|
251
|
+
],
|
|
252
|
+
"classes": [],
|
|
253
|
+
"lineCount": 73,
|
|
254
|
+
"language": "js"
|
|
255
|
+
}
|
|
256
|
+
},
|
|
257
|
+
".antigravity\\skills\\chrome-devtools\\scripts\\lib\\browser.js": {
|
|
258
|
+
"type": "file",
|
|
259
|
+
"data": {
|
|
260
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\chrome-devtools\\scripts\\lib\\browser.js",
|
|
261
|
+
"size": 2587,
|
|
262
|
+
"lastModified": "2025-12-24T02:37:10.637Z",
|
|
263
|
+
"imports": [
|
|
264
|
+
"puppeteer",
|
|
265
|
+
"debug"
|
|
266
|
+
],
|
|
267
|
+
"functions": [
|
|
268
|
+
"log",
|
|
269
|
+
"browserInstance",
|
|
270
|
+
"pageInstance",
|
|
271
|
+
"getBrowser",
|
|
272
|
+
"launchOptions",
|
|
273
|
+
"getPage",
|
|
274
|
+
"pages",
|
|
275
|
+
"closeBrowser",
|
|
276
|
+
"parseArgs",
|
|
277
|
+
"args",
|
|
278
|
+
"i",
|
|
279
|
+
"arg",
|
|
280
|
+
"key",
|
|
281
|
+
"nextArg",
|
|
282
|
+
"outputJSON",
|
|
283
|
+
"outputError"
|
|
284
|
+
],
|
|
285
|
+
"classes": [],
|
|
286
|
+
"lineCount": 123,
|
|
287
|
+
"language": "js"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
".antigravity\\skills\\chrome-devtools\\scripts\\lib\\selector.js": {
|
|
291
|
+
"type": "file",
|
|
292
|
+
"data": {
|
|
293
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\chrome-devtools\\scripts\\lib\\selector.js",
|
|
294
|
+
"size": 5600,
|
|
295
|
+
"lastModified": "2025-12-24T02:37:10.639Z",
|
|
296
|
+
"imports": [],
|
|
297
|
+
"functions": [
|
|
298
|
+
"parseSelector",
|
|
299
|
+
"validateXPath",
|
|
300
|
+
"dangerous",
|
|
301
|
+
"lower",
|
|
302
|
+
"waitForElement",
|
|
303
|
+
"defaultOptions",
|
|
304
|
+
"locator",
|
|
305
|
+
"clickElement",
|
|
306
|
+
"typeIntoElement",
|
|
307
|
+
"getElement",
|
|
308
|
+
"element",
|
|
309
|
+
"result",
|
|
310
|
+
"elementHandle",
|
|
311
|
+
"enhanceError"
|
|
312
|
+
],
|
|
313
|
+
"classes": [],
|
|
314
|
+
"lineCount": 179,
|
|
315
|
+
"language": "js"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
".antigravity\\skills\\chrome-devtools\\scripts\\navigate.js": {
|
|
319
|
+
"type": "file",
|
|
320
|
+
"data": {
|
|
321
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\chrome-devtools\\scripts\\navigate.js",
|
|
322
|
+
"size": 1040,
|
|
323
|
+
"lastModified": "2025-12-24T02:37:10.640Z",
|
|
324
|
+
"imports": [
|
|
325
|
+
"./lib/browser.js"
|
|
326
|
+
],
|
|
327
|
+
"functions": [
|
|
328
|
+
"navigate",
|
|
329
|
+
"args",
|
|
330
|
+
"browser",
|
|
331
|
+
"page",
|
|
332
|
+
"options",
|
|
333
|
+
"result"
|
|
334
|
+
],
|
|
335
|
+
"classes": [],
|
|
336
|
+
"lineCount": 47,
|
|
337
|
+
"language": "js"
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
".antigravity\\skills\\chrome-devtools\\scripts\\network.js": {
|
|
341
|
+
"type": "file",
|
|
342
|
+
"data": {
|
|
343
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\chrome-devtools\\scripts\\network.js",
|
|
344
|
+
"size": 2829,
|
|
345
|
+
"lastModified": "2025-12-24T02:37:10.641Z",
|
|
346
|
+
"imports": [
|
|
347
|
+
"./lib/browser.js",
|
|
348
|
+
"fs/promises"
|
|
349
|
+
],
|
|
350
|
+
"functions": [
|
|
351
|
+
"monitorNetwork",
|
|
352
|
+
"args",
|
|
353
|
+
"browser",
|
|
354
|
+
"page",
|
|
355
|
+
"requests",
|
|
356
|
+
"filterTypes",
|
|
357
|
+
"resourceType",
|
|
358
|
+
"responses",
|
|
359
|
+
"request",
|
|
360
|
+
"combined",
|
|
361
|
+
"result"
|
|
362
|
+
],
|
|
363
|
+
"classes": [],
|
|
364
|
+
"lineCount": 103,
|
|
365
|
+
"language": "js"
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
".antigravity\\skills\\chrome-devtools\\scripts\\performance.js": {
|
|
369
|
+
"type": "file",
|
|
370
|
+
"data": {
|
|
371
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\chrome-devtools\\scripts\\performance.js",
|
|
372
|
+
"size": 4020,
|
|
373
|
+
"lastModified": "2025-12-24T02:37:10.645Z",
|
|
374
|
+
"imports": [
|
|
375
|
+
"./lib/browser.js",
|
|
376
|
+
"fs/promises"
|
|
377
|
+
],
|
|
378
|
+
"functions": [
|
|
379
|
+
"measurePerformance",
|
|
380
|
+
"args",
|
|
381
|
+
"browser",
|
|
382
|
+
"page",
|
|
383
|
+
"metrics",
|
|
384
|
+
"vitals",
|
|
385
|
+
"entries",
|
|
386
|
+
"lastEntry",
|
|
387
|
+
"paintEntries",
|
|
388
|
+
"fcpEntry",
|
|
389
|
+
"resources",
|
|
390
|
+
"result"
|
|
391
|
+
],
|
|
392
|
+
"classes": [],
|
|
393
|
+
"lineCount": 146,
|
|
394
|
+
"language": "js"
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
".antigravity\\skills\\chrome-devtools\\scripts\\screenshot.js": {
|
|
398
|
+
"type": "file",
|
|
399
|
+
"data": {
|
|
400
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\chrome-devtools\\scripts\\screenshot.js",
|
|
401
|
+
"size": 6180,
|
|
402
|
+
"lastModified": "2025-12-24T02:37:10.646Z",
|
|
403
|
+
"imports": [
|
|
404
|
+
"./lib/browser.js",
|
|
405
|
+
"./lib/selector.js",
|
|
406
|
+
"fs/promises",
|
|
407
|
+
"path",
|
|
408
|
+
"child_process"
|
|
409
|
+
],
|
|
410
|
+
"functions": [
|
|
411
|
+
"compressImageIfNeeded",
|
|
412
|
+
"stats",
|
|
413
|
+
"originalSize",
|
|
414
|
+
"maxSizeBytes",
|
|
415
|
+
"ext",
|
|
416
|
+
"tempPath",
|
|
417
|
+
"compressedStats",
|
|
418
|
+
"compressedSize",
|
|
419
|
+
"finalPath",
|
|
420
|
+
"finalStats",
|
|
421
|
+
"screenshot",
|
|
422
|
+
"args",
|
|
423
|
+
"browser",
|
|
424
|
+
"page",
|
|
425
|
+
"screenshotOptions",
|
|
426
|
+
"parsed",
|
|
427
|
+
"element",
|
|
428
|
+
"result",
|
|
429
|
+
"maxSize",
|
|
430
|
+
"compressionResult",
|
|
431
|
+
"enhanced"
|
|
432
|
+
],
|
|
433
|
+
"classes": [],
|
|
434
|
+
"lineCount": 181,
|
|
435
|
+
"language": "js"
|
|
436
|
+
}
|
|
437
|
+
},
|
|
438
|
+
".antigravity\\skills\\chrome-devtools\\scripts\\snapshot.js": {
|
|
439
|
+
"type": "file",
|
|
440
|
+
"data": {
|
|
441
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\chrome-devtools\\scripts\\snapshot.js",
|
|
442
|
+
"size": 3649,
|
|
443
|
+
"lastModified": "2025-12-24T02:37:10.648Z",
|
|
444
|
+
"imports": [
|
|
445
|
+
"./lib/browser.js",
|
|
446
|
+
"fs/promises"
|
|
447
|
+
],
|
|
448
|
+
"functions": [
|
|
449
|
+
"snapshot",
|
|
450
|
+
"args",
|
|
451
|
+
"browser",
|
|
452
|
+
"page",
|
|
453
|
+
"elements",
|
|
454
|
+
"interactiveSelectors",
|
|
455
|
+
"selector",
|
|
456
|
+
"nodes",
|
|
457
|
+
"rect",
|
|
458
|
+
"uniqueSelector",
|
|
459
|
+
"classes",
|
|
460
|
+
"getXPath",
|
|
461
|
+
"ix",
|
|
462
|
+
"siblings",
|
|
463
|
+
"i",
|
|
464
|
+
"sibling",
|
|
465
|
+
"result"
|
|
466
|
+
],
|
|
467
|
+
"classes": [],
|
|
468
|
+
"lineCount": 132,
|
|
469
|
+
"language": "js"
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
".antigravity\\skills\\chrome-devtools\\scripts\\__tests__\\selector.test.js": {
|
|
473
|
+
"type": "file",
|
|
474
|
+
"data": {
|
|
475
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\chrome-devtools\\scripts\\__tests__\\selector.test.js",
|
|
476
|
+
"size": 6735,
|
|
477
|
+
"lastModified": "2025-12-24T02:37:10.624Z",
|
|
478
|
+
"imports": [
|
|
479
|
+
"../lib/selector.js"
|
|
480
|
+
],
|
|
481
|
+
"functions": [
|
|
482
|
+
"result",
|
|
483
|
+
"longSelector"
|
|
484
|
+
],
|
|
485
|
+
"classes": [
|
|
486
|
+
"selectors"
|
|
487
|
+
],
|
|
488
|
+
"lineCount": 211,
|
|
489
|
+
"language": "js"
|
|
490
|
+
}
|
|
491
|
+
},
|
|
492
|
+
".antigravity\\skills\\common\\api_key_helper.py": {
|
|
493
|
+
"type": "file",
|
|
494
|
+
"data": {
|
|
495
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\common\\api_key_helper.py",
|
|
496
|
+
"size": 9804,
|
|
497
|
+
"lastModified": "2025-12-24T02:54:11.272Z",
|
|
498
|
+
"imports": [],
|
|
499
|
+
"functions": [],
|
|
500
|
+
"classes": [],
|
|
501
|
+
"lineCount": 301,
|
|
502
|
+
"language": "py"
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
".antigravity\\skills\\databases\\scripts\\db_backup.py": {
|
|
506
|
+
"type": "file",
|
|
507
|
+
"data": {
|
|
508
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\databases\\scripts\\db_backup.py",
|
|
509
|
+
"size": 17267,
|
|
510
|
+
"lastModified": "2025-12-24T02:37:10.709Z",
|
|
511
|
+
"imports": [],
|
|
512
|
+
"functions": [],
|
|
513
|
+
"classes": [
|
|
514
|
+
"from",
|
|
515
|
+
"class",
|
|
516
|
+
"BackupManager"
|
|
517
|
+
],
|
|
518
|
+
"lineCount": 503,
|
|
519
|
+
"language": "py"
|
|
520
|
+
}
|
|
521
|
+
},
|
|
522
|
+
".antigravity\\skills\\databases\\scripts\\db_migrate.py": {
|
|
523
|
+
"type": "file",
|
|
524
|
+
"data": {
|
|
525
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\databases\\scripts\\db_migrate.py",
|
|
526
|
+
"size": 14187,
|
|
527
|
+
"lastModified": "2025-12-24T02:37:10.711Z",
|
|
528
|
+
"imports": [],
|
|
529
|
+
"functions": [],
|
|
530
|
+
"classes": [
|
|
531
|
+
"from",
|
|
532
|
+
"class",
|
|
533
|
+
"MigrationManager"
|
|
534
|
+
],
|
|
535
|
+
"lineCount": 415,
|
|
536
|
+
"language": "py"
|
|
537
|
+
}
|
|
538
|
+
},
|
|
539
|
+
".antigravity\\skills\\databases\\scripts\\db_performance_check.py": {
|
|
540
|
+
"type": "file",
|
|
541
|
+
"data": {
|
|
542
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\databases\\scripts\\db_performance_check.py",
|
|
543
|
+
"size": 15994,
|
|
544
|
+
"lastModified": "2025-12-24T02:37:10.712Z",
|
|
545
|
+
"imports": [],
|
|
546
|
+
"functions": [],
|
|
547
|
+
"classes": [
|
|
548
|
+
"class",
|
|
549
|
+
"PerformanceAnalyzer"
|
|
550
|
+
],
|
|
551
|
+
"lineCount": 445,
|
|
552
|
+
"language": "py"
|
|
553
|
+
}
|
|
554
|
+
},
|
|
555
|
+
".antigravity\\skills\\databases\\scripts\\tests\\test_db_backup.py": {
|
|
556
|
+
"type": "file",
|
|
557
|
+
"data": {
|
|
558
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\databases\\scripts\\tests\\test_db_backup.py",
|
|
559
|
+
"size": 11140,
|
|
560
|
+
"lastModified": "2025-12-24T02:37:10.721Z",
|
|
561
|
+
"imports": [],
|
|
562
|
+
"functions": [],
|
|
563
|
+
"classes": [
|
|
564
|
+
"TestBackupInfo",
|
|
565
|
+
"TestBackupManager"
|
|
566
|
+
],
|
|
567
|
+
"lineCount": 341,
|
|
568
|
+
"language": "py"
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
".antigravity\\skills\\databases\\scripts\\tests\\test_db_migrate.py": {
|
|
572
|
+
"type": "file",
|
|
573
|
+
"data": {
|
|
574
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\databases\\scripts\\tests\\test_db_migrate.py",
|
|
575
|
+
"size": 9806,
|
|
576
|
+
"lastModified": "2025-12-24T02:37:10.723Z",
|
|
577
|
+
"imports": [],
|
|
578
|
+
"functions": [],
|
|
579
|
+
"classes": [
|
|
580
|
+
"TestMigration",
|
|
581
|
+
"TestMigrationManager"
|
|
582
|
+
],
|
|
583
|
+
"lineCount": 278,
|
|
584
|
+
"language": "py"
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
".antigravity\\skills\\databases\\scripts\\tests\\test_db_performance_check.py": {
|
|
588
|
+
"type": "file",
|
|
589
|
+
"data": {
|
|
590
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\databases\\scripts\\tests\\test_db_performance_check.py",
|
|
591
|
+
"size": 12303,
|
|
592
|
+
"lastModified": "2025-12-24T02:37:10.726Z",
|
|
593
|
+
"imports": [],
|
|
594
|
+
"functions": [],
|
|
595
|
+
"classes": [
|
|
596
|
+
"TestSlowQuery",
|
|
597
|
+
"TestIndexRecommendation",
|
|
598
|
+
"TestPerformanceReport",
|
|
599
|
+
"TestPerformanceAnalyzer",
|
|
600
|
+
"TestIntegration"
|
|
601
|
+
],
|
|
602
|
+
"lineCount": 371,
|
|
603
|
+
"language": "py"
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
".antigravity\\skills\\devops\\scripts\\cloudflare_deploy.py": {
|
|
607
|
+
"type": "file",
|
|
608
|
+
"data": {
|
|
609
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\devops\\scripts\\cloudflare_deploy.py",
|
|
610
|
+
"size": 7916,
|
|
611
|
+
"lastModified": "2025-12-24T02:37:10.769Z",
|
|
612
|
+
"imports": [],
|
|
613
|
+
"functions": [],
|
|
614
|
+
"classes": [
|
|
615
|
+
"CloudflareDeployError",
|
|
616
|
+
"CloudflareDeploy"
|
|
617
|
+
],
|
|
618
|
+
"lineCount": 270,
|
|
619
|
+
"language": "py"
|
|
620
|
+
}
|
|
621
|
+
},
|
|
622
|
+
".antigravity\\skills\\devops\\scripts\\docker_optimize.py": {
|
|
623
|
+
"type": "file",
|
|
624
|
+
"data": {
|
|
625
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\devops\\scripts\\docker_optimize.py",
|
|
626
|
+
"size": 11606,
|
|
627
|
+
"lastModified": "2025-12-24T02:37:10.771Z",
|
|
628
|
+
"imports": [],
|
|
629
|
+
"functions": [],
|
|
630
|
+
"classes": [
|
|
631
|
+
"DockerfileAnalyzer"
|
|
632
|
+
],
|
|
633
|
+
"lineCount": 321,
|
|
634
|
+
"language": "py"
|
|
635
|
+
}
|
|
636
|
+
},
|
|
637
|
+
".antigravity\\skills\\devops\\scripts\\tests\\test_cloudflare_deploy.py": {
|
|
638
|
+
"type": "file",
|
|
639
|
+
"data": {
|
|
640
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\devops\\scripts\\tests\\test_cloudflare_deploy.py",
|
|
641
|
+
"size": 9546,
|
|
642
|
+
"lastModified": "2025-12-24T02:37:10.777Z",
|
|
643
|
+
"imports": [],
|
|
644
|
+
"functions": [],
|
|
645
|
+
"classes": [
|
|
646
|
+
"TestCloudflareDeployInit",
|
|
647
|
+
"TestValidateProject",
|
|
648
|
+
"TestCheckWranglerInstalled",
|
|
649
|
+
"TestGetWorkerName",
|
|
650
|
+
"TestBuildDeployCommand",
|
|
651
|
+
"TestRunCommand",
|
|
652
|
+
"TestDeploy",
|
|
653
|
+
"TestIntegration"
|
|
654
|
+
],
|
|
655
|
+
"lineCount": 286,
|
|
656
|
+
"language": "py"
|
|
657
|
+
}
|
|
658
|
+
},
|
|
659
|
+
".antigravity\\skills\\devops\\scripts\\tests\\test_docker_optimize.py": {
|
|
660
|
+
"type": "file",
|
|
661
|
+
"data": {
|
|
662
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\devops\\scripts\\tests\\test_docker_optimize.py",
|
|
663
|
+
"size": 13405,
|
|
664
|
+
"lastModified": "2025-12-24T02:37:10.779Z",
|
|
665
|
+
"imports": [],
|
|
666
|
+
"functions": [],
|
|
667
|
+
"classes": [
|
|
668
|
+
"TestDockerfileAnalyzerInit",
|
|
669
|
+
"TestLoadDockerfile",
|
|
670
|
+
"TestAnalyzeBaseImage",
|
|
671
|
+
"TestAnalyzeMultiStage",
|
|
672
|
+
"TestAnalyzeLayerCaching",
|
|
673
|
+
"TestAnalyzeSecurity",
|
|
674
|
+
"TestAnalyzeAptCache",
|
|
675
|
+
"TestAnalyzeCombineRun",
|
|
676
|
+
"TestAnalyzeWorkdir",
|
|
677
|
+
"TestFullAnalyze",
|
|
678
|
+
"TestPrintResults",
|
|
679
|
+
"TestIntegration"
|
|
680
|
+
],
|
|
681
|
+
"lineCount": 437,
|
|
682
|
+
"language": "py"
|
|
683
|
+
}
|
|
684
|
+
},
|
|
685
|
+
".antigravity\\skills\\docs-seeker\\scripts\\analyze-llms-txt.js": {
|
|
686
|
+
"type": "file",
|
|
687
|
+
"data": {
|
|
688
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\docs-seeker\\scripts\\analyze-llms-txt.js",
|
|
689
|
+
"size": 5394,
|
|
690
|
+
"lastModified": "2025-12-24T02:37:10.792Z",
|
|
691
|
+
"imports": [],
|
|
692
|
+
"functions": [
|
|
693
|
+
"env",
|
|
694
|
+
"DEBUG",
|
|
695
|
+
"PRIORITY_KEYWORDS",
|
|
696
|
+
"categorizeUrl",
|
|
697
|
+
"urlLower",
|
|
698
|
+
"priorities",
|
|
699
|
+
"keywords",
|
|
700
|
+
"parseUrls",
|
|
701
|
+
"urls",
|
|
702
|
+
"lines",
|
|
703
|
+
"trimmed",
|
|
704
|
+
"urlMatch",
|
|
705
|
+
"groupByPriority",
|
|
706
|
+
"groups",
|
|
707
|
+
"priority",
|
|
708
|
+
"suggestAgentDistribution",
|
|
709
|
+
"agents",
|
|
710
|
+
"analyzeLlmsTxt",
|
|
711
|
+
"grouped",
|
|
712
|
+
"distribution",
|
|
713
|
+
"main",
|
|
714
|
+
"args",
|
|
715
|
+
"fs",
|
|
716
|
+
"filePath",
|
|
717
|
+
"result"
|
|
718
|
+
],
|
|
719
|
+
"classes": [],
|
|
720
|
+
"lineCount": 212,
|
|
721
|
+
"language": "js"
|
|
722
|
+
}
|
|
723
|
+
},
|
|
724
|
+
".antigravity\\skills\\docs-seeker\\scripts\\detect-topic.js": {
|
|
725
|
+
"type": "file",
|
|
726
|
+
"data": {
|
|
727
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\docs-seeker\\scripts\\detect-topic.js",
|
|
728
|
+
"size": 4628,
|
|
729
|
+
"lastModified": "2025-12-24T02:37:10.794Z",
|
|
730
|
+
"imports": [],
|
|
731
|
+
"functions": [
|
|
732
|
+
"env",
|
|
733
|
+
"DEBUG",
|
|
734
|
+
"TOPIC_PATTERNS",
|
|
735
|
+
"GENERAL_PATTERNS",
|
|
736
|
+
"normalizeTopic",
|
|
737
|
+
"normalizeLibrary",
|
|
738
|
+
"detectTopic",
|
|
739
|
+
"trimmedQuery",
|
|
740
|
+
"match",
|
|
741
|
+
"i",
|
|
742
|
+
"pattern",
|
|
743
|
+
"main",
|
|
744
|
+
"args",
|
|
745
|
+
"query",
|
|
746
|
+
"result"
|
|
747
|
+
],
|
|
748
|
+
"classes": [],
|
|
749
|
+
"lineCount": 173,
|
|
750
|
+
"language": "js"
|
|
751
|
+
}
|
|
752
|
+
},
|
|
753
|
+
".antigravity\\skills\\docs-seeker\\scripts\\fetch-docs.js": {
|
|
754
|
+
"type": "file",
|
|
755
|
+
"data": {
|
|
756
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\docs-seeker\\scripts\\fetch-docs.js",
|
|
757
|
+
"size": 5194,
|
|
758
|
+
"lastModified": "2025-12-24T02:37:10.796Z",
|
|
759
|
+
"imports": [],
|
|
760
|
+
"functions": [
|
|
761
|
+
"https",
|
|
762
|
+
"env",
|
|
763
|
+
"DEBUG",
|
|
764
|
+
"API_KEY",
|
|
765
|
+
"httpsGet",
|
|
766
|
+
"options",
|
|
767
|
+
"data",
|
|
768
|
+
"buildContext7Url",
|
|
769
|
+
"normalized",
|
|
770
|
+
"baseUrl",
|
|
771
|
+
"getUrlVariations",
|
|
772
|
+
"urls",
|
|
773
|
+
"knownRepos",
|
|
774
|
+
"repo",
|
|
775
|
+
"fetchDocs",
|
|
776
|
+
"topicInfo",
|
|
777
|
+
"libraryMatch",
|
|
778
|
+
"library",
|
|
779
|
+
"content",
|
|
780
|
+
"main",
|
|
781
|
+
"args",
|
|
782
|
+
"query",
|
|
783
|
+
"result"
|
|
784
|
+
],
|
|
785
|
+
"classes": [],
|
|
786
|
+
"lineCount": 214,
|
|
787
|
+
"language": "js"
|
|
788
|
+
}
|
|
789
|
+
},
|
|
790
|
+
".antigravity\\skills\\docs-seeker\\scripts\\tests\\run-tests.js": {
|
|
791
|
+
"type": "file",
|
|
792
|
+
"data": {
|
|
793
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\docs-seeker\\scripts\\tests\\run-tests.js",
|
|
794
|
+
"size": 1626,
|
|
795
|
+
"lastModified": "2025-12-24T02:37:10.798Z",
|
|
796
|
+
"imports": [],
|
|
797
|
+
"functions": [
|
|
798
|
+
"path",
|
|
799
|
+
"tests",
|
|
800
|
+
"totalPassed",
|
|
801
|
+
"totalFailed",
|
|
802
|
+
"runTest",
|
|
803
|
+
"testPath",
|
|
804
|
+
"proc",
|
|
805
|
+
"runAllTests",
|
|
806
|
+
"failedTests"
|
|
807
|
+
],
|
|
808
|
+
"classes": [],
|
|
809
|
+
"lineCount": 73,
|
|
810
|
+
"language": "js"
|
|
811
|
+
}
|
|
812
|
+
},
|
|
813
|
+
".antigravity\\skills\\docs-seeker\\scripts\\tests\\test-analyze-llms.js": {
|
|
814
|
+
"type": "file",
|
|
815
|
+
"data": {
|
|
816
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\docs-seeker\\scripts\\tests\\test-analyze-llms.js",
|
|
817
|
+
"size": 3950,
|
|
818
|
+
"lastModified": "2025-12-24T02:37:10.799Z",
|
|
819
|
+
"imports": [],
|
|
820
|
+
"functions": [
|
|
821
|
+
"passed",
|
|
822
|
+
"failed",
|
|
823
|
+
"assert",
|
|
824
|
+
"assertEqual",
|
|
825
|
+
"sampleContent",
|
|
826
|
+
"urls",
|
|
827
|
+
"emptyContent",
|
|
828
|
+
"emptyUrls",
|
|
829
|
+
"testUrls",
|
|
830
|
+
"grouped",
|
|
831
|
+
"dist1",
|
|
832
|
+
"dist2",
|
|
833
|
+
"dist3",
|
|
834
|
+
"dist4",
|
|
835
|
+
"analysis"
|
|
836
|
+
],
|
|
837
|
+
"classes": [],
|
|
838
|
+
"lineCount": 120,
|
|
839
|
+
"language": "js"
|
|
840
|
+
}
|
|
841
|
+
},
|
|
842
|
+
".antigravity\\skills\\docs-seeker\\scripts\\tests\\test-detect-topic.js": {
|
|
843
|
+
"type": "file",
|
|
844
|
+
"data": {
|
|
845
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\docs-seeker\\scripts\\tests\\test-detect-topic.js",
|
|
846
|
+
"size": 4121,
|
|
847
|
+
"lastModified": "2025-12-24T02:37:10.801Z",
|
|
848
|
+
"imports": [],
|
|
849
|
+
"functions": [
|
|
850
|
+
"passed",
|
|
851
|
+
"failed",
|
|
852
|
+
"assert",
|
|
853
|
+
"assertEqual",
|
|
854
|
+
"topicQuery1",
|
|
855
|
+
"topicQuery2",
|
|
856
|
+
"topicQuery3",
|
|
857
|
+
"topicQuery4",
|
|
858
|
+
"topicQuery5",
|
|
859
|
+
"generalQuery1",
|
|
860
|
+
"generalQuery2",
|
|
861
|
+
"generalQuery3",
|
|
862
|
+
"generalQuery4",
|
|
863
|
+
"edgeCase1",
|
|
864
|
+
"edgeCase2",
|
|
865
|
+
"edgeCase3"
|
|
866
|
+
],
|
|
867
|
+
"classes": [],
|
|
868
|
+
"lineCount": 113,
|
|
869
|
+
"language": "js"
|
|
870
|
+
}
|
|
871
|
+
},
|
|
872
|
+
".antigravity\\skills\\docs-seeker\\scripts\\tests\\test-fetch-docs.js": {
|
|
873
|
+
"type": "file",
|
|
874
|
+
"data": {
|
|
875
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\docs-seeker\\scripts\\tests\\test-fetch-docs.js",
|
|
876
|
+
"size": 2378,
|
|
877
|
+
"lastModified": "2025-12-24T02:37:10.803Z",
|
|
878
|
+
"imports": [],
|
|
879
|
+
"functions": [
|
|
880
|
+
"passed",
|
|
881
|
+
"failed",
|
|
882
|
+
"assert",
|
|
883
|
+
"assertEqual",
|
|
884
|
+
"testUrlVariations",
|
|
885
|
+
"urls1",
|
|
886
|
+
"urls2",
|
|
887
|
+
"urls3"
|
|
888
|
+
],
|
|
889
|
+
"classes": [],
|
|
890
|
+
"lineCount": 85,
|
|
891
|
+
"language": "js"
|
|
892
|
+
}
|
|
893
|
+
},
|
|
894
|
+
".antigravity\\skills\\docs-seeker\\scripts\\utils\\env-loader.js": {
|
|
895
|
+
"type": "file",
|
|
896
|
+
"data": {
|
|
897
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\docs-seeker\\scripts\\utils\\env-loader.js",
|
|
898
|
+
"size": 2514,
|
|
899
|
+
"lastModified": "2025-12-24T02:54:11.448Z",
|
|
900
|
+
"imports": [],
|
|
901
|
+
"functions": [
|
|
902
|
+
"fs",
|
|
903
|
+
"path",
|
|
904
|
+
"parseEnvFile",
|
|
905
|
+
"env",
|
|
906
|
+
"lines",
|
|
907
|
+
"match",
|
|
908
|
+
"key",
|
|
909
|
+
"value",
|
|
910
|
+
"loadEnv",
|
|
911
|
+
"skillDir",
|
|
912
|
+
"skillsDir",
|
|
913
|
+
"claudeDir",
|
|
914
|
+
"envPaths",
|
|
915
|
+
"mergedEnv",
|
|
916
|
+
"content",
|
|
917
|
+
"parsed",
|
|
918
|
+
"getEnv"
|
|
919
|
+
],
|
|
920
|
+
"classes": [],
|
|
921
|
+
"lineCount": 95,
|
|
922
|
+
"language": "js"
|
|
923
|
+
}
|
|
924
|
+
},
|
|
925
|
+
".antigravity\\skills\\document-skills\\docx\\ooxml\\scripts\\pack.py": {
|
|
926
|
+
"type": "file",
|
|
927
|
+
"data": {
|
|
928
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\docx\\ooxml\\scripts\\pack.py",
|
|
929
|
+
"size": 5755,
|
|
930
|
+
"lastModified": "2025-12-24T02:37:10.903Z",
|
|
931
|
+
"imports": [],
|
|
932
|
+
"functions": [],
|
|
933
|
+
"classes": [],
|
|
934
|
+
"lineCount": 160,
|
|
935
|
+
"language": "py"
|
|
936
|
+
}
|
|
937
|
+
},
|
|
938
|
+
".antigravity\\skills\\document-skills\\docx\\ooxml\\scripts\\unpack.py": {
|
|
939
|
+
"type": "file",
|
|
940
|
+
"data": {
|
|
941
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\docx\\ooxml\\scripts\\unpack.py",
|
|
942
|
+
"size": 1066,
|
|
943
|
+
"lastModified": "2025-12-24T02:37:10.906Z",
|
|
944
|
+
"imports": [],
|
|
945
|
+
"functions": [],
|
|
946
|
+
"classes": [],
|
|
947
|
+
"lineCount": 30,
|
|
948
|
+
"language": "py"
|
|
949
|
+
}
|
|
950
|
+
},
|
|
951
|
+
".antigravity\\skills\\document-skills\\docx\\ooxml\\scripts\\validate.py": {
|
|
952
|
+
"type": "file",
|
|
953
|
+
"data": {
|
|
954
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\docx\\ooxml\\scripts\\validate.py",
|
|
955
|
+
"size": 2028,
|
|
956
|
+
"lastModified": "2025-12-24T02:37:10.907Z",
|
|
957
|
+
"imports": [],
|
|
958
|
+
"functions": [],
|
|
959
|
+
"classes": [],
|
|
960
|
+
"lineCount": 70,
|
|
961
|
+
"language": "py"
|
|
962
|
+
}
|
|
963
|
+
},
|
|
964
|
+
".antigravity\\skills\\document-skills\\docx\\ooxml\\scripts\\validation\\base.py": {
|
|
965
|
+
"type": "file",
|
|
966
|
+
"data": {
|
|
967
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\docx\\ooxml\\scripts\\validation\\base.py",
|
|
968
|
+
"size": 40843,
|
|
969
|
+
"lastModified": "2025-12-24T02:37:10.912Z",
|
|
970
|
+
"imports": [],
|
|
971
|
+
"functions": [],
|
|
972
|
+
"classes": [
|
|
973
|
+
"BaseSchemaValidator"
|
|
974
|
+
],
|
|
975
|
+
"lineCount": 952,
|
|
976
|
+
"language": "py"
|
|
977
|
+
}
|
|
978
|
+
},
|
|
979
|
+
".antigravity\\skills\\document-skills\\docx\\ooxml\\scripts\\validation\\docx.py": {
|
|
980
|
+
"type": "file",
|
|
981
|
+
"data": {
|
|
982
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\docx\\ooxml\\scripts\\validation\\docx.py",
|
|
983
|
+
"size": 10270,
|
|
984
|
+
"lastModified": "2025-12-24T02:37:10.914Z",
|
|
985
|
+
"imports": [],
|
|
986
|
+
"functions": [],
|
|
987
|
+
"classes": [
|
|
988
|
+
"DOCXSchemaValidator"
|
|
989
|
+
],
|
|
990
|
+
"lineCount": 275,
|
|
991
|
+
"language": "py"
|
|
992
|
+
}
|
|
993
|
+
},
|
|
994
|
+
".antigravity\\skills\\document-skills\\docx\\ooxml\\scripts\\validation\\pptx.py": {
|
|
995
|
+
"type": "file",
|
|
996
|
+
"data": {
|
|
997
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\docx\\ooxml\\scripts\\validation\\pptx.py",
|
|
998
|
+
"size": 12642,
|
|
999
|
+
"lastModified": "2025-12-24T02:37:10.916Z",
|
|
1000
|
+
"imports": [],
|
|
1001
|
+
"functions": [],
|
|
1002
|
+
"classes": [
|
|
1003
|
+
"PPTXSchemaValidator"
|
|
1004
|
+
],
|
|
1005
|
+
"lineCount": 316,
|
|
1006
|
+
"language": "py"
|
|
1007
|
+
}
|
|
1008
|
+
},
|
|
1009
|
+
".antigravity\\skills\\document-skills\\docx\\ooxml\\scripts\\validation\\redlining.py": {
|
|
1010
|
+
"type": "file",
|
|
1011
|
+
"data": {
|
|
1012
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\docx\\ooxml\\scripts\\validation\\redlining.py",
|
|
1013
|
+
"size": 11458,
|
|
1014
|
+
"lastModified": "2025-12-24T02:37:10.917Z",
|
|
1015
|
+
"imports": [],
|
|
1016
|
+
"functions": [],
|
|
1017
|
+
"classes": [
|
|
1018
|
+
"RedliningValidator"
|
|
1019
|
+
],
|
|
1020
|
+
"lineCount": 280,
|
|
1021
|
+
"language": "py"
|
|
1022
|
+
}
|
|
1023
|
+
},
|
|
1024
|
+
".antigravity\\skills\\document-skills\\docx\\ooxml\\scripts\\validation\\__init__.py": {
|
|
1025
|
+
"type": "file",
|
|
1026
|
+
"data": {
|
|
1027
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\docx\\ooxml\\scripts\\validation\\__init__.py",
|
|
1028
|
+
"size": 351,
|
|
1029
|
+
"lastModified": "2025-12-24T02:37:10.909Z",
|
|
1030
|
+
"imports": [],
|
|
1031
|
+
"functions": [],
|
|
1032
|
+
"classes": [],
|
|
1033
|
+
"lineCount": 16,
|
|
1034
|
+
"language": "py"
|
|
1035
|
+
}
|
|
1036
|
+
},
|
|
1037
|
+
".antigravity\\skills\\document-skills\\docx\\scripts\\document.py": {
|
|
1038
|
+
"type": "file",
|
|
1039
|
+
"data": {
|
|
1040
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\docx\\scripts\\document.py",
|
|
1041
|
+
"size": 51685,
|
|
1042
|
+
"lastModified": "2025-12-24T02:37:10.923Z",
|
|
1043
|
+
"imports": [],
|
|
1044
|
+
"functions": [],
|
|
1045
|
+
"classes": [
|
|
1046
|
+
"DocxXMLEditor",
|
|
1047
|
+
"Document"
|
|
1048
|
+
],
|
|
1049
|
+
"lineCount": 1277,
|
|
1050
|
+
"language": "py"
|
|
1051
|
+
}
|
|
1052
|
+
},
|
|
1053
|
+
".antigravity\\skills\\document-skills\\docx\\scripts\\utilities.py": {
|
|
1054
|
+
"type": "file",
|
|
1055
|
+
"data": {
|
|
1056
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\docx\\scripts\\utilities.py",
|
|
1057
|
+
"size": 14068,
|
|
1058
|
+
"lastModified": "2025-12-24T02:37:10.939Z",
|
|
1059
|
+
"imports": [],
|
|
1060
|
+
"functions": [],
|
|
1061
|
+
"classes": [
|
|
1062
|
+
"XMLEditor",
|
|
1063
|
+
"parses"
|
|
1064
|
+
],
|
|
1065
|
+
"lineCount": 375,
|
|
1066
|
+
"language": "py"
|
|
1067
|
+
}
|
|
1068
|
+
},
|
|
1069
|
+
".antigravity\\skills\\document-skills\\docx\\scripts\\__init__.py": {
|
|
1070
|
+
"type": "file",
|
|
1071
|
+
"data": {
|
|
1072
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\docx\\scripts\\__init__.py",
|
|
1073
|
+
"size": 66,
|
|
1074
|
+
"lastModified": "2025-12-24T02:37:10.919Z",
|
|
1075
|
+
"imports": [],
|
|
1076
|
+
"functions": [],
|
|
1077
|
+
"classes": [],
|
|
1078
|
+
"lineCount": 2,
|
|
1079
|
+
"language": "py"
|
|
1080
|
+
}
|
|
1081
|
+
},
|
|
1082
|
+
".antigravity\\skills\\document-skills\\pdf\\scripts\\check_bounding_boxes.py": {
|
|
1083
|
+
"type": "file",
|
|
1084
|
+
"data": {
|
|
1085
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pdf\\scripts\\check_bounding_boxes.py",
|
|
1086
|
+
"size": 3209,
|
|
1087
|
+
"lastModified": "2025-12-24T02:37:10.955Z",
|
|
1088
|
+
"imports": [],
|
|
1089
|
+
"functions": [],
|
|
1090
|
+
"classes": [
|
|
1091
|
+
"import",
|
|
1092
|
+
"class"
|
|
1093
|
+
],
|
|
1094
|
+
"lineCount": 71,
|
|
1095
|
+
"language": "py"
|
|
1096
|
+
}
|
|
1097
|
+
},
|
|
1098
|
+
".antigravity\\skills\\document-skills\\pdf\\scripts\\check_bounding_boxes_test.py": {
|
|
1099
|
+
"type": "file",
|
|
1100
|
+
"data": {
|
|
1101
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pdf\\scripts\\check_bounding_boxes_test.py",
|
|
1102
|
+
"size": 9044,
|
|
1103
|
+
"lastModified": "2025-12-24T02:37:10.958Z",
|
|
1104
|
+
"imports": [],
|
|
1105
|
+
"functions": [],
|
|
1106
|
+
"classes": [
|
|
1107
|
+
"TestGetBoundingBoxMessages"
|
|
1108
|
+
],
|
|
1109
|
+
"lineCount": 227,
|
|
1110
|
+
"language": "py"
|
|
1111
|
+
}
|
|
1112
|
+
},
|
|
1113
|
+
".antigravity\\skills\\document-skills\\pdf\\scripts\\check_fillable_fields.py": {
|
|
1114
|
+
"type": "file",
|
|
1115
|
+
"data": {
|
|
1116
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pdf\\scripts\\check_fillable_fields.py",
|
|
1117
|
+
"size": 374,
|
|
1118
|
+
"lastModified": "2025-12-24T02:37:10.972Z",
|
|
1119
|
+
"imports": [],
|
|
1120
|
+
"functions": [],
|
|
1121
|
+
"classes": [],
|
|
1122
|
+
"lineCount": 13,
|
|
1123
|
+
"language": "py"
|
|
1124
|
+
}
|
|
1125
|
+
},
|
|
1126
|
+
".antigravity\\skills\\document-skills\\pdf\\scripts\\convert_pdf_to_images.py": {
|
|
1127
|
+
"type": "file",
|
|
1128
|
+
"data": {
|
|
1129
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pdf\\scripts\\convert_pdf_to_images.py",
|
|
1130
|
+
"size": 1158,
|
|
1131
|
+
"lastModified": "2025-12-24T02:37:10.977Z",
|
|
1132
|
+
"imports": [],
|
|
1133
|
+
"functions": [],
|
|
1134
|
+
"classes": [],
|
|
1135
|
+
"lineCount": 36,
|
|
1136
|
+
"language": "py"
|
|
1137
|
+
}
|
|
1138
|
+
},
|
|
1139
|
+
".antigravity\\skills\\document-skills\\pdf\\scripts\\create_validation_image.py": {
|
|
1140
|
+
"type": "file",
|
|
1141
|
+
"data": {
|
|
1142
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pdf\\scripts\\create_validation_image.py",
|
|
1143
|
+
"size": 1644,
|
|
1144
|
+
"lastModified": "2025-12-24T02:37:10.989Z",
|
|
1145
|
+
"imports": [],
|
|
1146
|
+
"functions": [],
|
|
1147
|
+
"classes": [],
|
|
1148
|
+
"lineCount": 42,
|
|
1149
|
+
"language": "py"
|
|
1150
|
+
}
|
|
1151
|
+
},
|
|
1152
|
+
".antigravity\\skills\\document-skills\\pdf\\scripts\\extract_form_field_info.py": {
|
|
1153
|
+
"type": "file",
|
|
1154
|
+
"data": {
|
|
1155
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pdf\\scripts\\extract_form_field_info.py",
|
|
1156
|
+
"size": 6279,
|
|
1157
|
+
"lastModified": "2025-12-24T02:37:11.001Z",
|
|
1158
|
+
"imports": [],
|
|
1159
|
+
"functions": [],
|
|
1160
|
+
"classes": [],
|
|
1161
|
+
"lineCount": 153,
|
|
1162
|
+
"language": "py"
|
|
1163
|
+
}
|
|
1164
|
+
},
|
|
1165
|
+
".antigravity\\skills\\document-skills\\pdf\\scripts\\fill_fillable_fields.py": {
|
|
1166
|
+
"type": "file",
|
|
1167
|
+
"data": {
|
|
1168
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pdf\\scripts\\fill_fillable_fields.py",
|
|
1169
|
+
"size": 4977,
|
|
1170
|
+
"lastModified": "2025-12-24T02:37:11.004Z",
|
|
1171
|
+
"imports": [],
|
|
1172
|
+
"functions": [],
|
|
1173
|
+
"classes": [],
|
|
1174
|
+
"lineCount": 115,
|
|
1175
|
+
"language": "py"
|
|
1176
|
+
}
|
|
1177
|
+
},
|
|
1178
|
+
".antigravity\\skills\\document-skills\\pdf\\scripts\\fill_pdf_form_with_annotations.py": {
|
|
1179
|
+
"type": "file",
|
|
1180
|
+
"data": {
|
|
1181
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pdf\\scripts\\fill_pdf_form_with_annotations.py",
|
|
1182
|
+
"size": 3703,
|
|
1183
|
+
"lastModified": "2025-12-24T02:37:11.006Z",
|
|
1184
|
+
"imports": [],
|
|
1185
|
+
"functions": [],
|
|
1186
|
+
"classes": [],
|
|
1187
|
+
"lineCount": 108,
|
|
1188
|
+
"language": "py"
|
|
1189
|
+
}
|
|
1190
|
+
},
|
|
1191
|
+
".antigravity\\skills\\document-skills\\pptx\\ooxml\\scripts\\pack.py": {
|
|
1192
|
+
"type": "file",
|
|
1193
|
+
"data": {
|
|
1194
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pptx\\ooxml\\scripts\\pack.py",
|
|
1195
|
+
"size": 5755,
|
|
1196
|
+
"lastModified": "2025-12-24T02:37:11.224Z",
|
|
1197
|
+
"imports": [],
|
|
1198
|
+
"functions": [],
|
|
1199
|
+
"classes": [],
|
|
1200
|
+
"lineCount": 160,
|
|
1201
|
+
"language": "py"
|
|
1202
|
+
}
|
|
1203
|
+
},
|
|
1204
|
+
".antigravity\\skills\\document-skills\\pptx\\ooxml\\scripts\\unpack.py": {
|
|
1205
|
+
"type": "file",
|
|
1206
|
+
"data": {
|
|
1207
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pptx\\ooxml\\scripts\\unpack.py",
|
|
1208
|
+
"size": 1066,
|
|
1209
|
+
"lastModified": "2025-12-24T02:37:11.227Z",
|
|
1210
|
+
"imports": [],
|
|
1211
|
+
"functions": [],
|
|
1212
|
+
"classes": [],
|
|
1213
|
+
"lineCount": 30,
|
|
1214
|
+
"language": "py"
|
|
1215
|
+
}
|
|
1216
|
+
},
|
|
1217
|
+
".antigravity\\skills\\document-skills\\pptx\\ooxml\\scripts\\validate.py": {
|
|
1218
|
+
"type": "file",
|
|
1219
|
+
"data": {
|
|
1220
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pptx\\ooxml\\scripts\\validate.py",
|
|
1221
|
+
"size": 2028,
|
|
1222
|
+
"lastModified": "2025-12-24T02:37:11.229Z",
|
|
1223
|
+
"imports": [],
|
|
1224
|
+
"functions": [],
|
|
1225
|
+
"classes": [],
|
|
1226
|
+
"lineCount": 70,
|
|
1227
|
+
"language": "py"
|
|
1228
|
+
}
|
|
1229
|
+
},
|
|
1230
|
+
".antigravity\\skills\\document-skills\\pptx\\ooxml\\scripts\\validation\\base.py": {
|
|
1231
|
+
"type": "file",
|
|
1232
|
+
"data": {
|
|
1233
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pptx\\ooxml\\scripts\\validation\\base.py",
|
|
1234
|
+
"size": 40843,
|
|
1235
|
+
"lastModified": "2025-12-24T02:37:11.236Z",
|
|
1236
|
+
"imports": [],
|
|
1237
|
+
"functions": [],
|
|
1238
|
+
"classes": [
|
|
1239
|
+
"BaseSchemaValidator"
|
|
1240
|
+
],
|
|
1241
|
+
"lineCount": 952,
|
|
1242
|
+
"language": "py"
|
|
1243
|
+
}
|
|
1244
|
+
},
|
|
1245
|
+
".antigravity\\skills\\document-skills\\pptx\\ooxml\\scripts\\validation\\docx.py": {
|
|
1246
|
+
"type": "file",
|
|
1247
|
+
"data": {
|
|
1248
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pptx\\ooxml\\scripts\\validation\\docx.py",
|
|
1249
|
+
"size": 10270,
|
|
1250
|
+
"lastModified": "2025-12-24T02:37:11.240Z",
|
|
1251
|
+
"imports": [],
|
|
1252
|
+
"functions": [],
|
|
1253
|
+
"classes": [
|
|
1254
|
+
"DOCXSchemaValidator"
|
|
1255
|
+
],
|
|
1256
|
+
"lineCount": 275,
|
|
1257
|
+
"language": "py"
|
|
1258
|
+
}
|
|
1259
|
+
},
|
|
1260
|
+
".antigravity\\skills\\document-skills\\pptx\\ooxml\\scripts\\validation\\pptx.py": {
|
|
1261
|
+
"type": "file",
|
|
1262
|
+
"data": {
|
|
1263
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pptx\\ooxml\\scripts\\validation\\pptx.py",
|
|
1264
|
+
"size": 12642,
|
|
1265
|
+
"lastModified": "2025-12-24T02:37:11.242Z",
|
|
1266
|
+
"imports": [],
|
|
1267
|
+
"functions": [],
|
|
1268
|
+
"classes": [
|
|
1269
|
+
"PPTXSchemaValidator"
|
|
1270
|
+
],
|
|
1271
|
+
"lineCount": 316,
|
|
1272
|
+
"language": "py"
|
|
1273
|
+
}
|
|
1274
|
+
},
|
|
1275
|
+
".antigravity\\skills\\document-skills\\pptx\\ooxml\\scripts\\validation\\redlining.py": {
|
|
1276
|
+
"type": "file",
|
|
1277
|
+
"data": {
|
|
1278
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pptx\\ooxml\\scripts\\validation\\redlining.py",
|
|
1279
|
+
"size": 11458,
|
|
1280
|
+
"lastModified": "2025-12-24T02:37:11.243Z",
|
|
1281
|
+
"imports": [],
|
|
1282
|
+
"functions": [],
|
|
1283
|
+
"classes": [
|
|
1284
|
+
"RedliningValidator"
|
|
1285
|
+
],
|
|
1286
|
+
"lineCount": 280,
|
|
1287
|
+
"language": "py"
|
|
1288
|
+
}
|
|
1289
|
+
},
|
|
1290
|
+
".antigravity\\skills\\document-skills\\pptx\\ooxml\\scripts\\validation\\__init__.py": {
|
|
1291
|
+
"type": "file",
|
|
1292
|
+
"data": {
|
|
1293
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pptx\\ooxml\\scripts\\validation\\__init__.py",
|
|
1294
|
+
"size": 351,
|
|
1295
|
+
"lastModified": "2025-12-24T02:37:11.232Z",
|
|
1296
|
+
"imports": [],
|
|
1297
|
+
"functions": [],
|
|
1298
|
+
"classes": [],
|
|
1299
|
+
"lineCount": 16,
|
|
1300
|
+
"language": "py"
|
|
1301
|
+
}
|
|
1302
|
+
},
|
|
1303
|
+
".antigravity\\skills\\document-skills\\pptx\\scripts\\html2pptx.js": {
|
|
1304
|
+
"type": "file",
|
|
1305
|
+
"data": {
|
|
1306
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pptx\\scripts\\html2pptx.js",
|
|
1307
|
+
"size": 38773,
|
|
1308
|
+
"lastModified": "2025-12-24T02:37:11.248Z",
|
|
1309
|
+
"imports": [],
|
|
1310
|
+
"functions": [
|
|
1311
|
+
"pptx",
|
|
1312
|
+
"path",
|
|
1313
|
+
"sharp",
|
|
1314
|
+
"PT_PER_PX",
|
|
1315
|
+
"PX_PER_IN",
|
|
1316
|
+
"EMU_PER_IN",
|
|
1317
|
+
"getBodyDimensions",
|
|
1318
|
+
"bodyDimensions",
|
|
1319
|
+
"body",
|
|
1320
|
+
"style",
|
|
1321
|
+
"errors",
|
|
1322
|
+
"widthOverflowPx",
|
|
1323
|
+
"heightOverflowPx",
|
|
1324
|
+
"widthOverflowPt",
|
|
1325
|
+
"heightOverflowPt",
|
|
1326
|
+
"directions",
|
|
1327
|
+
"reminder",
|
|
1328
|
+
"validateDimensions",
|
|
1329
|
+
"widthInches",
|
|
1330
|
+
"heightInches",
|
|
1331
|
+
"layoutWidth",
|
|
1332
|
+
"layoutHeight",
|
|
1333
|
+
"validateTextBoxPosition",
|
|
1334
|
+
"slideHeightInches",
|
|
1335
|
+
"minBottomMargin",
|
|
1336
|
+
"fontSize",
|
|
1337
|
+
"bottomEdge",
|
|
1338
|
+
"distanceFromBottom",
|
|
1339
|
+
"getText",
|
|
1340
|
+
"textPrefix",
|
|
1341
|
+
"addBackground",
|
|
1342
|
+
"imagePath",
|
|
1343
|
+
"addElements",
|
|
1344
|
+
"shapeOptions",
|
|
1345
|
+
"listOptions",
|
|
1346
|
+
"lineHeight",
|
|
1347
|
+
"isSingleLine",
|
|
1348
|
+
"adjustedX",
|
|
1349
|
+
"adjustedW",
|
|
1350
|
+
"widthIncrease",
|
|
1351
|
+
"align",
|
|
1352
|
+
"textOptions",
|
|
1353
|
+
"extractSlideData",
|
|
1354
|
+
"SINGLE_WEIGHT_FONTS",
|
|
1355
|
+
"shouldSkipBold",
|
|
1356
|
+
"normalizedFont",
|
|
1357
|
+
"pxToInch",
|
|
1358
|
+
"pxToPoints",
|
|
1359
|
+
"rgbToHex",
|
|
1360
|
+
"match",
|
|
1361
|
+
"extractAlpha",
|
|
1362
|
+
"alpha",
|
|
1363
|
+
"applyTextTransform",
|
|
1364
|
+
"getRotation",
|
|
1365
|
+
"angle",
|
|
1366
|
+
"rotateMatch",
|
|
1367
|
+
"matrixMatch",
|
|
1368
|
+
"values",
|
|
1369
|
+
"matrixAngle",
|
|
1370
|
+
"getPositionAndSize",
|
|
1371
|
+
"isVertical",
|
|
1372
|
+
"centerX",
|
|
1373
|
+
"centerY",
|
|
1374
|
+
"parseBoxShadow",
|
|
1375
|
+
"insetMatch",
|
|
1376
|
+
"colorMatch",
|
|
1377
|
+
"parts",
|
|
1378
|
+
"offsetX",
|
|
1379
|
+
"offsetY",
|
|
1380
|
+
"blur",
|
|
1381
|
+
"offset",
|
|
1382
|
+
"opacity",
|
|
1383
|
+
"opacityMatch",
|
|
1384
|
+
"parseInlineFormatting",
|
|
1385
|
+
"prevNodeIsText",
|
|
1386
|
+
"textTransform",
|
|
1387
|
+
"isText",
|
|
1388
|
+
"text",
|
|
1389
|
+
"prevRun",
|
|
1390
|
+
"options",
|
|
1391
|
+
"computed",
|
|
1392
|
+
"isBold",
|
|
1393
|
+
"transparency",
|
|
1394
|
+
"transformStr",
|
|
1395
|
+
"bodyStyle",
|
|
1396
|
+
"bgImage",
|
|
1397
|
+
"bgColor",
|
|
1398
|
+
"urlMatch",
|
|
1399
|
+
"elements",
|
|
1400
|
+
"placeholders",
|
|
1401
|
+
"textTags",
|
|
1402
|
+
"processed",
|
|
1403
|
+
"hasBg",
|
|
1404
|
+
"hasBorder",
|
|
1405
|
+
"hasShadow",
|
|
1406
|
+
"rect",
|
|
1407
|
+
"isContainer",
|
|
1408
|
+
"borderTop",
|
|
1409
|
+
"borderRight",
|
|
1410
|
+
"borderBottom",
|
|
1411
|
+
"borderLeft",
|
|
1412
|
+
"borders",
|
|
1413
|
+
"hasUniformBorder",
|
|
1414
|
+
"borderLines",
|
|
1415
|
+
"x",
|
|
1416
|
+
"y",
|
|
1417
|
+
"w",
|
|
1418
|
+
"h",
|
|
1419
|
+
"widthPt",
|
|
1420
|
+
"inset",
|
|
1421
|
+
"shadow",
|
|
1422
|
+
"radius",
|
|
1423
|
+
"radiusValue",
|
|
1424
|
+
"minDim",
|
|
1425
|
+
"liElements",
|
|
1426
|
+
"items",
|
|
1427
|
+
"ulComputed",
|
|
1428
|
+
"ulPaddingLeftPt",
|
|
1429
|
+
"marginLeft",
|
|
1430
|
+
"textIndent",
|
|
1431
|
+
"isLast",
|
|
1432
|
+
"runs",
|
|
1433
|
+
"rotation",
|
|
1434
|
+
"baseStyle",
|
|
1435
|
+
"hasFormatting",
|
|
1436
|
+
"adjustedStyle",
|
|
1437
|
+
"maxFontSize",
|
|
1438
|
+
"lineHeightMultiplier",
|
|
1439
|
+
"transformedText",
|
|
1440
|
+
"html2pptx",
|
|
1441
|
+
"launchOptions",
|
|
1442
|
+
"browser",
|
|
1443
|
+
"filePath",
|
|
1444
|
+
"validationErrors",
|
|
1445
|
+
"page",
|
|
1446
|
+
"dimensionErrors",
|
|
1447
|
+
"textBoxPositionErrors",
|
|
1448
|
+
"errorMessage",
|
|
1449
|
+
"targetSlide"
|
|
1450
|
+
],
|
|
1451
|
+
"classes": [],
|
|
1452
|
+
"lineCount": 979,
|
|
1453
|
+
"language": "js"
|
|
1454
|
+
}
|
|
1455
|
+
},
|
|
1456
|
+
".antigravity\\skills\\document-skills\\pptx\\scripts\\inventory.py": {
|
|
1457
|
+
"type": "file",
|
|
1458
|
+
"data": {
|
|
1459
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pptx\\scripts\\inventory.py",
|
|
1460
|
+
"size": 39146,
|
|
1461
|
+
"lastModified": "2025-12-24T02:37:11.248Z",
|
|
1462
|
+
"imports": [],
|
|
1463
|
+
"functions": [],
|
|
1464
|
+
"classes": [
|
|
1465
|
+
"from",
|
|
1466
|
+
"class",
|
|
1467
|
+
"ParagraphData",
|
|
1468
|
+
"ShapeData"
|
|
1469
|
+
],
|
|
1470
|
+
"lineCount": 1021,
|
|
1471
|
+
"language": "py"
|
|
1472
|
+
}
|
|
1473
|
+
},
|
|
1474
|
+
".antigravity\\skills\\document-skills\\pptx\\scripts\\rearrange.py": {
|
|
1475
|
+
"type": "file",
|
|
1476
|
+
"data": {
|
|
1477
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pptx\\scripts\\rearrange.py",
|
|
1478
|
+
"size": 8745,
|
|
1479
|
+
"lastModified": "2025-12-24T02:37:11.252Z",
|
|
1480
|
+
"imports": [],
|
|
1481
|
+
"functions": [],
|
|
1482
|
+
"classes": [],
|
|
1483
|
+
"lineCount": 232,
|
|
1484
|
+
"language": "py"
|
|
1485
|
+
}
|
|
1486
|
+
},
|
|
1487
|
+
".antigravity\\skills\\document-skills\\pptx\\scripts\\replace.py": {
|
|
1488
|
+
"type": "file",
|
|
1489
|
+
"data": {
|
|
1490
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pptx\\scripts\\replace.py",
|
|
1491
|
+
"size": 13979,
|
|
1492
|
+
"lastModified": "2025-12-24T02:37:11.252Z",
|
|
1493
|
+
"imports": [],
|
|
1494
|
+
"functions": [],
|
|
1495
|
+
"classes": [],
|
|
1496
|
+
"lineCount": 386,
|
|
1497
|
+
"language": "py"
|
|
1498
|
+
}
|
|
1499
|
+
},
|
|
1500
|
+
".antigravity\\skills\\document-skills\\pptx\\scripts\\thumbnail.py": {
|
|
1501
|
+
"type": "file",
|
|
1502
|
+
"data": {
|
|
1503
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\pptx\\scripts\\thumbnail.py",
|
|
1504
|
+
"size": 15934,
|
|
1505
|
+
"lastModified": "2025-12-24T02:37:11.255Z",
|
|
1506
|
+
"imports": [
|
|
1507
|
+
"slide-N"
|
|
1508
|
+
],
|
|
1509
|
+
"functions": [],
|
|
1510
|
+
"classes": [],
|
|
1511
|
+
"lineCount": 451,
|
|
1512
|
+
"language": "py"
|
|
1513
|
+
}
|
|
1514
|
+
},
|
|
1515
|
+
".antigravity\\skills\\document-skills\\xlsx\\recalc.py": {
|
|
1516
|
+
"type": "file",
|
|
1517
|
+
"data": {
|
|
1518
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\document-skills\\xlsx\\recalc.py",
|
|
1519
|
+
"size": 6585,
|
|
1520
|
+
"lastModified": "2025-12-24T02:37:11.264Z",
|
|
1521
|
+
"imports": [],
|
|
1522
|
+
"functions": [],
|
|
1523
|
+
"classes": [],
|
|
1524
|
+
"lineCount": 178,
|
|
1525
|
+
"language": "py"
|
|
1526
|
+
}
|
|
1527
|
+
},
|
|
1528
|
+
".antigravity\\skills\\mcp-management\\scripts\\cli.ts": {
|
|
1529
|
+
"type": "file",
|
|
1530
|
+
"data": {
|
|
1531
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\mcp-management\\scripts\\cli.ts",
|
|
1532
|
+
"size": 5588,
|
|
1533
|
+
"lastModified": "2025-12-24T02:37:11.484Z",
|
|
1534
|
+
"imports": [
|
|
1535
|
+
"./mcp-client.js",
|
|
1536
|
+
"fs",
|
|
1537
|
+
"path",
|
|
1538
|
+
"url"
|
|
1539
|
+
],
|
|
1540
|
+
"functions": [
|
|
1541
|
+
"__filename",
|
|
1542
|
+
"__dirname",
|
|
1543
|
+
"GLOBAL_TIMEOUT_MS",
|
|
1544
|
+
"setupShutdownHandlers",
|
|
1545
|
+
"shutdown",
|
|
1546
|
+
"main",
|
|
1547
|
+
"args",
|
|
1548
|
+
"command",
|
|
1549
|
+
"timeoutHandle",
|
|
1550
|
+
"manager",
|
|
1551
|
+
"listTools",
|
|
1552
|
+
"tools",
|
|
1553
|
+
"assetsDir",
|
|
1554
|
+
"toolsPath",
|
|
1555
|
+
"listPrompts",
|
|
1556
|
+
"prompts",
|
|
1557
|
+
"listResources",
|
|
1558
|
+
"resources",
|
|
1559
|
+
"callTool",
|
|
1560
|
+
"result",
|
|
1561
|
+
"printUsage"
|
|
1562
|
+
],
|
|
1563
|
+
"classes": [],
|
|
1564
|
+
"lineCount": 196,
|
|
1565
|
+
"language": "ts"
|
|
1566
|
+
}
|
|
1567
|
+
},
|
|
1568
|
+
".antigravity\\skills\\mcp-management\\scripts\\mcp-client.ts": {
|
|
1569
|
+
"type": "file",
|
|
1570
|
+
"data": {
|
|
1571
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\mcp-management\\scripts\\mcp-client.ts",
|
|
1572
|
+
"size": 7118,
|
|
1573
|
+
"lastModified": "2025-12-24T02:54:11.963Z",
|
|
1574
|
+
"imports": [
|
|
1575
|
+
"@modelcontextprotocol/sdk/client/index.js",
|
|
1576
|
+
"@modelcontextprotocol/sdk/client/stdio.js",
|
|
1577
|
+
"fs/promises",
|
|
1578
|
+
"path"
|
|
1579
|
+
],
|
|
1580
|
+
"functions": [
|
|
1581
|
+
"fullPath",
|
|
1582
|
+
"content",
|
|
1583
|
+
"config",
|
|
1584
|
+
"serverConfig",
|
|
1585
|
+
"transport",
|
|
1586
|
+
"client",
|
|
1587
|
+
"serverNames",
|
|
1588
|
+
"response"
|
|
1589
|
+
],
|
|
1590
|
+
"classes": [
|
|
1591
|
+
"MCPClientManager"
|
|
1592
|
+
],
|
|
1593
|
+
"lineCount": 231,
|
|
1594
|
+
"language": "ts"
|
|
1595
|
+
}
|
|
1596
|
+
},
|
|
1597
|
+
".antigravity\\skills\\media-processing\\scripts\\batch_resize.py": {
|
|
1598
|
+
"type": "file",
|
|
1599
|
+
"data": {
|
|
1600
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\media-processing\\scripts\\batch_resize.py",
|
|
1601
|
+
"size": 10538,
|
|
1602
|
+
"lastModified": "2025-12-24T02:37:11.533Z",
|
|
1603
|
+
"imports": [],
|
|
1604
|
+
"functions": [],
|
|
1605
|
+
"classes": [
|
|
1606
|
+
"ImageResizer"
|
|
1607
|
+
],
|
|
1608
|
+
"lineCount": 343,
|
|
1609
|
+
"language": "py"
|
|
1610
|
+
}
|
|
1611
|
+
},
|
|
1612
|
+
".antigravity\\skills\\media-processing\\scripts\\media_convert.py": {
|
|
1613
|
+
"type": "file",
|
|
1614
|
+
"data": {
|
|
1615
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\media-processing\\scripts\\media_convert.py",
|
|
1616
|
+
"size": 8750,
|
|
1617
|
+
"lastModified": "2025-12-24T02:37:11.534Z",
|
|
1618
|
+
"imports": [],
|
|
1619
|
+
"functions": [],
|
|
1620
|
+
"classes": [],
|
|
1621
|
+
"lineCount": 312,
|
|
1622
|
+
"language": "py"
|
|
1623
|
+
}
|
|
1624
|
+
},
|
|
1625
|
+
".antigravity\\skills\\media-processing\\scripts\\remove-bg-node.js": {
|
|
1626
|
+
"type": "file",
|
|
1627
|
+
"data": {
|
|
1628
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\media-processing\\scripts\\remove-bg-node.js",
|
|
1629
|
+
"size": 4345,
|
|
1630
|
+
"lastModified": "2025-12-24T02:37:11.538Z",
|
|
1631
|
+
"imports": [],
|
|
1632
|
+
"functions": [
|
|
1633
|
+
"args",
|
|
1634
|
+
"input",
|
|
1635
|
+
"output",
|
|
1636
|
+
"model",
|
|
1637
|
+
"maxResolution",
|
|
1638
|
+
"showProgress",
|
|
1639
|
+
"i",
|
|
1640
|
+
"arg",
|
|
1641
|
+
"name",
|
|
1642
|
+
"removeBackground",
|
|
1643
|
+
"startTime",
|
|
1644
|
+
"options",
|
|
1645
|
+
"percent",
|
|
1646
|
+
"downloadPercent",
|
|
1647
|
+
"processPercent",
|
|
1648
|
+
"duration",
|
|
1649
|
+
"inputStats",
|
|
1650
|
+
"outputStats",
|
|
1651
|
+
"formatBytes",
|
|
1652
|
+
"k",
|
|
1653
|
+
"sizes"
|
|
1654
|
+
],
|
|
1655
|
+
"classes": [],
|
|
1656
|
+
"lineCount": 159,
|
|
1657
|
+
"language": "js"
|
|
1658
|
+
}
|
|
1659
|
+
},
|
|
1660
|
+
".antigravity\\skills\\media-processing\\scripts\\tests\\test_batch_resize.py": {
|
|
1661
|
+
"type": "file",
|
|
1662
|
+
"data": {
|
|
1663
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\media-processing\\scripts\\tests\\test_batch_resize.py",
|
|
1664
|
+
"size": 11324,
|
|
1665
|
+
"lastModified": "2025-12-24T02:37:11.546Z",
|
|
1666
|
+
"imports": [],
|
|
1667
|
+
"functions": [],
|
|
1668
|
+
"classes": [
|
|
1669
|
+
"TestImageResizer",
|
|
1670
|
+
"TestCollectImages",
|
|
1671
|
+
"TestBatchResize",
|
|
1672
|
+
"TestResizeStrategies"
|
|
1673
|
+
],
|
|
1674
|
+
"lineCount": 373,
|
|
1675
|
+
"language": "py"
|
|
1676
|
+
}
|
|
1677
|
+
},
|
|
1678
|
+
".antigravity\\skills\\media-processing\\scripts\\tests\\test_media_convert.py": {
|
|
1679
|
+
"type": "file",
|
|
1680
|
+
"data": {
|
|
1681
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\media-processing\\scripts\\tests\\test_media_convert.py",
|
|
1682
|
+
"size": 8095,
|
|
1683
|
+
"lastModified": "2025-12-24T02:37:11.547Z",
|
|
1684
|
+
"imports": [],
|
|
1685
|
+
"functions": [],
|
|
1686
|
+
"classes": [
|
|
1687
|
+
"TestMediaTypeDetection",
|
|
1688
|
+
"TestCommandBuilding",
|
|
1689
|
+
"TestDependencyCheck",
|
|
1690
|
+
"TestFileConversion",
|
|
1691
|
+
"TestQualityPresets"
|
|
1692
|
+
],
|
|
1693
|
+
"lineCount": 260,
|
|
1694
|
+
"language": "py"
|
|
1695
|
+
}
|
|
1696
|
+
},
|
|
1697
|
+
".antigravity\\skills\\media-processing\\scripts\\tests\\test_video_optimize.py": {
|
|
1698
|
+
"type": "file",
|
|
1699
|
+
"data": {
|
|
1700
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\media-processing\\scripts\\tests\\test_video_optimize.py",
|
|
1701
|
+
"size": 12528,
|
|
1702
|
+
"lastModified": "2025-12-24T02:37:11.549Z",
|
|
1703
|
+
"imports": [],
|
|
1704
|
+
"functions": [],
|
|
1705
|
+
"classes": [
|
|
1706
|
+
"TestVideoOptimizer",
|
|
1707
|
+
"TestVideoInfo",
|
|
1708
|
+
"TestCompareVideos"
|
|
1709
|
+
],
|
|
1710
|
+
"lineCount": 398,
|
|
1711
|
+
"language": "py"
|
|
1712
|
+
}
|
|
1713
|
+
},
|
|
1714
|
+
".antigravity\\skills\\media-processing\\scripts\\video_optimize.py": {
|
|
1715
|
+
"type": "file",
|
|
1716
|
+
"data": {
|
|
1717
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\media-processing\\scripts\\video_optimize.py",
|
|
1718
|
+
"size": 13478,
|
|
1719
|
+
"lastModified": "2025-12-24T02:37:11.551Z",
|
|
1720
|
+
"imports": [],
|
|
1721
|
+
"functions": [],
|
|
1722
|
+
"classes": [
|
|
1723
|
+
"from",
|
|
1724
|
+
"class",
|
|
1725
|
+
"VideoOptimizer"
|
|
1726
|
+
],
|
|
1727
|
+
"lineCount": 415,
|
|
1728
|
+
"language": "py"
|
|
1729
|
+
}
|
|
1730
|
+
},
|
|
1731
|
+
".antigravity\\skills\\payment-integration\\scripts\\polar-webhook-verify.js": {
|
|
1732
|
+
"type": "file",
|
|
1733
|
+
"data": {
|
|
1734
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\payment-integration\\scripts\\polar-webhook-verify.js",
|
|
1735
|
+
"size": 5852,
|
|
1736
|
+
"lastModified": "2025-12-24T02:37:11.621Z",
|
|
1737
|
+
"imports": [],
|
|
1738
|
+
"functions": [
|
|
1739
|
+
"crypto",
|
|
1740
|
+
"webhookId",
|
|
1741
|
+
"webhookTimestamp",
|
|
1742
|
+
"webhookSignature",
|
|
1743
|
+
"timestamp",
|
|
1744
|
+
"now",
|
|
1745
|
+
"signatures",
|
|
1746
|
+
"parts",
|
|
1747
|
+
"version",
|
|
1748
|
+
"signature",
|
|
1749
|
+
"signedPayload",
|
|
1750
|
+
"expectedSignature",
|
|
1751
|
+
"isValid",
|
|
1752
|
+
"event",
|
|
1753
|
+
"categories",
|
|
1754
|
+
"args",
|
|
1755
|
+
"payload",
|
|
1756
|
+
"secret",
|
|
1757
|
+
"headers",
|
|
1758
|
+
"verifier",
|
|
1759
|
+
"result"
|
|
1760
|
+
],
|
|
1761
|
+
"classes": [
|
|
1762
|
+
"PolarWebhookVerifier"
|
|
1763
|
+
],
|
|
1764
|
+
"lineCount": 203,
|
|
1765
|
+
"language": "js"
|
|
1766
|
+
}
|
|
1767
|
+
},
|
|
1768
|
+
".antigravity\\skills\\payment-integration\\scripts\\sepay-webhook-verify.js": {
|
|
1769
|
+
"type": "file",
|
|
1770
|
+
"data": {
|
|
1771
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\payment-integration\\scripts\\sepay-webhook-verify.js",
|
|
1772
|
+
"size": 5697,
|
|
1773
|
+
"lastModified": "2025-12-24T02:37:11.622Z",
|
|
1774
|
+
"imports": [],
|
|
1775
|
+
"functions": [
|
|
1776
|
+
"crypto",
|
|
1777
|
+
"authHeader",
|
|
1778
|
+
"expectedAuth",
|
|
1779
|
+
"required",
|
|
1780
|
+
"transaction",
|
|
1781
|
+
"args",
|
|
1782
|
+
"payload",
|
|
1783
|
+
"authType",
|
|
1784
|
+
"apiKey",
|
|
1785
|
+
"verifier",
|
|
1786
|
+
"headers",
|
|
1787
|
+
"result"
|
|
1788
|
+
],
|
|
1789
|
+
"classes": [
|
|
1790
|
+
"SePayWebhookVerifier"
|
|
1791
|
+
],
|
|
1792
|
+
"lineCount": 194,
|
|
1793
|
+
"language": "js"
|
|
1794
|
+
}
|
|
1795
|
+
},
|
|
1796
|
+
".antigravity\\skills\\payment-integration\\scripts\\test-scripts.js": {
|
|
1797
|
+
"type": "file",
|
|
1798
|
+
"data": {
|
|
1799
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\payment-integration\\scripts\\test-scripts.js",
|
|
1800
|
+
"size": 7915,
|
|
1801
|
+
"lastModified": "2025-12-24T02:37:11.625Z",
|
|
1802
|
+
"imports": [],
|
|
1803
|
+
"functions": [
|
|
1804
|
+
"SePayWebhookVerifier",
|
|
1805
|
+
"PolarWebhookVerifier",
|
|
1806
|
+
"CheckoutHelper",
|
|
1807
|
+
"runner",
|
|
1808
|
+
"verifier",
|
|
1809
|
+
"payload",
|
|
1810
|
+
"result",
|
|
1811
|
+
"headers",
|
|
1812
|
+
"crypto",
|
|
1813
|
+
"secret",
|
|
1814
|
+
"timestamp",
|
|
1815
|
+
"signedPayload",
|
|
1816
|
+
"signature",
|
|
1817
|
+
"config",
|
|
1818
|
+
"success"
|
|
1819
|
+
],
|
|
1820
|
+
"classes": [
|
|
1821
|
+
"TestRunner"
|
|
1822
|
+
],
|
|
1823
|
+
"lineCount": 238,
|
|
1824
|
+
"language": "js"
|
|
1825
|
+
}
|
|
1826
|
+
},
|
|
1827
|
+
".antigravity\\skills\\repomix\\scripts\\repomix_batch.py": {
|
|
1828
|
+
"type": "file",
|
|
1829
|
+
"data": {
|
|
1830
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\repomix\\scripts\\repomix_batch.py",
|
|
1831
|
+
"size": 13779,
|
|
1832
|
+
"lastModified": "2025-12-24T02:54:12.172Z",
|
|
1833
|
+
"imports": [],
|
|
1834
|
+
"functions": [],
|
|
1835
|
+
"classes": [
|
|
1836
|
+
"import",
|
|
1837
|
+
"class",
|
|
1838
|
+
"EnvLoader",
|
|
1839
|
+
"RepomixBatchProcessor"
|
|
1840
|
+
],
|
|
1841
|
+
"lineCount": 456,
|
|
1842
|
+
"language": "py"
|
|
1843
|
+
}
|
|
1844
|
+
},
|
|
1845
|
+
".antigravity\\skills\\repomix\\scripts\\tests\\test_repomix_batch.py": {
|
|
1846
|
+
"type": "file",
|
|
1847
|
+
"data": {
|
|
1848
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\repomix\\scripts\\tests\\test_repomix_batch.py",
|
|
1849
|
+
"size": 19470,
|
|
1850
|
+
"lastModified": "2025-12-24T02:37:11.687Z",
|
|
1851
|
+
"imports": [],
|
|
1852
|
+
"functions": [],
|
|
1853
|
+
"classes": [
|
|
1854
|
+
"TestRepomixConfig",
|
|
1855
|
+
"TestEnvLoader",
|
|
1856
|
+
"TestRepomixBatchProcessor",
|
|
1857
|
+
"TestLoadRepositoriesFromFile",
|
|
1858
|
+
"TestMain"
|
|
1859
|
+
],
|
|
1860
|
+
"lineCount": 532,
|
|
1861
|
+
"language": "py"
|
|
1862
|
+
}
|
|
1863
|
+
},
|
|
1864
|
+
".antigravity\\skills\\sequential-thinking\\scripts\\format-thought.js": {
|
|
1865
|
+
"type": "file",
|
|
1866
|
+
"data": {
|
|
1867
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\sequential-thinking\\scripts\\format-thought.js",
|
|
1868
|
+
"size": 4979,
|
|
1869
|
+
"lastModified": "2025-12-24T02:37:11.715Z",
|
|
1870
|
+
"imports": [],
|
|
1871
|
+
"functions": [
|
|
1872
|
+
"prefix",
|
|
1873
|
+
"context",
|
|
1874
|
+
"emoji",
|
|
1875
|
+
"header",
|
|
1876
|
+
"maxLength",
|
|
1877
|
+
"border",
|
|
1878
|
+
"wrappedThought",
|
|
1879
|
+
"thoughtLines",
|
|
1880
|
+
"words",
|
|
1881
|
+
"lines",
|
|
1882
|
+
"currentLine",
|
|
1883
|
+
"marker",
|
|
1884
|
+
"args",
|
|
1885
|
+
"parseArgs",
|
|
1886
|
+
"parsed",
|
|
1887
|
+
"i",
|
|
1888
|
+
"arg",
|
|
1889
|
+
"key",
|
|
1890
|
+
"value",
|
|
1891
|
+
"input",
|
|
1892
|
+
"thoughtData",
|
|
1893
|
+
"format"
|
|
1894
|
+
],
|
|
1895
|
+
"classes": [
|
|
1896
|
+
"ThoughtFormatter"
|
|
1897
|
+
],
|
|
1898
|
+
"lineCount": 160,
|
|
1899
|
+
"language": "js"
|
|
1900
|
+
}
|
|
1901
|
+
},
|
|
1902
|
+
".antigravity\\skills\\sequential-thinking\\scripts\\process-thought.js": {
|
|
1903
|
+
"type": "file",
|
|
1904
|
+
"data": {
|
|
1905
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\sequential-thinking\\scripts\\process-thought.js",
|
|
1906
|
+
"size": 6991,
|
|
1907
|
+
"lastModified": "2025-12-24T02:37:11.718Z",
|
|
1908
|
+
"imports": [],
|
|
1909
|
+
"functions": [
|
|
1910
|
+
"fs",
|
|
1911
|
+
"path",
|
|
1912
|
+
"HISTORY_FILE",
|
|
1913
|
+
"DISABLE_LOGGING",
|
|
1914
|
+
"data",
|
|
1915
|
+
"errors",
|
|
1916
|
+
"thoughtData",
|
|
1917
|
+
"args",
|
|
1918
|
+
"processor",
|
|
1919
|
+
"parseArgs",
|
|
1920
|
+
"parsed",
|
|
1921
|
+
"i",
|
|
1922
|
+
"arg",
|
|
1923
|
+
"key",
|
|
1924
|
+
"value",
|
|
1925
|
+
"input",
|
|
1926
|
+
"thoughtInput",
|
|
1927
|
+
"result"
|
|
1928
|
+
],
|
|
1929
|
+
"classes": [
|
|
1930
|
+
"ThoughtProcessor"
|
|
1931
|
+
],
|
|
1932
|
+
"lineCount": 237,
|
|
1933
|
+
"language": "js"
|
|
1934
|
+
}
|
|
1935
|
+
},
|
|
1936
|
+
".antigravity\\skills\\sequential-thinking\\tests\\format-thought.test.js": {
|
|
1937
|
+
"type": "file",
|
|
1938
|
+
"data": {
|
|
1939
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\sequential-thinking\\tests\\format-thought.test.js",
|
|
1940
|
+
"size": 3777,
|
|
1941
|
+
"lastModified": "2025-12-24T02:37:11.720Z",
|
|
1942
|
+
"imports": [],
|
|
1943
|
+
"functions": [
|
|
1944
|
+
"result",
|
|
1945
|
+
"longText",
|
|
1946
|
+
"wrapped",
|
|
1947
|
+
"shortText"
|
|
1948
|
+
],
|
|
1949
|
+
"classes": [],
|
|
1950
|
+
"lineCount": 134,
|
|
1951
|
+
"language": "js"
|
|
1952
|
+
}
|
|
1953
|
+
},
|
|
1954
|
+
".antigravity\\skills\\sequential-thinking\\tests\\process-thought.test.js": {
|
|
1955
|
+
"type": "file",
|
|
1956
|
+
"data": {
|
|
1957
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\sequential-thinking\\tests\\process-thought.test.js",
|
|
1958
|
+
"size": 5913,
|
|
1959
|
+
"lastModified": "2025-12-24T02:37:11.724Z",
|
|
1960
|
+
"imports": [],
|
|
1961
|
+
"functions": [
|
|
1962
|
+
"fs",
|
|
1963
|
+
"path",
|
|
1964
|
+
"TEST_HISTORY_FILE",
|
|
1965
|
+
"result",
|
|
1966
|
+
"history",
|
|
1967
|
+
"newProcessor"
|
|
1968
|
+
],
|
|
1969
|
+
"classes": [],
|
|
1970
|
+
"lineCount": 216,
|
|
1971
|
+
"language": "js"
|
|
1972
|
+
}
|
|
1973
|
+
},
|
|
1974
|
+
".antigravity\\skills\\shopify\\scripts\\shopify_init.py": {
|
|
1975
|
+
"type": "file",
|
|
1976
|
+
"data": {
|
|
1977
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\shopify\\scripts\\shopify_init.py",
|
|
1978
|
+
"size": 13008,
|
|
1979
|
+
"lastModified": "2025-12-24T02:54:12.260Z",
|
|
1980
|
+
"imports": [],
|
|
1981
|
+
"functions": [],
|
|
1982
|
+
"classes": [
|
|
1983
|
+
"class",
|
|
1984
|
+
"EnvLoader",
|
|
1985
|
+
"ShopifyInitializer"
|
|
1986
|
+
],
|
|
1987
|
+
"lineCount": 424,
|
|
1988
|
+
"language": "py"
|
|
1989
|
+
}
|
|
1990
|
+
},
|
|
1991
|
+
".antigravity\\skills\\shopify\\scripts\\tests\\test_shopify_init.py": {
|
|
1992
|
+
"type": "file",
|
|
1993
|
+
"data": {
|
|
1994
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\shopify\\scripts\\tests\\test_shopify_init.py",
|
|
1995
|
+
"size": 13704,
|
|
1996
|
+
"lastModified": "2025-12-24T02:54:12.269Z",
|
|
1997
|
+
"imports": [],
|
|
1998
|
+
"functions": [],
|
|
1999
|
+
"classes": [
|
|
2000
|
+
"TestEnvLoader",
|
|
2001
|
+
"TestShopifyInitializer",
|
|
2002
|
+
"TestMain",
|
|
2003
|
+
"TestEnvConfig"
|
|
2004
|
+
],
|
|
2005
|
+
"lineCount": 386,
|
|
2006
|
+
"language": "py"
|
|
2007
|
+
}
|
|
2008
|
+
},
|
|
2009
|
+
".antigravity\\skills\\skill-creator\\scripts\\init_skill.py": {
|
|
2010
|
+
"type": "file",
|
|
2011
|
+
"data": {
|
|
2012
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\skill-creator\\scripts\\init_skill.py",
|
|
2013
|
+
"size": 11166,
|
|
2014
|
+
"lastModified": "2025-12-24T02:37:11.757Z",
|
|
2015
|
+
"imports": [],
|
|
2016
|
+
"functions": [],
|
|
2017
|
+
"classes": [],
|
|
2018
|
+
"lineCount": 304,
|
|
2019
|
+
"language": "py"
|
|
2020
|
+
}
|
|
2021
|
+
},
|
|
2022
|
+
".antigravity\\skills\\skill-creator\\scripts\\package_skill.py": {
|
|
2023
|
+
"type": "file",
|
|
2024
|
+
"data": {
|
|
2025
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\skill-creator\\scripts\\package_skill.py",
|
|
2026
|
+
"size": 3357,
|
|
2027
|
+
"lastModified": "2025-12-24T02:37:11.759Z",
|
|
2028
|
+
"imports": [],
|
|
2029
|
+
"functions": [],
|
|
2030
|
+
"classes": [],
|
|
2031
|
+
"lineCount": 111,
|
|
2032
|
+
"language": "py"
|
|
2033
|
+
}
|
|
2034
|
+
},
|
|
2035
|
+
".antigravity\\skills\\skill-creator\\scripts\\quick_validate.py": {
|
|
2036
|
+
"type": "file",
|
|
2037
|
+
"data": {
|
|
2038
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\skill-creator\\scripts\\quick_validate.py",
|
|
2039
|
+
"size": 2229,
|
|
2040
|
+
"lastModified": "2025-12-24T02:37:11.761Z",
|
|
2041
|
+
"imports": [],
|
|
2042
|
+
"functions": [],
|
|
2043
|
+
"classes": [],
|
|
2044
|
+
"lineCount": 65,
|
|
2045
|
+
"language": "py"
|
|
2046
|
+
}
|
|
2047
|
+
},
|
|
2048
|
+
".antigravity\\skills\\ui-styling\\scripts\\shadcn_add.py": {
|
|
2049
|
+
"type": "file",
|
|
2050
|
+
"data": {
|
|
2051
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\ui-styling\\scripts\\shadcn_add.py",
|
|
2052
|
+
"size": 8283,
|
|
2053
|
+
"lastModified": "2025-12-24T02:37:12.055Z",
|
|
2054
|
+
"imports": [],
|
|
2055
|
+
"functions": [],
|
|
2056
|
+
"classes": [
|
|
2057
|
+
"ShadcnInstaller"
|
|
2058
|
+
],
|
|
2059
|
+
"lineCount": 293,
|
|
2060
|
+
"language": "py"
|
|
2061
|
+
}
|
|
2062
|
+
},
|
|
2063
|
+
".antigravity\\skills\\ui-styling\\scripts\\tailwind_config_gen.py": {
|
|
2064
|
+
"type": "file",
|
|
2065
|
+
"data": {
|
|
2066
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\ui-styling\\scripts\\tailwind_config_gen.py",
|
|
2067
|
+
"size": 14081,
|
|
2068
|
+
"lastModified": "2025-12-24T02:37:12.056Z",
|
|
2069
|
+
"imports": [
|
|
2070
|
+
"tailwindcss"
|
|
2071
|
+
],
|
|
2072
|
+
"functions": [],
|
|
2073
|
+
"classes": [
|
|
2074
|
+
"TailwindConfigGenerator"
|
|
2075
|
+
],
|
|
2076
|
+
"lineCount": 457,
|
|
2077
|
+
"language": "py"
|
|
2078
|
+
}
|
|
2079
|
+
},
|
|
2080
|
+
".antigravity\\skills\\ui-styling\\scripts\\tests\\test_shadcn_add.py": {
|
|
2081
|
+
"type": "file",
|
|
2082
|
+
"data": {
|
|
2083
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\ui-styling\\scripts\\tests\\test_shadcn_add.py",
|
|
2084
|
+
"size": 10186,
|
|
2085
|
+
"lastModified": "2025-12-24T02:37:12.061Z",
|
|
2086
|
+
"imports": [],
|
|
2087
|
+
"functions": [
|
|
2088
|
+
"Button",
|
|
2089
|
+
"Card"
|
|
2090
|
+
],
|
|
2091
|
+
"classes": [
|
|
2092
|
+
"TestShadcnInstaller"
|
|
2093
|
+
],
|
|
2094
|
+
"lineCount": 267,
|
|
2095
|
+
"language": "py"
|
|
2096
|
+
}
|
|
2097
|
+
},
|
|
2098
|
+
".antigravity\\skills\\ui-styling\\scripts\\tests\\test_tailwind_config_gen.py": {
|
|
2099
|
+
"type": "file",
|
|
2100
|
+
"data": {
|
|
2101
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\ui-styling\\scripts\\tests\\test_tailwind_config_gen.py",
|
|
2102
|
+
"size": 12494,
|
|
2103
|
+
"lastModified": "2025-12-24T02:37:12.063Z",
|
|
2104
|
+
"imports": [
|
|
2105
|
+
"tailwindcss"
|
|
2106
|
+
],
|
|
2107
|
+
"functions": [],
|
|
2108
|
+
"classes": [
|
|
2109
|
+
"TestTailwindConfigGenerator"
|
|
2110
|
+
],
|
|
2111
|
+
"lineCount": 337,
|
|
2112
|
+
"language": "py"
|
|
2113
|
+
}
|
|
2114
|
+
},
|
|
2115
|
+
".antigravity\\skills\\ui-ux-pro-max\\scripts\\core.py": {
|
|
2116
|
+
"type": "file",
|
|
2117
|
+
"data": {
|
|
2118
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\ui-ux-pro-max\\scripts\\core.py",
|
|
2119
|
+
"size": 9255,
|
|
2120
|
+
"lastModified": "2025-12-24T02:37:12.105Z",
|
|
2121
|
+
"imports": [],
|
|
2122
|
+
"functions": [],
|
|
2123
|
+
"classes": [
|
|
2124
|
+
"BM25"
|
|
2125
|
+
],
|
|
2126
|
+
"lineCount": 237,
|
|
2127
|
+
"language": "py"
|
|
2128
|
+
}
|
|
2129
|
+
},
|
|
2130
|
+
".antigravity\\skills\\ui-ux-pro-max\\scripts\\search.py": {
|
|
2131
|
+
"type": "file",
|
|
2132
|
+
"data": {
|
|
2133
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\ui-ux-pro-max\\scripts\\search.py",
|
|
2134
|
+
"size": 2394,
|
|
2135
|
+
"lastModified": "2025-12-24T02:37:12.106Z",
|
|
2136
|
+
"imports": [],
|
|
2137
|
+
"functions": [],
|
|
2138
|
+
"classes": [],
|
|
2139
|
+
"lineCount": 62,
|
|
2140
|
+
"language": "py"
|
|
2141
|
+
}
|
|
2142
|
+
},
|
|
2143
|
+
".antigravity\\skills\\web-frameworks\\scripts\\nextjs_init.py": {
|
|
2144
|
+
"type": "file",
|
|
2145
|
+
"data": {
|
|
2146
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\web-frameworks\\scripts\\nextjs_init.py",
|
|
2147
|
+
"size": 15427,
|
|
2148
|
+
"lastModified": "2025-12-24T02:37:12.129Z",
|
|
2149
|
+
"imports": [
|
|
2150
|
+
"./globals.css",
|
|
2151
|
+
"tailwindcss"
|
|
2152
|
+
],
|
|
2153
|
+
"functions": [
|
|
2154
|
+
"metadata",
|
|
2155
|
+
"RootLayout",
|
|
2156
|
+
"Home",
|
|
2157
|
+
"nextConfig",
|
|
2158
|
+
"App"
|
|
2159
|
+
],
|
|
2160
|
+
"classes": [
|
|
2161
|
+
"NextJSInitializer"
|
|
2162
|
+
],
|
|
2163
|
+
"lineCount": 548,
|
|
2164
|
+
"language": "py"
|
|
2165
|
+
}
|
|
2166
|
+
},
|
|
2167
|
+
".antigravity\\skills\\web-frameworks\\scripts\\tests\\test_nextjs_init.py": {
|
|
2168
|
+
"type": "file",
|
|
2169
|
+
"data": {
|
|
2170
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\web-frameworks\\scripts\\tests\\test_nextjs_init.py",
|
|
2171
|
+
"size": 11054,
|
|
2172
|
+
"lastModified": "2025-12-24T02:37:12.137Z",
|
|
2173
|
+
"imports": [
|
|
2174
|
+
"./globals.css"
|
|
2175
|
+
],
|
|
2176
|
+
"functions": [],
|
|
2177
|
+
"classes": [
|
|
2178
|
+
"TestNextJSInitializer"
|
|
2179
|
+
],
|
|
2180
|
+
"lineCount": 320,
|
|
2181
|
+
"language": "py"
|
|
2182
|
+
}
|
|
2183
|
+
},
|
|
2184
|
+
".antigravity\\skills\\web-frameworks\\scripts\\tests\\test_turborepo_migrate.py": {
|
|
2185
|
+
"type": "file",
|
|
2186
|
+
"data": {
|
|
2187
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\web-frameworks\\scripts\\tests\\test_turborepo_migrate.py",
|
|
2188
|
+
"size": 13235,
|
|
2189
|
+
"lastModified": "2025-12-24T02:37:12.139Z",
|
|
2190
|
+
"imports": [],
|
|
2191
|
+
"functions": [],
|
|
2192
|
+
"classes": [
|
|
2193
|
+
"TestTurborepoMigrator"
|
|
2194
|
+
],
|
|
2195
|
+
"lineCount": 375,
|
|
2196
|
+
"language": "py"
|
|
2197
|
+
}
|
|
2198
|
+
},
|
|
2199
|
+
".antigravity\\skills\\web-frameworks\\scripts\\turborepo_migrate.py": {
|
|
2200
|
+
"type": "file",
|
|
2201
|
+
"data": {
|
|
2202
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\web-frameworks\\scripts\\turborepo_migrate.py",
|
|
2203
|
+
"size": 13625,
|
|
2204
|
+
"lastModified": "2025-12-24T02:37:12.140Z",
|
|
2205
|
+
"imports": [],
|
|
2206
|
+
"functions": [],
|
|
2207
|
+
"classes": [
|
|
2208
|
+
"TurborepoMigrator"
|
|
2209
|
+
],
|
|
2210
|
+
"lineCount": 395,
|
|
2211
|
+
"language": "py"
|
|
2212
|
+
}
|
|
2213
|
+
},
|
|
2214
|
+
".antigravity\\skills\\web-frameworks\\scripts\\__init__.py": {
|
|
2215
|
+
"type": "file",
|
|
2216
|
+
"data": {
|
|
2217
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\.antigravity\\skills\\web-frameworks\\scripts\\__init__.py",
|
|
2218
|
+
"size": 0,
|
|
2219
|
+
"lastModified": "2025-12-24T02:37:12.128Z",
|
|
2220
|
+
"imports": [],
|
|
2221
|
+
"functions": [],
|
|
2222
|
+
"classes": [],
|
|
2223
|
+
"lineCount": 1,
|
|
2224
|
+
"language": "py"
|
|
2225
|
+
}
|
|
2226
|
+
},
|
|
2227
|
+
"bin\\cli.js": {
|
|
2228
|
+
"type": "file",
|
|
2229
|
+
"data": {
|
|
2230
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\bin\\cli.js",
|
|
2231
|
+
"size": 50,
|
|
2232
|
+
"lastModified": "2025-12-27T15:42:10.099Z",
|
|
2233
|
+
"imports": [],
|
|
2234
|
+
"functions": [],
|
|
2235
|
+
"classes": [],
|
|
2236
|
+
"lineCount": 3,
|
|
2237
|
+
"language": "js"
|
|
2238
|
+
}
|
|
2239
|
+
},
|
|
2240
|
+
"scripts\\add-shebang.js": {
|
|
2241
|
+
"type": "file",
|
|
2242
|
+
"data": {
|
|
2243
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\scripts\\add-shebang.js",
|
|
2244
|
+
"size": 456,
|
|
2245
|
+
"lastModified": "2025-12-26T18:30:50.773Z",
|
|
2246
|
+
"imports": [],
|
|
2247
|
+
"functions": [
|
|
2248
|
+
"fs",
|
|
2249
|
+
"path",
|
|
2250
|
+
"distPath",
|
|
2251
|
+
"content"
|
|
2252
|
+
],
|
|
2253
|
+
"classes": [],
|
|
2254
|
+
"lineCount": 14,
|
|
2255
|
+
"language": "js"
|
|
2256
|
+
}
|
|
2257
|
+
},
|
|
2258
|
+
"scripts\\analyze-skills.js": {
|
|
2259
|
+
"type": "file",
|
|
2260
|
+
"data": {
|
|
2261
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\scripts\\analyze-skills.js",
|
|
2262
|
+
"size": 6194,
|
|
2263
|
+
"lastModified": "2025-12-27T11:27:23.410Z",
|
|
2264
|
+
"imports": [],
|
|
2265
|
+
"functions": [
|
|
2266
|
+
"fs",
|
|
2267
|
+
"path",
|
|
2268
|
+
"skillsDir",
|
|
2269
|
+
"skills",
|
|
2270
|
+
"readSkillMetadata",
|
|
2271
|
+
"skillMdPath",
|
|
2272
|
+
"content",
|
|
2273
|
+
"lines",
|
|
2274
|
+
"name",
|
|
2275
|
+
"description",
|
|
2276
|
+
"inFrontmatter",
|
|
2277
|
+
"nameMatch",
|
|
2278
|
+
"descMatch",
|
|
2279
|
+
"skillDirs",
|
|
2280
|
+
"metadata",
|
|
2281
|
+
"nestedDirs",
|
|
2282
|
+
"nestedMetadata",
|
|
2283
|
+
"nameMap",
|
|
2284
|
+
"duplicateNames",
|
|
2285
|
+
"keywords",
|
|
2286
|
+
"words",
|
|
2287
|
+
"similarityThreshold",
|
|
2288
|
+
"potentialOverlaps",
|
|
2289
|
+
"i",
|
|
2290
|
+
"j",
|
|
2291
|
+
"skill1",
|
|
2292
|
+
"skill2",
|
|
2293
|
+
"words1",
|
|
2294
|
+
"words2",
|
|
2295
|
+
"commonWords",
|
|
2296
|
+
"categories",
|
|
2297
|
+
"categorySkills",
|
|
2298
|
+
"desc",
|
|
2299
|
+
"categorizedNames",
|
|
2300
|
+
"uncategorized"
|
|
2301
|
+
],
|
|
2302
|
+
"classes": [],
|
|
2303
|
+
"lineCount": 195,
|
|
2304
|
+
"language": "js"
|
|
2305
|
+
}
|
|
2306
|
+
},
|
|
2307
|
+
"src\\cli.js": {
|
|
2308
|
+
"type": "file",
|
|
2309
|
+
"data": {
|
|
2310
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\cli.js",
|
|
2311
|
+
"size": 22487,
|
|
2312
|
+
"lastModified": "2025-12-27T17:21:25.607Z",
|
|
2313
|
+
"imports": [],
|
|
2314
|
+
"functions": [
|
|
2315
|
+
"fs",
|
|
2316
|
+
"path",
|
|
2317
|
+
"readline",
|
|
2318
|
+
"colors",
|
|
2319
|
+
"log",
|
|
2320
|
+
"rl",
|
|
2321
|
+
"ask",
|
|
2322
|
+
"writeBanner",
|
|
2323
|
+
"askConflictResolution",
|
|
2324
|
+
"choice",
|
|
2325
|
+
"backupFile",
|
|
2326
|
+
"timestamp",
|
|
2327
|
+
"backupPath",
|
|
2328
|
+
"copyDirRecursive",
|
|
2329
|
+
"entries",
|
|
2330
|
+
"srcPath",
|
|
2331
|
+
"destPath",
|
|
2332
|
+
"copyWithConflictHandling",
|
|
2333
|
+
"files",
|
|
2334
|
+
"relativePath",
|
|
2335
|
+
"destFile",
|
|
2336
|
+
"destDir",
|
|
2337
|
+
"getAllFiles",
|
|
2338
|
+
"fullPath",
|
|
2339
|
+
"installAntigravity",
|
|
2340
|
+
"targetPath",
|
|
2341
|
+
"kitPath",
|
|
2342
|
+
"confirm",
|
|
2343
|
+
"antigravityDest",
|
|
2344
|
+
"agentSource",
|
|
2345
|
+
"presetsSource",
|
|
2346
|
+
"presetsDest",
|
|
2347
|
+
"docsSource",
|
|
2348
|
+
"docsDest",
|
|
2349
|
+
"configFiles",
|
|
2350
|
+
"configSource",
|
|
2351
|
+
"configDest",
|
|
2352
|
+
"auditSource",
|
|
2353
|
+
"auditDest",
|
|
2354
|
+
"memorySource",
|
|
2355
|
+
"memoryDest",
|
|
2356
|
+
"scriptsSource",
|
|
2357
|
+
"scriptsDest",
|
|
2358
|
+
"antigravityMdPath",
|
|
2359
|
+
"install",
|
|
2360
|
+
"cursorDest",
|
|
2361
|
+
"components",
|
|
2362
|
+
"sourcePath",
|
|
2363
|
+
"args",
|
|
2364
|
+
"flags",
|
|
2365
|
+
"commands",
|
|
2366
|
+
"command",
|
|
2367
|
+
"isForce",
|
|
2368
|
+
"main",
|
|
2369
|
+
"showHelp"
|
|
2370
|
+
],
|
|
2371
|
+
"classes": [],
|
|
2372
|
+
"lineCount": 545,
|
|
2373
|
+
"language": "js"
|
|
2374
|
+
}
|
|
2375
|
+
},
|
|
2376
|
+
"src\\commands\\analytics.js": {
|
|
2377
|
+
"type": "file",
|
|
2378
|
+
"data": {
|
|
2379
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\commands\\analytics.js",
|
|
2380
|
+
"size": 5208,
|
|
2381
|
+
"lastModified": "2025-12-27T15:29:26.584Z",
|
|
2382
|
+
"imports": [],
|
|
2383
|
+
"functions": [
|
|
2384
|
+
"fs",
|
|
2385
|
+
"analytics",
|
|
2386
|
+
"targetDir",
|
|
2387
|
+
"showProjectAnalytics",
|
|
2388
|
+
"bar",
|
|
2389
|
+
"showGlobalAnalytics",
|
|
2390
|
+
"generateReport",
|
|
2391
|
+
"showHelp"
|
|
2392
|
+
],
|
|
2393
|
+
"classes": [],
|
|
2394
|
+
"lineCount": 150,
|
|
2395
|
+
"language": "js"
|
|
2396
|
+
}
|
|
2397
|
+
},
|
|
2398
|
+
"src\\commands\\analyze.js": {
|
|
2399
|
+
"type": "file",
|
|
2400
|
+
"data": {
|
|
2401
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\commands\\analyze.js",
|
|
2402
|
+
"size": 3091,
|
|
2403
|
+
"lastModified": "2025-12-27T17:20:02.319Z",
|
|
2404
|
+
"imports": [],
|
|
2405
|
+
"functions": [
|
|
2406
|
+
"path",
|
|
2407
|
+
"analyze",
|
|
2408
|
+
"targetDir",
|
|
2409
|
+
"graph",
|
|
2410
|
+
"index",
|
|
2411
|
+
"normalizedTarget",
|
|
2412
|
+
"searchTarget",
|
|
2413
|
+
"impacted"
|
|
2414
|
+
],
|
|
2415
|
+
"classes": [],
|
|
2416
|
+
"lineCount": 87,
|
|
2417
|
+
"language": "js"
|
|
2418
|
+
}
|
|
2419
|
+
},
|
|
2420
|
+
"src\\commands\\audit.js": {
|
|
2421
|
+
"type": "file",
|
|
2422
|
+
"data": {
|
|
2423
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\commands\\audit.js",
|
|
2424
|
+
"size": 7784,
|
|
2425
|
+
"lastModified": "2025-12-27T15:24:01.116Z",
|
|
2426
|
+
"imports": [],
|
|
2427
|
+
"functions": [
|
|
2428
|
+
"audit",
|
|
2429
|
+
"targetDir",
|
|
2430
|
+
"showAuditLogs",
|
|
2431
|
+
"opts",
|
|
2432
|
+
"logs",
|
|
2433
|
+
"time",
|
|
2434
|
+
"status",
|
|
2435
|
+
"showAuditSummary",
|
|
2436
|
+
"summary",
|
|
2437
|
+
"dateStr",
|
|
2438
|
+
"showAuditDates",
|
|
2439
|
+
"dates",
|
|
2440
|
+
"cleanupAuditLogs",
|
|
2441
|
+
"days",
|
|
2442
|
+
"deleted",
|
|
2443
|
+
"showFileHistory",
|
|
2444
|
+
"history",
|
|
2445
|
+
"date",
|
|
2446
|
+
"type",
|
|
2447
|
+
"parseOptions",
|
|
2448
|
+
"parts",
|
|
2449
|
+
"i",
|
|
2450
|
+
"part",
|
|
2451
|
+
"showHelp"
|
|
2452
|
+
],
|
|
2453
|
+
"classes": [],
|
|
2454
|
+
"lineCount": 252,
|
|
2455
|
+
"language": "js"
|
|
2456
|
+
}
|
|
2457
|
+
},
|
|
2458
|
+
"src\\commands\\clean.js": {
|
|
2459
|
+
"type": "file",
|
|
2460
|
+
"data": {
|
|
2461
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\commands\\clean.js",
|
|
2462
|
+
"size": 4401,
|
|
2463
|
+
"lastModified": "2025-12-27T16:41:07.445Z",
|
|
2464
|
+
"imports": [],
|
|
2465
|
+
"functions": [
|
|
2466
|
+
"fs",
|
|
2467
|
+
"path",
|
|
2468
|
+
"readline",
|
|
2469
|
+
"rl",
|
|
2470
|
+
"ask",
|
|
2471
|
+
"clean",
|
|
2472
|
+
"configDir",
|
|
2473
|
+
"auditDir",
|
|
2474
|
+
"memoryDir",
|
|
2475
|
+
"sessionsDir",
|
|
2476
|
+
"cleanMemory",
|
|
2477
|
+
"cleanAudit",
|
|
2478
|
+
"cleanSessions",
|
|
2479
|
+
"isForce",
|
|
2480
|
+
"confirm",
|
|
2481
|
+
"timestamp",
|
|
2482
|
+
"archiveDir"
|
|
2483
|
+
],
|
|
2484
|
+
"classes": [],
|
|
2485
|
+
"lineCount": 115,
|
|
2486
|
+
"language": "js"
|
|
2487
|
+
}
|
|
2488
|
+
},
|
|
2489
|
+
"src\\commands\\dashboard.js": {
|
|
2490
|
+
"type": "file",
|
|
2491
|
+
"data": {
|
|
2492
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\commands\\dashboard.js",
|
|
2493
|
+
"size": 2367,
|
|
2494
|
+
"lastModified": "2025-12-27T16:11:56.400Z",
|
|
2495
|
+
"imports": [],
|
|
2496
|
+
"functions": [
|
|
2497
|
+
"http",
|
|
2498
|
+
"getHtml",
|
|
2499
|
+
"dashboard",
|
|
2500
|
+
"targetDir",
|
|
2501
|
+
"analytics",
|
|
2502
|
+
"memory",
|
|
2503
|
+
"dashboardData",
|
|
2504
|
+
"server",
|
|
2505
|
+
"tryListen",
|
|
2506
|
+
"url",
|
|
2507
|
+
"startCmd"
|
|
2508
|
+
],
|
|
2509
|
+
"classes": [],
|
|
2510
|
+
"lineCount": 68,
|
|
2511
|
+
"language": "js"
|
|
2512
|
+
}
|
|
2513
|
+
},
|
|
2514
|
+
"src\\commands\\doctor.js": {
|
|
2515
|
+
"type": "file",
|
|
2516
|
+
"data": {
|
|
2517
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\commands\\doctor.js",
|
|
2518
|
+
"size": 7413,
|
|
2519
|
+
"lastModified": "2025-12-27T16:05:56.559Z",
|
|
2520
|
+
"imports": [],
|
|
2521
|
+
"functions": [
|
|
2522
|
+
"fs",
|
|
2523
|
+
"path",
|
|
2524
|
+
"doctor",
|
|
2525
|
+
"checks",
|
|
2526
|
+
"configDir",
|
|
2527
|
+
"configDirName",
|
|
2528
|
+
"commandsDir",
|
|
2529
|
+
"cmdFolderName",
|
|
2530
|
+
"cmdDir",
|
|
2531
|
+
"commandCount",
|
|
2532
|
+
"agentsDir",
|
|
2533
|
+
"agentCount",
|
|
2534
|
+
"rulesFile",
|
|
2535
|
+
"configFile",
|
|
2536
|
+
"configValid",
|
|
2537
|
+
"content",
|
|
2538
|
+
"docsDir",
|
|
2539
|
+
"pkgFile",
|
|
2540
|
+
"memoryDir",
|
|
2541
|
+
"memoryWriteable",
|
|
2542
|
+
"testFile",
|
|
2543
|
+
"os",
|
|
2544
|
+
"globalDir",
|
|
2545
|
+
"globalWriteable",
|
|
2546
|
+
"requiredModules",
|
|
2547
|
+
"modulesOk",
|
|
2548
|
+
"allOk",
|
|
2549
|
+
"status",
|
|
2550
|
+
"value"
|
|
2551
|
+
],
|
|
2552
|
+
"classes": [],
|
|
2553
|
+
"lineCount": 216,
|
|
2554
|
+
"language": "js"
|
|
2555
|
+
}
|
|
2556
|
+
},
|
|
2557
|
+
"src\\commands\\init.js": {
|
|
2558
|
+
"type": "file",
|
|
2559
|
+
"data": {
|
|
2560
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\commands\\init.js",
|
|
2561
|
+
"size": 14469,
|
|
2562
|
+
"lastModified": "2025-12-27T15:38:47.671Z",
|
|
2563
|
+
"imports": [],
|
|
2564
|
+
"functions": [
|
|
2565
|
+
"fs",
|
|
2566
|
+
"path",
|
|
2567
|
+
"readline",
|
|
2568
|
+
"colors",
|
|
2569
|
+
"log",
|
|
2570
|
+
"rl",
|
|
2571
|
+
"ask",
|
|
2572
|
+
"askChoice",
|
|
2573
|
+
"estimate",
|
|
2574
|
+
"answer",
|
|
2575
|
+
"num",
|
|
2576
|
+
"askMultiSelect",
|
|
2577
|
+
"checked",
|
|
2578
|
+
"nums",
|
|
2579
|
+
"copyDirRecursive",
|
|
2580
|
+
"entries",
|
|
2581
|
+
"srcPath",
|
|
2582
|
+
"destPath",
|
|
2583
|
+
"copyFile",
|
|
2584
|
+
"destDir",
|
|
2585
|
+
"init",
|
|
2586
|
+
"targetPath",
|
|
2587
|
+
"kitPath",
|
|
2588
|
+
"detected",
|
|
2589
|
+
"detectedStr",
|
|
2590
|
+
"suggestedSkills",
|
|
2591
|
+
"profiles",
|
|
2592
|
+
"profileOptions",
|
|
2593
|
+
"selectedProfile",
|
|
2594
|
+
"profile",
|
|
2595
|
+
"finalConfig",
|
|
2596
|
+
"customize",
|
|
2597
|
+
"packs",
|
|
2598
|
+
"packOptions",
|
|
2599
|
+
"selectedPacks",
|
|
2600
|
+
"extraSkills",
|
|
2601
|
+
"includePresets",
|
|
2602
|
+
"includeDocs",
|
|
2603
|
+
"components",
|
|
2604
|
+
"sizeInfo",
|
|
2605
|
+
"confirm",
|
|
2606
|
+
"installedFiles",
|
|
2607
|
+
"commandsPath",
|
|
2608
|
+
"destCommandsPath",
|
|
2609
|
+
"srcFile",
|
|
2610
|
+
"agentsPath",
|
|
2611
|
+
"destAgentsPath",
|
|
2612
|
+
"skillsPath",
|
|
2613
|
+
"destSkillsPath",
|
|
2614
|
+
"srcDir",
|
|
2615
|
+
"presetsPath",
|
|
2616
|
+
"docsPath",
|
|
2617
|
+
"auditPath",
|
|
2618
|
+
"memoryPath",
|
|
2619
|
+
"scriptsPath",
|
|
2620
|
+
"cursorRulesPath",
|
|
2621
|
+
"cursorMdPath",
|
|
2622
|
+
"modelCostsPath"
|
|
2623
|
+
],
|
|
2624
|
+
"classes": [],
|
|
2625
|
+
"lineCount": 376,
|
|
2626
|
+
"language": "js"
|
|
2627
|
+
}
|
|
2628
|
+
},
|
|
2629
|
+
"src\\commands\\learn.js": {
|
|
2630
|
+
"type": "file",
|
|
2631
|
+
"data": {
|
|
2632
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\commands\\learn.js",
|
|
2633
|
+
"size": 7608,
|
|
2634
|
+
"lastModified": "2025-12-27T15:28:58.439Z",
|
|
2635
|
+
"imports": [],
|
|
2636
|
+
"functions": [
|
|
2637
|
+
"learn",
|
|
2638
|
+
"targetDir",
|
|
2639
|
+
"showGlobalMemory",
|
|
2640
|
+
"memory",
|
|
2641
|
+
"registerCurrentProject",
|
|
2642
|
+
"techStack",
|
|
2643
|
+
"index",
|
|
2644
|
+
"detected",
|
|
2645
|
+
"projectData",
|
|
2646
|
+
"patterns",
|
|
2647
|
+
"learned",
|
|
2648
|
+
"showSuggestions",
|
|
2649
|
+
"suggestions",
|
|
2650
|
+
"confidence",
|
|
2651
|
+
"icon",
|
|
2652
|
+
"learnPatternCommand",
|
|
2653
|
+
"showGlobalStats",
|
|
2654
|
+
"stats",
|
|
2655
|
+
"bar",
|
|
2656
|
+
"showHelp"
|
|
2657
|
+
],
|
|
2658
|
+
"classes": [],
|
|
2659
|
+
"lineCount": 230,
|
|
2660
|
+
"language": "js"
|
|
2661
|
+
}
|
|
2662
|
+
},
|
|
2663
|
+
"src\\commands\\memory.js": {
|
|
2664
|
+
"type": "file",
|
|
2665
|
+
"data": {
|
|
2666
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\commands\\memory.js",
|
|
2667
|
+
"size": 16755,
|
|
2668
|
+
"lastModified": "2025-12-27T15:22:05.332Z",
|
|
2669
|
+
"imports": [],
|
|
2670
|
+
"functions": [
|
|
2671
|
+
"fs",
|
|
2672
|
+
"path",
|
|
2673
|
+
"memory",
|
|
2674
|
+
"targetDir",
|
|
2675
|
+
"showMemory",
|
|
2676
|
+
"recent",
|
|
2677
|
+
"saveProjectMemory",
|
|
2678
|
+
"savePath",
|
|
2679
|
+
"loadProjectMemory",
|
|
2680
|
+
"summary",
|
|
2681
|
+
"clearProjectMemory",
|
|
2682
|
+
"addToMemory",
|
|
2683
|
+
"parts",
|
|
2684
|
+
"searchProjectMemory",
|
|
2685
|
+
"results",
|
|
2686
|
+
"total",
|
|
2687
|
+
"createSnapshot",
|
|
2688
|
+
"label",
|
|
2689
|
+
"snapshotPath",
|
|
2690
|
+
"showSnapshotHistory",
|
|
2691
|
+
"snapshots",
|
|
2692
|
+
"rollbackMemory",
|
|
2693
|
+
"diffSnapshots",
|
|
2694
|
+
"comparison",
|
|
2695
|
+
"detectTechStackCommand",
|
|
2696
|
+
"index",
|
|
2697
|
+
"stack",
|
|
2698
|
+
"allTech",
|
|
2699
|
+
"exportMemoryCommand",
|
|
2700
|
+
"exportData",
|
|
2701
|
+
"importMemoryCommand",
|
|
2702
|
+
"sessionsDir",
|
|
2703
|
+
"snapPath",
|
|
2704
|
+
"showHelp"
|
|
2705
|
+
],
|
|
2706
|
+
"classes": [],
|
|
2707
|
+
"lineCount": 501,
|
|
2708
|
+
"language": "js"
|
|
2709
|
+
}
|
|
2710
|
+
},
|
|
2711
|
+
"src\\commands\\patterns.js": {
|
|
2712
|
+
"type": "file",
|
|
2713
|
+
"data": {
|
|
2714
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\commands\\patterns.js",
|
|
2715
|
+
"size": 5222,
|
|
2716
|
+
"lastModified": "2025-12-27T15:29:24.578Z",
|
|
2717
|
+
"imports": [],
|
|
2718
|
+
"functions": [
|
|
2719
|
+
"patterns",
|
|
2720
|
+
"targetDir",
|
|
2721
|
+
"showPatterns",
|
|
2722
|
+
"index",
|
|
2723
|
+
"scanAndShowPatterns",
|
|
2724
|
+
"displayPatterns",
|
|
2725
|
+
"summary",
|
|
2726
|
+
"conf",
|
|
2727
|
+
"learnPatternsFromProject",
|
|
2728
|
+
"memory",
|
|
2729
|
+
"projectName",
|
|
2730
|
+
"learned",
|
|
2731
|
+
"allPatterns",
|
|
2732
|
+
"showHelp"
|
|
2733
|
+
],
|
|
2734
|
+
"classes": [],
|
|
2735
|
+
"lineCount": 163,
|
|
2736
|
+
"language": "js"
|
|
2737
|
+
}
|
|
2738
|
+
},
|
|
2739
|
+
"src\\commands\\tui.js": {
|
|
2740
|
+
"type": "file",
|
|
2741
|
+
"data": {
|
|
2742
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\commands\\tui.js",
|
|
2743
|
+
"size": 8036,
|
|
2744
|
+
"lastModified": "2025-12-27T16:12:13.545Z",
|
|
2745
|
+
"imports": [],
|
|
2746
|
+
"functions": [
|
|
2747
|
+
"readline",
|
|
2748
|
+
"REFRESH_RATE",
|
|
2749
|
+
"currentTab",
|
|
2750
|
+
"TABS",
|
|
2751
|
+
"intervalId",
|
|
2752
|
+
"tui",
|
|
2753
|
+
"targetDir",
|
|
2754
|
+
"render",
|
|
2755
|
+
"analytics",
|
|
2756
|
+
"memory",
|
|
2757
|
+
"tabs",
|
|
2758
|
+
"renderOverview",
|
|
2759
|
+
"s",
|
|
2760
|
+
"rate",
|
|
2761
|
+
"bar",
|
|
2762
|
+
"top",
|
|
2763
|
+
"topCmdText",
|
|
2764
|
+
"renderMemory",
|
|
2765
|
+
"decisions",
|
|
2766
|
+
"title",
|
|
2767
|
+
"i",
|
|
2768
|
+
"renderAudit",
|
|
2769
|
+
"activity",
|
|
2770
|
+
"exit"
|
|
2771
|
+
],
|
|
2772
|
+
"classes": [],
|
|
2773
|
+
"lineCount": 147,
|
|
2774
|
+
"language": "js"
|
|
2775
|
+
}
|
|
2776
|
+
},
|
|
2777
|
+
"src\\commands\\uninstall.js": {
|
|
2778
|
+
"type": "file",
|
|
2779
|
+
"data": {
|
|
2780
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\commands\\uninstall.js",
|
|
2781
|
+
"size": 6084,
|
|
2782
|
+
"lastModified": "2025-12-26T16:59:32.123Z",
|
|
2783
|
+
"imports": [],
|
|
2784
|
+
"functions": [
|
|
2785
|
+
"fs",
|
|
2786
|
+
"path",
|
|
2787
|
+
"readline",
|
|
2788
|
+
"colors",
|
|
2789
|
+
"log",
|
|
2790
|
+
"rl",
|
|
2791
|
+
"ask",
|
|
2792
|
+
"deleteRecursive",
|
|
2793
|
+
"curPath",
|
|
2794
|
+
"uninstall",
|
|
2795
|
+
"targetPath",
|
|
2796
|
+
"itemsToRemove",
|
|
2797
|
+
"existingItems",
|
|
2798
|
+
"fullPath",
|
|
2799
|
+
"confirm",
|
|
2800
|
+
"removed",
|
|
2801
|
+
"cursorDir",
|
|
2802
|
+
"remaining"
|
|
2803
|
+
],
|
|
2804
|
+
"classes": [],
|
|
2805
|
+
"lineCount": 168,
|
|
2806
|
+
"language": "js"
|
|
2807
|
+
}
|
|
2808
|
+
},
|
|
2809
|
+
"src\\commands\\update.js": {
|
|
2810
|
+
"type": "file",
|
|
2811
|
+
"data": {
|
|
2812
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\commands\\update.js",
|
|
2813
|
+
"size": 5723,
|
|
2814
|
+
"lastModified": "2025-12-26T16:28:04.811Z",
|
|
2815
|
+
"imports": [],
|
|
2816
|
+
"functions": [
|
|
2817
|
+
"fs",
|
|
2818
|
+
"path",
|
|
2819
|
+
"https",
|
|
2820
|
+
"colors",
|
|
2821
|
+
"log",
|
|
2822
|
+
"getCurrentVersion",
|
|
2823
|
+
"kitPath",
|
|
2824
|
+
"pkgPath",
|
|
2825
|
+
"pkg",
|
|
2826
|
+
"getLatestVersion",
|
|
2827
|
+
"data",
|
|
2828
|
+
"isNewer",
|
|
2829
|
+
"l",
|
|
2830
|
+
"c",
|
|
2831
|
+
"i",
|
|
2832
|
+
"updateFiles",
|
|
2833
|
+
"timestamp",
|
|
2834
|
+
"updatableComponents",
|
|
2835
|
+
"updated",
|
|
2836
|
+
"sourcePath",
|
|
2837
|
+
"destPath",
|
|
2838
|
+
"backupPath",
|
|
2839
|
+
"copyDirRecursive",
|
|
2840
|
+
"entries",
|
|
2841
|
+
"srcPath",
|
|
2842
|
+
"update",
|
|
2843
|
+
"currentVersion",
|
|
2844
|
+
"latestVersion"
|
|
2845
|
+
],
|
|
2846
|
+
"classes": [],
|
|
2847
|
+
"lineCount": 164,
|
|
2848
|
+
"language": "js"
|
|
2849
|
+
}
|
|
2850
|
+
},
|
|
2851
|
+
"src\\lib\\analytics.js": {
|
|
2852
|
+
"type": "file",
|
|
2853
|
+
"data": {
|
|
2854
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\lib\\analytics.js",
|
|
2855
|
+
"size": 7199,
|
|
2856
|
+
"lastModified": "2025-12-27T15:27:40.552Z",
|
|
2857
|
+
"imports": [],
|
|
2858
|
+
"functions": [
|
|
2859
|
+
"fs",
|
|
2860
|
+
"path",
|
|
2861
|
+
"getProjectAnalytics",
|
|
2862
|
+
"memory",
|
|
2863
|
+
"auditDates",
|
|
2864
|
+
"allLogs",
|
|
2865
|
+
"logs",
|
|
2866
|
+
"commandUsage",
|
|
2867
|
+
"cmd",
|
|
2868
|
+
"dailyActivity",
|
|
2869
|
+
"date",
|
|
2870
|
+
"successCount",
|
|
2871
|
+
"errorCount",
|
|
2872
|
+
"successRate",
|
|
2873
|
+
"durations",
|
|
2874
|
+
"avgDuration",
|
|
2875
|
+
"getGlobalAnalytics",
|
|
2876
|
+
"globalMemory",
|
|
2877
|
+
"techCount",
|
|
2878
|
+
"techPopularity",
|
|
2879
|
+
"patternFrequency",
|
|
2880
|
+
"projectsByMonth",
|
|
2881
|
+
"month",
|
|
2882
|
+
"generateAnalyticsReport",
|
|
2883
|
+
"projectAnalytics",
|
|
2884
|
+
"globalAnalytics",
|
|
2885
|
+
"report"
|
|
2886
|
+
],
|
|
2887
|
+
"classes": [],
|
|
2888
|
+
"lineCount": 199,
|
|
2889
|
+
"language": "js"
|
|
2890
|
+
}
|
|
2891
|
+
},
|
|
2892
|
+
"src\\lib\\auditLogger.js": {
|
|
2893
|
+
"type": "file",
|
|
2894
|
+
"data": {
|
|
2895
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\lib\\auditLogger.js",
|
|
2896
|
+
"size": 4961,
|
|
2897
|
+
"lastModified": "2025-12-27T15:02:00.546Z",
|
|
2898
|
+
"imports": [],
|
|
2899
|
+
"functions": [
|
|
2900
|
+
"fs",
|
|
2901
|
+
"path",
|
|
2902
|
+
"AUDIT_DIR",
|
|
2903
|
+
"generateId",
|
|
2904
|
+
"ensureAuditDir",
|
|
2905
|
+
"auditDir",
|
|
2906
|
+
"getLogFilePath",
|
|
2907
|
+
"dateStr",
|
|
2908
|
+
"logAuditEntry",
|
|
2909
|
+
"logFile",
|
|
2910
|
+
"fullEntry",
|
|
2911
|
+
"getAuditLogs",
|
|
2912
|
+
"content",
|
|
2913
|
+
"lines",
|
|
2914
|
+
"entries",
|
|
2915
|
+
"getAuditDates",
|
|
2916
|
+
"files",
|
|
2917
|
+
"cleanupOldLogs",
|
|
2918
|
+
"now",
|
|
2919
|
+
"maxAge",
|
|
2920
|
+
"deleted",
|
|
2921
|
+
"fileDate",
|
|
2922
|
+
"age",
|
|
2923
|
+
"getAuditSummary",
|
|
2924
|
+
"logs",
|
|
2925
|
+
"summary",
|
|
2926
|
+
"cmd"
|
|
2927
|
+
],
|
|
2928
|
+
"classes": [],
|
|
2929
|
+
"lineCount": 191,
|
|
2930
|
+
"language": "js"
|
|
2931
|
+
}
|
|
2932
|
+
},
|
|
2933
|
+
"src\\lib\\codebaseIndexer.js": {
|
|
2934
|
+
"type": "file",
|
|
2935
|
+
"data": {
|
|
2936
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\lib\\codebaseIndexer.js",
|
|
2937
|
+
"size": 9909,
|
|
2938
|
+
"lastModified": "2025-12-27T15:22:55.230Z",
|
|
2939
|
+
"imports": [],
|
|
2940
|
+
"functions": [
|
|
2941
|
+
"fs",
|
|
2942
|
+
"path",
|
|
2943
|
+
"INDEX_FILE",
|
|
2944
|
+
"IGNORE_PATTERNS",
|
|
2945
|
+
"shouldIndexFile",
|
|
2946
|
+
"ext",
|
|
2947
|
+
"validExts",
|
|
2948
|
+
"extractFileMetadata",
|
|
2949
|
+
"content",
|
|
2950
|
+
"stats",
|
|
2951
|
+
"imports",
|
|
2952
|
+
"importRegex",
|
|
2953
|
+
"functions",
|
|
2954
|
+
"funcRegex",
|
|
2955
|
+
"classes",
|
|
2956
|
+
"classRegex",
|
|
2957
|
+
"scanDirectory",
|
|
2958
|
+
"items",
|
|
2959
|
+
"fullPath",
|
|
2960
|
+
"relativePath",
|
|
2961
|
+
"stat",
|
|
2962
|
+
"buildIndex",
|
|
2963
|
+
"files",
|
|
2964
|
+
"index",
|
|
2965
|
+
"processed",
|
|
2966
|
+
"metadata",
|
|
2967
|
+
"saveIndex",
|
|
2968
|
+
"configDir",
|
|
2969
|
+
"indexPath",
|
|
2970
|
+
"loadIndex",
|
|
2971
|
+
"searchIndex",
|
|
2972
|
+
"results",
|
|
2973
|
+
"match",
|
|
2974
|
+
"searchText",
|
|
2975
|
+
"getIndexSummary",
|
|
2976
|
+
"summary",
|
|
2977
|
+
"byLang",
|
|
2978
|
+
"detectTechStack",
|
|
2979
|
+
"stack",
|
|
2980
|
+
"allImports"
|
|
2981
|
+
],
|
|
2982
|
+
"classes": [],
|
|
2983
|
+
"lineCount": 317,
|
|
2984
|
+
"language": "js"
|
|
2985
|
+
}
|
|
2986
|
+
},
|
|
2987
|
+
"src\\lib\\configManager.js": {
|
|
2988
|
+
"type": "file",
|
|
2989
|
+
"data": {
|
|
2990
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\lib\\configManager.js",
|
|
2991
|
+
"size": 6069,
|
|
2992
|
+
"lastModified": "2025-12-26T16:57:29.643Z",
|
|
2993
|
+
"imports": [],
|
|
2994
|
+
"functions": [
|
|
2995
|
+
"fs",
|
|
2996
|
+
"path",
|
|
2997
|
+
"CONFIG_FILENAME",
|
|
2998
|
+
"DEFAULT_CONFIG",
|
|
2999
|
+
"parseYaml",
|
|
3000
|
+
"result",
|
|
3001
|
+
"lines",
|
|
3002
|
+
"stack",
|
|
3003
|
+
"match",
|
|
3004
|
+
"indent",
|
|
3005
|
+
"key",
|
|
3006
|
+
"value",
|
|
3007
|
+
"parent",
|
|
3008
|
+
"stringifyYaml",
|
|
3009
|
+
"prefix",
|
|
3010
|
+
"deepMerge",
|
|
3011
|
+
"getConfigDir",
|
|
3012
|
+
"antigravityDir",
|
|
3013
|
+
"loadConfig",
|
|
3014
|
+
"configDir",
|
|
3015
|
+
"configPath",
|
|
3016
|
+
"content",
|
|
3017
|
+
"userConfig",
|
|
3018
|
+
"saveConfig",
|
|
3019
|
+
"header",
|
|
3020
|
+
"getConfigValue",
|
|
3021
|
+
"setConfigValue",
|
|
3022
|
+
"keys",
|
|
3023
|
+
"lastKey",
|
|
3024
|
+
"target"
|
|
3025
|
+
],
|
|
3026
|
+
"classes": [],
|
|
3027
|
+
"lineCount": 216,
|
|
3028
|
+
"language": "js"
|
|
3029
|
+
}
|
|
3030
|
+
},
|
|
3031
|
+
"src\\lib\\contextDatabase.js": {
|
|
3032
|
+
"type": "file",
|
|
3033
|
+
"data": {
|
|
3034
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\lib\\contextDatabase.js",
|
|
3035
|
+
"size": 8714,
|
|
3036
|
+
"lastModified": "2025-12-26T16:28:04.845Z",
|
|
3037
|
+
"imports": [],
|
|
3038
|
+
"functions": [
|
|
3039
|
+
"fs",
|
|
3040
|
+
"path",
|
|
3041
|
+
"DB_DIR",
|
|
3042
|
+
"DB_FILE",
|
|
3043
|
+
"SCHEMA",
|
|
3044
|
+
"getDbPath",
|
|
3045
|
+
"getDbDir",
|
|
3046
|
+
"hasSqlite",
|
|
3047
|
+
"initDatabase",
|
|
3048
|
+
"Database",
|
|
3049
|
+
"dbDir",
|
|
3050
|
+
"dbPath",
|
|
3051
|
+
"db",
|
|
3052
|
+
"_db",
|
|
3053
|
+
"getDatabase",
|
|
3054
|
+
"closeDatabase",
|
|
3055
|
+
"setProject",
|
|
3056
|
+
"stmt",
|
|
3057
|
+
"getProject",
|
|
3058
|
+
"row",
|
|
3059
|
+
"addDecisionDb",
|
|
3060
|
+
"result",
|
|
3061
|
+
"getDecisions",
|
|
3062
|
+
"addNoteDb",
|
|
3063
|
+
"getNotes",
|
|
3064
|
+
"upsertEntityDb",
|
|
3065
|
+
"getEntityDb",
|
|
3066
|
+
"addRelation",
|
|
3067
|
+
"source",
|
|
3068
|
+
"target",
|
|
3069
|
+
"getRelations"
|
|
3070
|
+
],
|
|
3071
|
+
"classes": [],
|
|
3072
|
+
"lineCount": 363,
|
|
3073
|
+
"language": "js"
|
|
3074
|
+
}
|
|
3075
|
+
},
|
|
3076
|
+
"src\\lib\\dashboardTemplate.js": {
|
|
3077
|
+
"type": "file",
|
|
3078
|
+
"data": {
|
|
3079
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\lib\\dashboardTemplate.js",
|
|
3080
|
+
"size": 8311,
|
|
3081
|
+
"lastModified": "2025-12-27T16:11:54.210Z",
|
|
3082
|
+
"imports": [],
|
|
3083
|
+
"functions": [
|
|
3084
|
+
"getHtml",
|
|
3085
|
+
"jsonPayload",
|
|
3086
|
+
"data",
|
|
3087
|
+
"activityCtx",
|
|
3088
|
+
"dates",
|
|
3089
|
+
"counts",
|
|
3090
|
+
"cmdsCtx",
|
|
3091
|
+
"topCmds",
|
|
3092
|
+
"errorsList",
|
|
3093
|
+
"div",
|
|
3094
|
+
"techStack",
|
|
3095
|
+
"textArray",
|
|
3096
|
+
"span"
|
|
3097
|
+
],
|
|
3098
|
+
"classes": [],
|
|
3099
|
+
"lineCount": 191,
|
|
3100
|
+
"language": "js"
|
|
3101
|
+
}
|
|
3102
|
+
},
|
|
3103
|
+
"src\\lib\\detector.js": {
|
|
3104
|
+
"type": "file",
|
|
3105
|
+
"data": {
|
|
3106
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\lib\\detector.js",
|
|
3107
|
+
"size": 4950,
|
|
3108
|
+
"lastModified": "2025-12-26T16:28:04.858Z",
|
|
3109
|
+
"imports": [],
|
|
3110
|
+
"functions": [
|
|
3111
|
+
"fs",
|
|
3112
|
+
"path",
|
|
3113
|
+
"detectTechStack",
|
|
3114
|
+
"detected",
|
|
3115
|
+
"pkgPath",
|
|
3116
|
+
"pkg",
|
|
3117
|
+
"deps",
|
|
3118
|
+
"suggestSkills",
|
|
3119
|
+
"suggestions",
|
|
3120
|
+
"formatDetectedStack",
|
|
3121
|
+
"parts"
|
|
3122
|
+
],
|
|
3123
|
+
"classes": [],
|
|
3124
|
+
"lineCount": 141,
|
|
3125
|
+
"language": "js"
|
|
3126
|
+
}
|
|
3127
|
+
},
|
|
3128
|
+
"src\\lib\\fileChangeTracker.js": {
|
|
3129
|
+
"type": "file",
|
|
3130
|
+
"data": {
|
|
3131
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\lib\\fileChangeTracker.js",
|
|
3132
|
+
"size": 3496,
|
|
3133
|
+
"lastModified": "2025-12-27T15:20:42.127Z",
|
|
3134
|
+
"imports": [],
|
|
3135
|
+
"functions": [
|
|
3136
|
+
"fs",
|
|
3137
|
+
"path",
|
|
3138
|
+
"CHANGES_FILE",
|
|
3139
|
+
"generateId",
|
|
3140
|
+
"trackFileChange",
|
|
3141
|
+
"changesPath",
|
|
3142
|
+
"changesDir",
|
|
3143
|
+
"change",
|
|
3144
|
+
"getFileHistory",
|
|
3145
|
+
"content",
|
|
3146
|
+
"lines",
|
|
3147
|
+
"changes",
|
|
3148
|
+
"sinceDate",
|
|
3149
|
+
"getFileChangesSummary",
|
|
3150
|
+
"summary"
|
|
3151
|
+
],
|
|
3152
|
+
"classes": [],
|
|
3153
|
+
"lineCount": 123,
|
|
3154
|
+
"language": "js"
|
|
3155
|
+
}
|
|
3156
|
+
},
|
|
3157
|
+
"src\\lib\\knowledgeGraph.js": {
|
|
3158
|
+
"type": "file",
|
|
3159
|
+
"data": {
|
|
3160
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\lib\\knowledgeGraph.js",
|
|
3161
|
+
"size": 6127,
|
|
3162
|
+
"lastModified": "2025-12-27T17:19:59.370Z",
|
|
3163
|
+
"imports": [],
|
|
3164
|
+
"functions": [
|
|
3165
|
+
"fs",
|
|
3166
|
+
"path",
|
|
3167
|
+
"GRAPH_FILE",
|
|
3168
|
+
"index",
|
|
3169
|
+
"sourceDir",
|
|
3170
|
+
"targetPath",
|
|
3171
|
+
"indexPath",
|
|
3172
|
+
"impacted",
|
|
3173
|
+
"queue",
|
|
3174
|
+
"visited",
|
|
3175
|
+
"consumers",
|
|
3176
|
+
"configDir",
|
|
3177
|
+
"graphPath",
|
|
3178
|
+
"data"
|
|
3179
|
+
],
|
|
3180
|
+
"classes": [
|
|
3181
|
+
"KnowledgeGraph"
|
|
3182
|
+
],
|
|
3183
|
+
"lineCount": 186,
|
|
3184
|
+
"language": "js"
|
|
3185
|
+
}
|
|
3186
|
+
},
|
|
3187
|
+
"src\\lib\\memoryManager.js": {
|
|
3188
|
+
"type": "file",
|
|
3189
|
+
"data": {
|
|
3190
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\lib\\memoryManager.js",
|
|
3191
|
+
"size": 9181,
|
|
3192
|
+
"lastModified": "2025-12-27T14:51:28.766Z",
|
|
3193
|
+
"imports": [],
|
|
3194
|
+
"functions": [
|
|
3195
|
+
"fs",
|
|
3196
|
+
"path",
|
|
3197
|
+
"MEMORY_DIR_NAME",
|
|
3198
|
+
"MEMORY_FILE",
|
|
3199
|
+
"DEFAULT_MEMORY",
|
|
3200
|
+
"getMemoryPath",
|
|
3201
|
+
"configDir",
|
|
3202
|
+
"ensureMemoryDir",
|
|
3203
|
+
"memoryDir",
|
|
3204
|
+
"loadMemory",
|
|
3205
|
+
"memoryPath",
|
|
3206
|
+
"content",
|
|
3207
|
+
"memory",
|
|
3208
|
+
"saveMemory",
|
|
3209
|
+
"updateProject",
|
|
3210
|
+
"updateSession",
|
|
3211
|
+
"addDecision",
|
|
3212
|
+
"addNote",
|
|
3213
|
+
"upsertEntity",
|
|
3214
|
+
"getEntity",
|
|
3215
|
+
"clearMemory",
|
|
3216
|
+
"getMemorySummary",
|
|
3217
|
+
"summary",
|
|
3218
|
+
"recent",
|
|
3219
|
+
"searchMemory",
|
|
3220
|
+
"results",
|
|
3221
|
+
"searchTerm",
|
|
3222
|
+
"text",
|
|
3223
|
+
"reason",
|
|
3224
|
+
"searchText",
|
|
3225
|
+
"searchMemorySemantic",
|
|
3226
|
+
"decisions",
|
|
3227
|
+
"notes",
|
|
3228
|
+
"documents"
|
|
3229
|
+
],
|
|
3230
|
+
"classes": [],
|
|
3231
|
+
"lineCount": 344,
|
|
3232
|
+
"language": "js"
|
|
3233
|
+
}
|
|
3234
|
+
},
|
|
3235
|
+
"src\\lib\\multiProjectLearning.js": {
|
|
3236
|
+
"type": "file",
|
|
3237
|
+
"data": {
|
|
3238
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\lib\\multiProjectLearning.js",
|
|
3239
|
+
"size": 7701,
|
|
3240
|
+
"lastModified": "2025-12-27T15:27:01.554Z",
|
|
3241
|
+
"imports": [],
|
|
3242
|
+
"functions": [
|
|
3243
|
+
"fs",
|
|
3244
|
+
"path",
|
|
3245
|
+
"os",
|
|
3246
|
+
"GLOBAL_MEMORY_DIR",
|
|
3247
|
+
"GLOBAL_MEMORY_FILE",
|
|
3248
|
+
"LEARNED_PATTERNS_FILE",
|
|
3249
|
+
"ensureGlobalDir",
|
|
3250
|
+
"DEFAULT_GLOBAL_MEMORY",
|
|
3251
|
+
"loadGlobalMemory",
|
|
3252
|
+
"filePath",
|
|
3253
|
+
"newMemory",
|
|
3254
|
+
"saveGlobalMemory",
|
|
3255
|
+
"registerProject",
|
|
3256
|
+
"globalMemory",
|
|
3257
|
+
"projectId",
|
|
3258
|
+
"existing",
|
|
3259
|
+
"techKey",
|
|
3260
|
+
"learnPattern",
|
|
3261
|
+
"existingPattern",
|
|
3262
|
+
"getSuggestions",
|
|
3263
|
+
"suggestions",
|
|
3264
|
+
"exactMatch",
|
|
3265
|
+
"overlap",
|
|
3266
|
+
"getGlobalStatistics",
|
|
3267
|
+
"getMostUsedTech",
|
|
3268
|
+
"techCount"
|
|
3269
|
+
],
|
|
3270
|
+
"classes": [],
|
|
3271
|
+
"lineCount": 245,
|
|
3272
|
+
"language": "js"
|
|
3273
|
+
}
|
|
3274
|
+
},
|
|
3275
|
+
"src\\lib\\patternDetection.js": {
|
|
3276
|
+
"type": "file",
|
|
3277
|
+
"data": {
|
|
3278
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\lib\\patternDetection.js",
|
|
3279
|
+
"size": 9983,
|
|
3280
|
+
"lastModified": "2025-12-27T15:27:38.566Z",
|
|
3281
|
+
"imports": [],
|
|
3282
|
+
"functions": [
|
|
3283
|
+
"fs",
|
|
3284
|
+
"path",
|
|
3285
|
+
"detectPatterns",
|
|
3286
|
+
"patterns",
|
|
3287
|
+
"files",
|
|
3288
|
+
"allImports",
|
|
3289
|
+
"fileNames",
|
|
3290
|
+
"collectAllImports",
|
|
3291
|
+
"imports",
|
|
3292
|
+
"detectArchitecturePatterns",
|
|
3293
|
+
"hasLib",
|
|
3294
|
+
"hasComponents",
|
|
3295
|
+
"hasServices",
|
|
3296
|
+
"hasUtils",
|
|
3297
|
+
"hasFeatures",
|
|
3298
|
+
"hasModules",
|
|
3299
|
+
"hasApiRoutes",
|
|
3300
|
+
"hasControllers",
|
|
3301
|
+
"detectConventions",
|
|
3302
|
+
"conventions",
|
|
3303
|
+
"hasKebabCase",
|
|
3304
|
+
"hasCamelCase",
|
|
3305
|
+
"hasPascalCase",
|
|
3306
|
+
"tsFiles",
|
|
3307
|
+
"jsFiles",
|
|
3308
|
+
"hasIndexFiles",
|
|
3309
|
+
"detectDependencyPatterns",
|
|
3310
|
+
"detectTestingPatterns",
|
|
3311
|
+
"hasTestFolder",
|
|
3312
|
+
"hasSpecFiles",
|
|
3313
|
+
"hasTestFiles",
|
|
3314
|
+
"getPatternSummary",
|
|
3315
|
+
"total"
|
|
3316
|
+
],
|
|
3317
|
+
"classes": [],
|
|
3318
|
+
"lineCount": 338,
|
|
3319
|
+
"language": "js"
|
|
3320
|
+
}
|
|
3321
|
+
},
|
|
3322
|
+
"src\\lib\\profiles.js": {
|
|
3323
|
+
"type": "file",
|
|
3324
|
+
"data": {
|
|
3325
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\lib\\profiles.js",
|
|
3326
|
+
"size": 3220,
|
|
3327
|
+
"lastModified": "2025-12-26T16:28:04.891Z",
|
|
3328
|
+
"imports": [],
|
|
3329
|
+
"functions": [
|
|
3330
|
+
"PROFILES",
|
|
3331
|
+
"getProfile",
|
|
3332
|
+
"getProfileList",
|
|
3333
|
+
"getProfileEstimate",
|
|
3334
|
+
"profile",
|
|
3335
|
+
"estimates"
|
|
3336
|
+
],
|
|
3337
|
+
"classes": [],
|
|
3338
|
+
"lineCount": 101,
|
|
3339
|
+
"language": "js"
|
|
3340
|
+
}
|
|
3341
|
+
},
|
|
3342
|
+
"src\\lib\\semanticSearch.js": {
|
|
3343
|
+
"type": "file",
|
|
3344
|
+
"data": {
|
|
3345
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\lib\\semanticSearch.js",
|
|
3346
|
+
"size": 3007,
|
|
3347
|
+
"lastModified": "2025-12-27T14:50:46.299Z",
|
|
3348
|
+
"imports": [],
|
|
3349
|
+
"functions": [
|
|
3350
|
+
"tokenize",
|
|
3351
|
+
"termFrequency",
|
|
3352
|
+
"freq",
|
|
3353
|
+
"calculateTFIDF",
|
|
3354
|
+
"N",
|
|
3355
|
+
"df",
|
|
3356
|
+
"tokens",
|
|
3357
|
+
"tf",
|
|
3358
|
+
"tfidf",
|
|
3359
|
+
"idf",
|
|
3360
|
+
"cosineSimilarity",
|
|
3361
|
+
"terms",
|
|
3362
|
+
"dotProduct",
|
|
3363
|
+
"mag1",
|
|
3364
|
+
"mag2",
|
|
3365
|
+
"v1",
|
|
3366
|
+
"v2",
|
|
3367
|
+
"semanticSearch",
|
|
3368
|
+
"allDocs",
|
|
3369
|
+
"vectors",
|
|
3370
|
+
"queryVector",
|
|
3371
|
+
"results"
|
|
3372
|
+
],
|
|
3373
|
+
"classes": [],
|
|
3374
|
+
"lineCount": 119,
|
|
3375
|
+
"language": "js"
|
|
3376
|
+
}
|
|
3377
|
+
},
|
|
3378
|
+
"src\\lib\\sessionManager.js": {
|
|
3379
|
+
"type": "file",
|
|
3380
|
+
"data": {
|
|
3381
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\lib\\sessionManager.js",
|
|
3382
|
+
"size": 4497,
|
|
3383
|
+
"lastModified": "2025-12-27T15:17:26.265Z",
|
|
3384
|
+
"imports": [],
|
|
3385
|
+
"functions": [
|
|
3386
|
+
"fs",
|
|
3387
|
+
"path",
|
|
3388
|
+
"SESSIONS_DIR",
|
|
3389
|
+
"ensureSessionsDir",
|
|
3390
|
+
"sessionsPath",
|
|
3391
|
+
"saveSessionSnapshot",
|
|
3392
|
+
"memory",
|
|
3393
|
+
"date",
|
|
3394
|
+
"timestamp",
|
|
3395
|
+
"snapshotPath",
|
|
3396
|
+
"listSnapshots",
|
|
3397
|
+
"files",
|
|
3398
|
+
"loadSnapshot",
|
|
3399
|
+
"rollbackToSnapshot",
|
|
3400
|
+
"currentDate",
|
|
3401
|
+
"snapshot",
|
|
3402
|
+
"compareSnapshots",
|
|
3403
|
+
"snap1",
|
|
3404
|
+
"snap2",
|
|
3405
|
+
"comparison",
|
|
3406
|
+
"getSnapshotSummary",
|
|
3407
|
+
"cleanupOldSnapshots",
|
|
3408
|
+
"snapshots",
|
|
3409
|
+
"cutoffDate",
|
|
3410
|
+
"deleted",
|
|
3411
|
+
"snapshotDate"
|
|
3412
|
+
],
|
|
3413
|
+
"classes": [],
|
|
3414
|
+
"lineCount": 166,
|
|
3415
|
+
"language": "js"
|
|
3416
|
+
}
|
|
3417
|
+
},
|
|
3418
|
+
"src\\lib\\sizeCalculator.js": {
|
|
3419
|
+
"type": "file",
|
|
3420
|
+
"data": {
|
|
3421
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\lib\\sizeCalculator.js",
|
|
3422
|
+
"size": 3332,
|
|
3423
|
+
"lastModified": "2025-12-26T16:28:04.900Z",
|
|
3424
|
+
"imports": [],
|
|
3425
|
+
"functions": [
|
|
3426
|
+
"fs",
|
|
3427
|
+
"path",
|
|
3428
|
+
"countFilesRecursive",
|
|
3429
|
+
"count",
|
|
3430
|
+
"size",
|
|
3431
|
+
"entries",
|
|
3432
|
+
"fullPath",
|
|
3433
|
+
"sub",
|
|
3434
|
+
"stats",
|
|
3435
|
+
"formatSize",
|
|
3436
|
+
"calculateInstallSize",
|
|
3437
|
+
"totalFiles",
|
|
3438
|
+
"totalSize",
|
|
3439
|
+
"compPath",
|
|
3440
|
+
"getComponentPaths",
|
|
3441
|
+
"components"
|
|
3442
|
+
],
|
|
3443
|
+
"classes": [],
|
|
3444
|
+
"lineCount": 122,
|
|
3445
|
+
"language": "js"
|
|
3446
|
+
}
|
|
3447
|
+
},
|
|
3448
|
+
"src\\lib\\skillPacks.js": {
|
|
3449
|
+
"type": "file",
|
|
3450
|
+
"data": {
|
|
3451
|
+
"path": "C:\\Users\\Duong Nguyen\\.gemini\\antigravity\\playground\\empty-pioneer\\anchi-kit\\src\\lib\\skillPacks.js",
|
|
3452
|
+
"size": 6009,
|
|
3453
|
+
"lastModified": "2025-12-27T11:51:00.299Z",
|
|
3454
|
+
"imports": [],
|
|
3455
|
+
"functions": [
|
|
3456
|
+
"SKILL_PACKS",
|
|
3457
|
+
"getSkillPack",
|
|
3458
|
+
"getSkillPackList",
|
|
3459
|
+
"resolveSkillPacks",
|
|
3460
|
+
"skills",
|
|
3461
|
+
"pack"
|
|
3462
|
+
],
|
|
3463
|
+
"classes": [],
|
|
3464
|
+
"lineCount": 219,
|
|
3465
|
+
"language": "js"
|
|
3466
|
+
}
|
|
3467
|
+
}
|
|
3468
|
+
},
|
|
3469
|
+
"edges": []
|
|
3470
|
+
}
|