@techwavedev/agi-agent-kit 1.4.2 → 1.5.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/CHANGELOG.md +46 -0
- package/README.md +28 -19
- package/README.pt-BR.md +537 -0
- package/bin/init.js +943 -84
- package/package.json +1 -1
- package/templates/base/.agent/rules/core_rules.md +69 -0
- package/templates/base/.agent/workflows/memory-usage.md +68 -0
- package/templates/base/.env.example +21 -4
- package/templates/base/AGENTS.md +37 -8
- package/templates/base/execution/memory_usage_proof.py +307 -0
- package/templates/skills/SKILLS_CATALOG.md +1 -1
- package/templates/skills/core/documentation/SKILL.md +5 -3
- package/templates/skills/core/documentation/scripts/__pycache__/analyze_code.cpython-312.pyc +0 -0
- package/templates/skills/core/documentation/scripts/__pycache__/detect_changes.cpython-312.pyc +0 -0
- package/templates/skills/core/documentation/scripts/__pycache__/generate_changelog.cpython-312.pyc +0 -0
- package/templates/skills/core/documentation/scripts/__pycache__/sync_docs.cpython-312.pyc +0 -0
- package/templates/skills/core/documentation/scripts/__pycache__/update_skill_docs.cpython-312.pyc +0 -0
- package/templates/skills/core/pdf-reader/scripts/__pycache__/extract_text.cpython-312.pyc +0 -0
- package/templates/skills/core/qdrant-memory/scripts/__pycache__/benchmark_token_savings.cpython-312.pyc +0 -0
- package/templates/skills/core/qdrant-memory/scripts/__pycache__/bm25_index.cpython-312.pyc +0 -0
- package/templates/skills/core/qdrant-memory/scripts/__pycache__/embedding_utils.cpython-312.pyc +0 -0
- package/templates/skills/core/qdrant-memory/scripts/__pycache__/hybrid_search.cpython-312.pyc +0 -0
- package/templates/skills/core/qdrant-memory/scripts/__pycache__/init_collection.cpython-312.pyc +0 -0
- package/templates/skills/core/qdrant-memory/scripts/__pycache__/memory_retrieval.cpython-312.pyc +0 -0
- package/templates/skills/core/qdrant-memory/scripts/__pycache__/semantic_cache.cpython-312.pyc +0 -0
- package/templates/skills/core/qdrant-memory/scripts/__pycache__/test_skill.cpython-312.pyc +0 -0
- package/templates/skills/core/webcrawler/scripts/__pycache__/crawl_docs.cpython-312.pyc +0 -0
- package/templates/skills/core/webcrawler/scripts/__pycache__/extract_page.cpython-312.pyc +0 -0
- package/templates/skills/core/webcrawler/scripts/__pycache__/filter_docs.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/scripts/__pycache__/last30days.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/cache.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/dates.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/dedupe.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/env.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/http.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/models.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/normalize.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/openai_reddit.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/reddit_enrich.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/render.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/schema.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/score.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/ui.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/websearch.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/xai_x.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/tests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/tests/__pycache__/test_cache.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/tests/__pycache__/test_dates.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/tests/__pycache__/test_dedupe.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/tests/__pycache__/test_models.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/tests/__pycache__/test_normalize.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/tests/__pycache__/test_render.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/last30days/tests/__pycache__/test_score.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/voice-ai-engine-development/examples/__pycache__/complete_voice_engine.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/voice-ai-engine-development/examples/__pycache__/gemini_agent_example.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/voice-ai-engine-development/examples/__pycache__/interrupt_system_example.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/voice-ai-engine-development/templates/__pycache__/base_worker_template.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/voice-ai-engine-development/templates/__pycache__/multi_provider_factory_template.cpython-312.pyc +0 -0
- package/templates/skills/extended/ai-agents/youtube-summarizer/scripts/__pycache__/extract-transcript.cpython-312.pyc +0 -0
- package/templates/skills/extended/backend/senior-architect/scripts/__pycache__/architecture_diagram_generator.cpython-312.pyc +0 -0
- package/templates/skills/extended/backend/senior-architect/scripts/__pycache__/dependency_analyzer.cpython-312.pyc +0 -0
- package/templates/skills/extended/backend/senior-architect/scripts/__pycache__/project_architect.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/pdf/scripts/__pycache__/check_bounding_boxes.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/pdf/scripts/__pycache__/check_bounding_boxes_test.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/pdf/scripts/__pycache__/check_fillable_fields.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/pdf/scripts/__pycache__/convert_pdf_to_images.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/pdf/scripts/__pycache__/create_validation_image.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/pdf/scripts/__pycache__/extract_form_field_info.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/pdf/scripts/__pycache__/fill_fillable_fields.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/pdf/scripts/__pycache__/fill_pdf_form_with_annotations.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/pdf-official/scripts/__pycache__/check_bounding_boxes.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/pdf-official/scripts/__pycache__/check_bounding_boxes_test.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/pdf-official/scripts/__pycache__/check_fillable_fields.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/pdf-official/scripts/__pycache__/convert_pdf_to_images.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/pdf-official/scripts/__pycache__/create_validation_image.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/pdf-official/scripts/__pycache__/extract_form_field_info.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/pdf-official/scripts/__pycache__/fill_fillable_fields.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/pdf-official/scripts/__pycache__/fill_pdf_form_with_annotations.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/xlsx/__pycache__/recalc.cpython-312.pyc +0 -0
- package/templates/skills/extended/data/xlsx-official/__pycache__/recalc.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/0.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/1.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/10.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/100.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/101.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/102.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/103.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/104.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/105.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/106.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/107.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/108.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/109.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/11.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/110.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/111.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/112.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/113.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/114.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/115.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/116.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/117.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/118.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/119.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/12.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/120.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/121.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/122.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/123.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/124.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/125.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/126.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/127.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/128.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/129.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/13.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/130.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/131.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/132.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/133.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/134.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/135.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/136.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/137.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/138.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/139.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/14.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/140.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/141.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/142.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/143.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/144.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/145.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/146.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/147.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/148.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/149.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/15.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/150.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/151.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/152.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/153.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/154.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/155.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/156.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/157.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/158.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/159.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/16.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/160.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/161.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/162.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/163.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/17.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/18.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/19.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/2.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/20.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/21.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/22.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/23.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/24.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/25.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/26.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/27.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/28.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/29.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/3.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/30.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/31.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/32.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/33.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/34.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/35.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/36.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/37.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/38.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/39.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/4.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/40.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/41.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/42.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/43.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/44.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/45.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/46.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/47.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/48.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/49.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/5.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/50.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/51.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/52.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/53.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/54.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/55.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/56.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/57.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/58.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/59.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/6.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/60.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/61.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/62.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/63.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/64.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/65.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/66.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/67.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/68.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/69.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/7.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/70.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/71.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/72.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/73.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/74.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/75.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/76.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/77.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/78.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/79.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/8.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/80.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/81.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/82.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/83.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/84.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/85.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/86.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/87.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/88.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/89.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/9.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/90.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/91.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/92.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/93.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/94.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/95.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/96.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/97.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/98.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/2026-01-05-00-49-17/humaneval-solutions/__pycache__/99.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/0.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/1.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/10.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/100.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/101.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/102.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/103.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/104.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/105.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/106.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/107.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/108.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/109.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/11.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/110.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/111.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/112.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/113.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/114.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/115.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/116.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/117.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/118.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/119.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/12.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/120.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/121.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/122.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/123.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/124.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/125.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/126.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/127.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/128.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/129.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/13.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/130.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/131.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/132.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/133.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/134.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/135.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/136.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/137.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/138.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/139.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/14.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/140.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/141.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/142.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/143.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/144.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/145.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/146.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/147.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/148.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/149.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/15.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/150.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/151.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/152.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/153.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/154.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/155.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/156.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/157.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/158.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/159.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/16.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/160.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/161.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/162.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/163.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/17.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/18.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/19.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/2.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/20.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/21.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/22.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/23.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/24.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/25.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/26.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/27.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/28.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/29.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/3.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/30.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/31.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/32.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/33.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/34.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/35.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/36.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/37.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/38.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/39.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/4.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/40.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/41.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/42.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/43.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/44.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/45.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/46.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/47.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/48.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/49.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/5.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/50.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/51.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/52.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/53.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/54.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/55.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/56.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/57.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/58.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/59.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/6.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/60.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/61.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/62.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/63.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/64.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/65.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/66.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/67.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/68.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/69.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/7.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/70.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/71.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/72.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/73.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/74.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/75.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/76.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/77.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/78.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/79.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/8.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/80.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/81.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/82.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/83.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/84.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/85.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/86.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/87.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/88.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/89.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/9.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/90.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/91.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/92.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/93.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/94.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/95.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/96.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/97.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/98.cpython-312.pyc +0 -0
- package/templates/skills/extended/devops/loki-mode/benchmarks/results/humaneval-loki-solutions/__pycache__/99.cpython-312.pyc +0 -0
- package/templates/skills/extended/documentation/documentation-generation-doc-generate/SKILL.md +1 -0
- package/templates/skills/extended/documentation/docx/ooxml/scripts/__pycache__/pack.cpython-312.pyc +0 -0
- package/templates/skills/extended/documentation/docx/ooxml/scripts/__pycache__/unpack.cpython-312.pyc +0 -0
- package/templates/skills/extended/documentation/docx/ooxml/scripts/__pycache__/validate.cpython-312.pyc +0 -0
- package/templates/skills/extended/documentation/docx/ooxml/scripts/validation/__pycache__/__init__.cpython-312.pyc +0 -0
- package/templates/skills/extended/documentation/docx/ooxml/scripts/validation/__pycache__/base.cpython-312.pyc +0 -0
- package/templates/skills/extended/documentation/docx/ooxml/scripts/validation/__pycache__/docx.cpython-312.pyc +0 -0
- package/templates/skills/extended/documentation/docx/ooxml/scripts/validation/__pycache__/pptx.cpython-312.pyc +0 -0
- package/templates/skills/extended/documentation/docx/ooxml/scripts/validation/__pycache__/redlining.cpython-312.pyc +0 -0
- package/templates/skills/extended/documentation/docx/scripts/__pycache__/__init__.cpython-312.pyc +0 -0
- package/templates/skills/extended/documentation/docx/scripts/__pycache__/document.cpython-312.pyc +0 -0
- package/templates/skills/extended/documentation/docx/scripts/__pycache__/utilities.cpython-312.pyc +0 -0
- package/templates/skills/extended/documentation/product-manager-toolkit/scripts/__pycache__/customer_interview_analyzer.cpython-312.pyc +0 -0
- package/templates/skills/extended/documentation/product-manager-toolkit/scripts/__pycache__/rice_prioritizer.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/pptx/ooxml/scripts/__pycache__/pack.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/pptx/ooxml/scripts/__pycache__/unpack.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/pptx/ooxml/scripts/__pycache__/validate.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/pptx/ooxml/scripts/validation/__pycache__/__init__.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/pptx/ooxml/scripts/validation/__pycache__/base.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/pptx/ooxml/scripts/validation/__pycache__/docx.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/pptx/ooxml/scripts/validation/__pycache__/pptx.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/pptx/ooxml/scripts/validation/__pycache__/redlining.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/pptx/scripts/__pycache__/inventory.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/pptx/scripts/__pycache__/rearrange.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/pptx/scripts/__pycache__/replace.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/pptx/scripts/__pycache__/thumbnail.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/senior-fullstack/scripts/__pycache__/code_quality_analyzer.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/senior-fullstack/scripts/__pycache__/fullstack_scaffolder.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/senior-fullstack/scripts/__pycache__/project_scaffolder.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/ui-ux-pro-max/SKILL.md +34 -1
- package/templates/skills/extended/frontend/ui-ux-pro-max/scripts/__pycache__/core.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-312.pyc +0 -0
- package/templates/skills/extended/frontend/ui-ux-pro-max/scripts/__pycache__/search.cpython-312.pyc +0 -0
- package/templates/skills/extended/mobile/app-store-optimization/__pycache__/ab_test_planner.cpython-312.pyc +0 -0
- package/templates/skills/extended/mobile/app-store-optimization/__pycache__/aso_scorer.cpython-312.pyc +0 -0
- package/templates/skills/extended/mobile/app-store-optimization/__pycache__/competitor_analyzer.cpython-312.pyc +0 -0
- package/templates/skills/extended/mobile/app-store-optimization/__pycache__/keyword_analyzer.cpython-312.pyc +0 -0
- package/templates/skills/extended/mobile/app-store-optimization/__pycache__/launch_checklist.cpython-312.pyc +0 -0
- package/templates/skills/extended/mobile/app-store-optimization/__pycache__/localization_helper.cpython-312.pyc +0 -0
- package/templates/skills/extended/mobile/app-store-optimization/__pycache__/metadata_optimizer.cpython-312.pyc +0 -0
- package/templates/skills/extended/mobile/app-store-optimization/__pycache__/review_analyzer.cpython-312.pyc +0 -0
- package/templates/skills/extended/other/oss-hunter/bin/__pycache__/hunter.cpython-312.pyc +0 -0
- package/templates/skills/extended/other/typescript-expert/scripts/__pycache__/ts_diagnostic.cpython-312.pyc +0 -0
- package/templates/skills/extended/workflow/slack-gif-creator/core/__pycache__/easing.cpython-312.pyc +0 -0
- package/templates/skills/extended/workflow/slack-gif-creator/core/__pycache__/frame_composer.cpython-312.pyc +0 -0
- package/templates/skills/extended/workflow/slack-gif-creator/core/__pycache__/gif_builder.cpython-312.pyc +0 -0
- package/templates/skills/extended/workflow/slack-gif-creator/core/__pycache__/validators.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/ai-agents/prompt-engineering-patterns/scripts/__pycache__/optimize-prompt.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/backend/api-design-principles/assets/__pycache__/rest-api-template.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/backend/api-patterns/scripts/__pycache__/api_validator.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/backend/database-design/scripts/__pycache__/schema_validator.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/content/content-creator/scripts/__pycache__/brand_voice_analyzer.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/content/content-creator/scripts/__pycache__/seo_optimizer.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/content/geo-fundamentals/scripts/__pycache__/geo_checker.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/content/seo-fundamentals/scripts/__pycache__/seo_checker.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/debugging/performance-profiling/scripts/__pycache__/lighthouse_audit.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/frontend/frontend-design/scripts/__pycache__/accessibility_checker.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/frontend/frontend-design/scripts/__pycache__/ux_audit.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/i18n/i18n-localization/scripts/__pycache__/i18n_checker.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/mobile/mobile-design/scripts/__pycache__/mobile_audit.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/security/vulnerability-scanner/scripts/__pycache__/security_scan.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/testing/lint-and-validate/scripts/__pycache__/lint_runner.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/testing/lint-and-validate/scripts/__pycache__/type_coverage.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/testing/testing-patterns/scripts/__pycache__/test_runner.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/testing/webapp-testing/scripts/__pycache__/playwright_runner.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/workflow/plugin-discovery/scripts/__pycache__/platform_setup.cpython-312.pyc +0 -0
- package/templates/skills/knowledge/workflow/self-update/scripts/__pycache__/update_kit.cpython-312.pyc +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@techwavedev/agi-agent-kit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "Enterprise-Grade Agentic Framework - Modular skill-based AI assistant toolkit with deterministic execution, semantic memory, and platform-adaptive orchestration.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"agi-agent-kit": "./bin/init.js"
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Core system rules and behavior requirements for all AI agents
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# 🤖 Agent Core Rules (MANDATORY)
|
|
6
|
+
|
|
7
|
+
You are operating within the `AGI Agent Kit` deterministic framework.
|
|
8
|
+
|
|
9
|
+
## 1. Zero Tolerance Probabilistic Execution
|
|
10
|
+
|
|
11
|
+
- Do NOT perform complex, multi-step data transformations using inline code snippets if an `execution/` script exists for it.
|
|
12
|
+
- **You are the orchestrator.** Rely on the `execution/` scripts to handle logic, files, and queries deterministically.
|
|
13
|
+
|
|
14
|
+
## 2. Memory is Mandatory (Qdrant & Ollama)
|
|
15
|
+
|
|
16
|
+
You are REQUIRED to actively use Qdrant Semantic Memory during EVERY task.
|
|
17
|
+
Failure to call these scripts is strictly considered a bug.
|
|
18
|
+
|
|
19
|
+
### Before Beginning A Complex Task
|
|
20
|
+
|
|
21
|
+
You MUST retrieve context to save tokens and reuse past logic:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
python3 execution/memory_manager.py auto --query "<summary of user request>"
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
- If it returns `cache_hit: true`, use the cache.
|
|
28
|
+
- If it returns `source: memory`, inject those context chunks securely into your answer.
|
|
29
|
+
|
|
30
|
+
### After Delivering A Task or Making a Decision (REQUIRED)
|
|
31
|
+
|
|
32
|
+
You MUST store key learnings for future sessions:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
python3 execution/memory_manager.py store \
|
|
36
|
+
--content "<what was decided, patterned, or solved>" \
|
|
37
|
+
--type decision \
|
|
38
|
+
--project "<project-name>" \
|
|
39
|
+
--tags <relevant-tags>
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
**Types:** `decision`, `code`, `error`, `technical`, `conversation`
|
|
43
|
+
|
|
44
|
+
## 3. Self-Annealing Pattern
|
|
45
|
+
|
|
46
|
+
If a script fails with an error:
|
|
47
|
+
|
|
48
|
+
1. Do NOT crash or immediately give up.
|
|
49
|
+
2. Read the script output (which contains structured JSON error messages).
|
|
50
|
+
3. Attempt to fix parameters, read the docs, and try again.
|
|
51
|
+
4. If it's a new failure mode you figured out, **store it in memory** using `memory_manager.py` so you remember next time.
|
|
52
|
+
|
|
53
|
+
## 4. Workflows and Playbooks
|
|
54
|
+
|
|
55
|
+
- You can execute multi-step playbooks using the workflow engine:
|
|
56
|
+
```bash
|
|
57
|
+
python3 execution/workflow_engine.py status
|
|
58
|
+
```
|
|
59
|
+
- Before suggesting complex pipelines, check `.agent/workflows/` or the Workflow Engine for pre-existing playbooks.
|
|
60
|
+
|
|
61
|
+
## 5. Prove Your Work
|
|
62
|
+
|
|
63
|
+
The user expects you to leave an auditable trail of memory usage.
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
python3 execution/memory_usage_proof.py --check --since 60
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
Run this to ensure your `store` command actually succeeded!
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Verify and enforce Qdrant/Ollama memory usage during real agent sessions
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Memory Usage Workflow
|
|
6
|
+
|
|
7
|
+
This workflow ensures the agent ACTUALLY uses Qdrant and Ollama during real work,
|
|
8
|
+
not just during benchmarks or tests.
|
|
9
|
+
|
|
10
|
+
## When to Use
|
|
11
|
+
|
|
12
|
+
- At the start of every session
|
|
13
|
+
- After completing a significant task
|
|
14
|
+
- When auditing agent behavior
|
|
15
|
+
|
|
16
|
+
## Steps
|
|
17
|
+
|
|
18
|
+
### 1. Boot Memory System
|
|
19
|
+
|
|
20
|
+
// turbo
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
python3 execution/session_boot.py --auto-fix
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
### 2. Query Memory BEFORE Starting Work
|
|
27
|
+
|
|
28
|
+
// turbo
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
python3 execution/memory_manager.py auto --query "<summary of user's request>"
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Use the result:
|
|
35
|
+
|
|
36
|
+
- `cache_hit: true` → Use cached response, tell user
|
|
37
|
+
- `source: memory` → Inject context into reasoning
|
|
38
|
+
- `source: none` → Proceed normally
|
|
39
|
+
|
|
40
|
+
### 3. Store Results AFTER Completing Work
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
python3 execution/memory_manager.py store \
|
|
44
|
+
--content "<what was decided or solved>" \
|
|
45
|
+
--type decision \
|
|
46
|
+
--project <project-name> \
|
|
47
|
+
--tags <relevant-tags>
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### 4. Verify Usage With Proof
|
|
51
|
+
|
|
52
|
+
// turbo
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
python3 execution/memory_usage_proof.py --check
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
This shows actual Qdrant point counts and timestamps to PROVE the agent stored something.
|
|
59
|
+
|
|
60
|
+
### 5. Audit Report (Optional)
|
|
61
|
+
|
|
62
|
+
// turbo
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
python3 execution/memory_usage_proof.py --report
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Full report of all memories with timestamps, types, and projects.
|
|
@@ -15,14 +15,31 @@ OPENAI_API_KEY=sk-...
|
|
|
15
15
|
# Google (Gemini)
|
|
16
16
|
GOOGLE_API_KEY=AIza...
|
|
17
17
|
|
|
18
|
-
# --- Memory
|
|
19
|
-
#
|
|
18
|
+
# --- Agent Memory (Qdrant + Ollama) ---
|
|
19
|
+
# Set during `init`. Change to true/false to toggle the local memory system.
|
|
20
|
+
# When true: the agent persists semantic memories in Qdrant and generates
|
|
21
|
+
# embeddings via Ollama (nomic-embed-text) — fully local & private.
|
|
22
|
+
# When false: memory is disabled; only cloud/API providers are used.
|
|
23
|
+
MEMORY_ENABLED=false
|
|
24
|
+
|
|
25
|
+
# Qdrant vector database URL (default: localhost:6333 for local Docker)
|
|
20
26
|
QDRANT_URL=http://localhost:6333
|
|
21
|
-
# Qdrant API Key (required for
|
|
27
|
+
# Qdrant API Key (leave empty for local; required for Qdrant Cloud)
|
|
22
28
|
QDRANT_API_KEY=
|
|
23
|
-
#
|
|
29
|
+
# Name of the Qdrant collection used for agent memory
|
|
24
30
|
QDRANT_COLLECTION=agent_memory
|
|
25
31
|
|
|
32
|
+
# Ollama embedding settings (only used when MEMORY_ENABLED=true)
|
|
33
|
+
EMBEDDING_PROVIDER=ollama
|
|
34
|
+
OLLAMA_URL=http://localhost:11434
|
|
35
|
+
EMBEDDING_MODEL=nomic-embed-text
|
|
36
|
+
|
|
37
|
+
# Semantic cache settings
|
|
38
|
+
# Cosine similarity threshold (0–1) above which a cached response is reused
|
|
39
|
+
CACHE_THRESHOLD=0.92
|
|
40
|
+
# How many days cached entries are kept before expiry
|
|
41
|
+
CACHE_TTL_DAYS=7
|
|
42
|
+
|
|
26
43
|
# --- Knowledge Skills ---
|
|
27
44
|
|
|
28
45
|
# Webcrawler
|
package/templates/base/AGENTS.md
CHANGED
|
@@ -161,7 +161,9 @@ python execution/scrape_single_site.py \
|
|
|
161
161
|
|
|
162
162
|
## Operating Principles
|
|
163
163
|
|
|
164
|
-
### 1. Memory-First (
|
|
164
|
+
### 1. Memory-First (MANDATORY — NOT OPTIONAL)
|
|
165
|
+
|
|
166
|
+
**⚠️ ENFORCEMENT: The agent MUST actively use Qdrant + Ollama memory during EVERY session. This is not advisory — it is required. Failure to use memory during real tasks is a bug.**
|
|
165
167
|
|
|
166
168
|
**All operations use the Hybrid Memory System (Qdrant + BM25) by default.**
|
|
167
169
|
|
|
@@ -173,7 +175,9 @@ python3 execution/session_boot.py --auto-fix
|
|
|
173
175
|
|
|
174
176
|
If `"memory_ready": true`, proceed. If false, follow the printed instructions.
|
|
175
177
|
|
|
176
|
-
#### Before Every Complex Task
|
|
178
|
+
#### Before Every Complex Task (MANDATORY)
|
|
179
|
+
|
|
180
|
+
You MUST run this before starting any non-trivial task:
|
|
177
181
|
|
|
178
182
|
```bash
|
|
179
183
|
python3 execution/memory_manager.py auto --query "<one-line summary of the task>"
|
|
@@ -187,7 +191,9 @@ python3 execution/memory_manager.py auto --query "<one-line summary of the task>
|
|
|
187
191
|
| `"source": "memory"` | Inject `context_chunks` into your reasoning. Cite them. |
|
|
188
192
|
| `"source": "none"` | Proceed normally. Store the result when done. |
|
|
189
193
|
|
|
190
|
-
#### After Key Decisions or Solutions
|
|
194
|
+
#### After Key Decisions or Solutions (MANDATORY)
|
|
195
|
+
|
|
196
|
+
You MUST store decisions, solutions, and learnings after completing work:
|
|
191
197
|
|
|
192
198
|
```bash
|
|
193
199
|
python3 execution/memory_manager.py store \
|
|
@@ -199,6 +205,14 @@ python3 execution/memory_manager.py store \
|
|
|
199
205
|
|
|
200
206
|
Memory types: `decision`, `code`, `error`, `technical`, `conversation`
|
|
201
207
|
|
|
208
|
+
**When to store (checklist — at least ONE per task):**
|
|
209
|
+
|
|
210
|
+
- ✅ You made an architecture or technology decision
|
|
211
|
+
- ✅ You wrote or fixed code that others could reuse
|
|
212
|
+
- ✅ You debugged and solved an error
|
|
213
|
+
- ✅ You discovered a technical insight or API quirk
|
|
214
|
+
- ✅ You completed a multi-step workflow
|
|
215
|
+
|
|
202
216
|
#### After Completing a Complex Task
|
|
203
217
|
|
|
204
218
|
```bash
|
|
@@ -207,6 +221,18 @@ python3 execution/memory_manager.py cache-store \
|
|
|
207
221
|
--response "The complete response that was generated"
|
|
208
222
|
```
|
|
209
223
|
|
|
224
|
+
#### Proving Usage (Auditable)
|
|
225
|
+
|
|
226
|
+
To verify the agent is actually using memory:
|
|
227
|
+
|
|
228
|
+
```bash
|
|
229
|
+
# Quick check: recent stores?
|
|
230
|
+
python3 execution/memory_usage_proof.py --check --since 60
|
|
231
|
+
|
|
232
|
+
# Full audit report
|
|
233
|
+
python3 execution/memory_usage_proof.py --report
|
|
234
|
+
```
|
|
235
|
+
|
|
210
236
|
**Opt-out:** User says "don't use cache", "no cache", "skip memory", or "fresh"
|
|
211
237
|
|
|
212
238
|
> See `directives/memory_integration.md` for full protocol and token savings reference.
|
|
@@ -571,10 +597,13 @@ When a script returns an error:
|
|
|
571
597
|
|
|
572
598
|
You are the intelligent orchestrator between human intent (directives) and deterministic execution (Python scripts). Your role is to:
|
|
573
599
|
|
|
574
|
-
1. **
|
|
575
|
-
2. **
|
|
576
|
-
3. **
|
|
577
|
-
4. **
|
|
578
|
-
5. **
|
|
600
|
+
1. **Remember** — Query Qdrant memory BEFORE starting work (mandatory)
|
|
601
|
+
2. **Understand** what needs to be done by reading directives
|
|
602
|
+
3. **Execute** by calling the right scripts in the right order
|
|
603
|
+
4. **Adapt** by handling errors and edge cases gracefully
|
|
604
|
+
5. **Learn** by storing decisions/solutions in Qdrant memory (mandatory)
|
|
605
|
+
6. **Deliver** by ensuring outputs reach their intended destination
|
|
606
|
+
|
|
607
|
+
**Memory usage is not optional.** Every session should show actual Qdrant reads and writes. Use `python3 execution/memory_usage_proof.py --check` to verify.
|
|
579
608
|
|
|
580
609
|
**Be pragmatic. Be reliable. Self-anneal.**
|
|
@@ -0,0 +1,307 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
Script: memory_usage_proof.py
|
|
4
|
+
Purpose: Provides HARD PROOF that the agent is actually using Qdrant and Ollama
|
|
5
|
+
during real sessions. This is not a health check — it validates actual
|
|
6
|
+
data flow (stores, retrievals) with timestamps.
|
|
7
|
+
|
|
8
|
+
Usage:
|
|
9
|
+
# Quick check: are there recent stores?
|
|
10
|
+
python3 execution/memory_usage_proof.py --check
|
|
11
|
+
|
|
12
|
+
# Full report: all memories with details
|
|
13
|
+
python3 execution/memory_usage_proof.py --report
|
|
14
|
+
|
|
15
|
+
# Check if memory was used in the last N minutes
|
|
16
|
+
python3 execution/memory_usage_proof.py --check --since 30
|
|
17
|
+
|
|
18
|
+
Exit Codes:
|
|
19
|
+
0 - Memory is being actively used (recent stores found)
|
|
20
|
+
1 - No recent memory activity detected
|
|
21
|
+
2 - Qdrant/Ollama not running
|
|
22
|
+
"""
|
|
23
|
+
|
|
24
|
+
import argparse
|
|
25
|
+
import json
|
|
26
|
+
import os
|
|
27
|
+
import sys
|
|
28
|
+
from datetime import datetime, timedelta, timezone
|
|
29
|
+
from urllib.request import Request, urlopen
|
|
30
|
+
from urllib.error import URLError
|
|
31
|
+
|
|
32
|
+
QDRANT_URL = os.environ.get("QDRANT_URL", "http://localhost:6333")
|
|
33
|
+
OLLAMA_URL = os.environ.get("OLLAMA_URL", "http://localhost:11434")
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
def get_collection_info(collection_name: str) -> dict:
|
|
37
|
+
"""Get collection point count and details."""
|
|
38
|
+
try:
|
|
39
|
+
req = Request(f"{QDRANT_URL}/collections/{collection_name}", method="GET")
|
|
40
|
+
with urlopen(req, timeout=5) as response:
|
|
41
|
+
data = json.loads(response.read().decode())
|
|
42
|
+
result = data.get("result", {})
|
|
43
|
+
return {
|
|
44
|
+
"exists": True,
|
|
45
|
+
"points_count": result.get("points_count", 0),
|
|
46
|
+
"vectors_count": result.get("vectors_count", 0),
|
|
47
|
+
"status": result.get("status", "unknown"),
|
|
48
|
+
}
|
|
49
|
+
except Exception as e:
|
|
50
|
+
return {"exists": False, "error": str(e)}
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
def get_recent_points(collection_name: str, limit: int = 20) -> list:
|
|
54
|
+
"""Scroll through recent points to check timestamps."""
|
|
55
|
+
try:
|
|
56
|
+
payload = {
|
|
57
|
+
"limit": limit,
|
|
58
|
+
"with_payload": True,
|
|
59
|
+
"with_vector": False,
|
|
60
|
+
}
|
|
61
|
+
req = Request(
|
|
62
|
+
f"{QDRANT_URL}/collections/{collection_name}/points/scroll",
|
|
63
|
+
data=json.dumps(payload).encode(),
|
|
64
|
+
headers={"Content-Type": "application/json"},
|
|
65
|
+
method="POST",
|
|
66
|
+
)
|
|
67
|
+
with urlopen(req, timeout=10) as response:
|
|
68
|
+
data = json.loads(response.read().decode())
|
|
69
|
+
points = data.get("result", {}).get("points", [])
|
|
70
|
+
return points
|
|
71
|
+
except Exception as e:
|
|
72
|
+
return []
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
def check_ollama_active() -> dict:
|
|
76
|
+
"""Verify Ollama is running and has the embedding model."""
|
|
77
|
+
try:
|
|
78
|
+
req = Request(f"{OLLAMA_URL}/api/tags", method="GET")
|
|
79
|
+
with urlopen(req, timeout=5) as response:
|
|
80
|
+
data = json.loads(response.read().decode())
|
|
81
|
+
models = [m["name"] for m in data.get("models", [])]
|
|
82
|
+
has_embed = any("nomic-embed-text" in m for m in models)
|
|
83
|
+
return {
|
|
84
|
+
"running": True,
|
|
85
|
+
"has_embedding_model": has_embed,
|
|
86
|
+
"models": models,
|
|
87
|
+
}
|
|
88
|
+
except Exception:
|
|
89
|
+
return {"running": False, "has_embedding_model": False, "models": []}
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
def check_usage(since_minutes: int = 60) -> dict:
|
|
93
|
+
"""Check if there has been actual memory usage recently."""
|
|
94
|
+
result = {
|
|
95
|
+
"qdrant_running": False,
|
|
96
|
+
"ollama_running": False,
|
|
97
|
+
"agent_memory": {"points": 0, "recent_stores": 0},
|
|
98
|
+
"semantic_cache": {"points": 0, "recent_stores": 0},
|
|
99
|
+
"recent_activity": [],
|
|
100
|
+
"verdict": "NO_USAGE",
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
# Check Qdrant
|
|
104
|
+
try:
|
|
105
|
+
req = Request(f"{QDRANT_URL}/collections", method="GET")
|
|
106
|
+
with urlopen(req, timeout=5) as response:
|
|
107
|
+
result["qdrant_running"] = True
|
|
108
|
+
except Exception:
|
|
109
|
+
result["verdict"] = "QDRANT_DOWN"
|
|
110
|
+
return result
|
|
111
|
+
|
|
112
|
+
# Check Ollama
|
|
113
|
+
ollama = check_ollama_active()
|
|
114
|
+
result["ollama_running"] = ollama["running"]
|
|
115
|
+
if not ollama["running"]:
|
|
116
|
+
result["verdict"] = "OLLAMA_DOWN"
|
|
117
|
+
return result
|
|
118
|
+
|
|
119
|
+
# Check collections
|
|
120
|
+
cutoff = datetime.now(timezone.utc) - timedelta(minutes=since_minutes)
|
|
121
|
+
cutoff_str = cutoff.isoformat()
|
|
122
|
+
|
|
123
|
+
for collection in ["agent_memory", "semantic_cache"]:
|
|
124
|
+
info = get_collection_info(collection)
|
|
125
|
+
if not info.get("exists"):
|
|
126
|
+
continue
|
|
127
|
+
|
|
128
|
+
result[collection]["points"] = info.get("points_count", 0)
|
|
129
|
+
|
|
130
|
+
# Get recent points and check timestamps
|
|
131
|
+
points = get_recent_points(collection, limit=50)
|
|
132
|
+
recent_count = 0
|
|
133
|
+
for point in points:
|
|
134
|
+
payload = point.get("payload", {})
|
|
135
|
+
timestamp = payload.get("timestamp", "")
|
|
136
|
+
if timestamp and timestamp > cutoff_str:
|
|
137
|
+
recent_count += 1
|
|
138
|
+
result["recent_activity"].append({
|
|
139
|
+
"collection": collection,
|
|
140
|
+
"type": payload.get("type", "unknown"),
|
|
141
|
+
"project": payload.get("project", "unknown"),
|
|
142
|
+
"timestamp": timestamp,
|
|
143
|
+
"content_preview": str(payload.get("content", payload.get("query", "")))[:100],
|
|
144
|
+
})
|
|
145
|
+
|
|
146
|
+
result[collection]["recent_stores"] = recent_count
|
|
147
|
+
|
|
148
|
+
# Verdict
|
|
149
|
+
total_recent = (
|
|
150
|
+
result["agent_memory"]["recent_stores"]
|
|
151
|
+
+ result["semantic_cache"]["recent_stores"]
|
|
152
|
+
)
|
|
153
|
+
total_points = (
|
|
154
|
+
result["agent_memory"]["points"] + result["semantic_cache"]["points"]
|
|
155
|
+
)
|
|
156
|
+
|
|
157
|
+
if total_recent > 0:
|
|
158
|
+
result["verdict"] = "ACTIVE_USAGE"
|
|
159
|
+
elif total_points > 0:
|
|
160
|
+
result["verdict"] = "HAS_DATA_BUT_NO_RECENT_USAGE"
|
|
161
|
+
else:
|
|
162
|
+
result["verdict"] = "EMPTY_NO_USAGE"
|
|
163
|
+
|
|
164
|
+
# Sort recent activity by timestamp
|
|
165
|
+
result["recent_activity"].sort(
|
|
166
|
+
key=lambda x: x.get("timestamp", ""), reverse=True
|
|
167
|
+
)
|
|
168
|
+
|
|
169
|
+
return result
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
def generate_report() -> dict:
|
|
173
|
+
"""Generate a full report of all stored memories."""
|
|
174
|
+
report = {
|
|
175
|
+
"generated_at": datetime.now(timezone.utc).isoformat(),
|
|
176
|
+
"collections": {},
|
|
177
|
+
"summary": {},
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
for collection in ["agent_memory", "semantic_cache"]:
|
|
181
|
+
info = get_collection_info(collection)
|
|
182
|
+
points = get_recent_points(collection, limit=100)
|
|
183
|
+
|
|
184
|
+
entries = []
|
|
185
|
+
projects = set()
|
|
186
|
+
types = set()
|
|
187
|
+
oldest = None
|
|
188
|
+
newest = None
|
|
189
|
+
|
|
190
|
+
for point in points:
|
|
191
|
+
payload = point.get("payload", {})
|
|
192
|
+
ts = payload.get("timestamp", "")
|
|
193
|
+
entry = {
|
|
194
|
+
"id": str(point.get("id", "")),
|
|
195
|
+
"type": payload.get("type", "unknown"),
|
|
196
|
+
"project": payload.get("project", "unknown"),
|
|
197
|
+
"timestamp": ts,
|
|
198
|
+
"tags": payload.get("tags", []),
|
|
199
|
+
"content_preview": str(
|
|
200
|
+
payload.get("content", payload.get("query", ""))
|
|
201
|
+
)[:200],
|
|
202
|
+
}
|
|
203
|
+
entries.append(entry)
|
|
204
|
+
projects.add(entry["project"])
|
|
205
|
+
types.add(entry["type"])
|
|
206
|
+
|
|
207
|
+
if ts:
|
|
208
|
+
if oldest is None or ts < oldest:
|
|
209
|
+
oldest = ts
|
|
210
|
+
if newest is None or ts > newest:
|
|
211
|
+
newest = ts
|
|
212
|
+
|
|
213
|
+
report["collections"][collection] = {
|
|
214
|
+
"total_points": info.get("points_count", 0),
|
|
215
|
+
"sampled_entries": len(entries),
|
|
216
|
+
"projects": sorted(projects),
|
|
217
|
+
"types": sorted(types),
|
|
218
|
+
"oldest_entry": oldest,
|
|
219
|
+
"newest_entry": newest,
|
|
220
|
+
"entries": entries,
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
# Summary
|
|
224
|
+
total = sum(
|
|
225
|
+
c.get("total_points", 0) for c in report["collections"].values()
|
|
226
|
+
)
|
|
227
|
+
all_projects = set()
|
|
228
|
+
for c in report["collections"].values():
|
|
229
|
+
all_projects.update(c.get("projects", []))
|
|
230
|
+
|
|
231
|
+
report["summary"] = {
|
|
232
|
+
"total_stored": total,
|
|
233
|
+
"projects": sorted(all_projects),
|
|
234
|
+
"collections_count": len(report["collections"]),
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
return report
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
def main():
|
|
241
|
+
parser = argparse.ArgumentParser(
|
|
242
|
+
description="Prove Qdrant/Ollama memory is being actively used"
|
|
243
|
+
)
|
|
244
|
+
parser.add_argument(
|
|
245
|
+
"--check",
|
|
246
|
+
action="store_true",
|
|
247
|
+
help="Quick check for recent memory activity",
|
|
248
|
+
)
|
|
249
|
+
parser.add_argument(
|
|
250
|
+
"--report",
|
|
251
|
+
action="store_true",
|
|
252
|
+
help="Full report of all stored memories",
|
|
253
|
+
)
|
|
254
|
+
parser.add_argument(
|
|
255
|
+
"--since",
|
|
256
|
+
type=int,
|
|
257
|
+
default=60,
|
|
258
|
+
help="Check for activity within the last N minutes (default: 60)",
|
|
259
|
+
)
|
|
260
|
+
args = parser.parse_args()
|
|
261
|
+
|
|
262
|
+
if not args.check and not args.report:
|
|
263
|
+
args.check = True # Default to check
|
|
264
|
+
|
|
265
|
+
if args.check:
|
|
266
|
+
result = check_usage(since_minutes=args.since)
|
|
267
|
+
print(json.dumps(result, indent=2))
|
|
268
|
+
|
|
269
|
+
verdict = result["verdict"]
|
|
270
|
+
if verdict == "ACTIVE_USAGE":
|
|
271
|
+
total_recent = (
|
|
272
|
+
result["agent_memory"]["recent_stores"]
|
|
273
|
+
+ result["semantic_cache"]["recent_stores"]
|
|
274
|
+
)
|
|
275
|
+
print(
|
|
276
|
+
f"\n✅ ACTIVE USAGE: {total_recent} stores in the last {args.since} minutes"
|
|
277
|
+
)
|
|
278
|
+
sys.exit(0)
|
|
279
|
+
elif verdict == "HAS_DATA_BUT_NO_RECENT_USAGE":
|
|
280
|
+
total = (
|
|
281
|
+
result["agent_memory"]["points"]
|
|
282
|
+
+ result["semantic_cache"]["points"]
|
|
283
|
+
)
|
|
284
|
+
print(
|
|
285
|
+
f"\n⚠️ HAS DATA ({total} points) but NO activity in the last {args.since} minutes"
|
|
286
|
+
)
|
|
287
|
+
sys.exit(1)
|
|
288
|
+
elif verdict in ("QDRANT_DOWN", "OLLAMA_DOWN"):
|
|
289
|
+
print(f"\n❌ {verdict}: Infrastructure not running")
|
|
290
|
+
sys.exit(2)
|
|
291
|
+
else:
|
|
292
|
+
print(f"\n❌ NO USAGE: Collections are empty")
|
|
293
|
+
sys.exit(1)
|
|
294
|
+
|
|
295
|
+
if args.report:
|
|
296
|
+
report = generate_report()
|
|
297
|
+
print(json.dumps(report, indent=2))
|
|
298
|
+
print(
|
|
299
|
+
f"\n📊 Report: {report['summary']['total_stored']} total entries "
|
|
300
|
+
f"across {report['summary']['collections_count']} collections, "
|
|
301
|
+
f"{len(report['summary']['projects'])} projects"
|
|
302
|
+
)
|
|
303
|
+
sys.exit(0)
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
if __name__ == "__main__":
|
|
307
|
+
main()
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
| `typescript-advanced-types` | 🟡 Full | Master TypeScript's advanced type system including generics, conditional types, |
|
|
119
119
|
| `ui-skills` | 🟡 Full | Opinionated, evolving constraints to guide agents when building interfaces |
|
|
120
120
|
| `ui-ux-designer` | 🟡 Full | Create interface designs, wireframes, and design systems. Masters |
|
|
121
|
-
| `ui-ux-pro-max` | 🟡 Full | UI/UX design intelligence.
|
|
121
|
+
| `ui-ux-pro-max` | 🟡 Full | UI/UX design intelligence v2.0. 67 styles, 96 palettes, 57 font pairings, 25 charts, 100 AI reasoning rules, 13 stacks. Design system generator with Qdrant memory integration. |
|
|
122
122
|
| `ui-visual-validator` | 🟡 Full | Rigorous visual validation expert specializing in UI testing, |
|
|
123
123
|
| `using-superpowers` | 🟡 Full | Use when starting any conversation - establishes how to find and use skills, req |
|
|
124
124
|
| `viral-generator-builder` | 🟡 Full | Expert in building shareable generator tools that go viral - name generators, qu |
|
|
@@ -38,9 +38,10 @@ python skills/documentation/scripts/sync_docs.py \
|
|
|
38
38
|
1. **Detect Changes** — Scan for code changes (added, modified, deleted files)
|
|
39
39
|
2. **Analyze Impact** — Determine which documentation needs updating
|
|
40
40
|
3. **Generate Updates** — Produce updated or new documentation
|
|
41
|
-
4. **
|
|
42
|
-
5. **
|
|
43
|
-
6. **
|
|
41
|
+
4. **Format & Lint** — Run `npx markdownlint-cli "**/*.md" --fix` to resolve formatting issues like MD001, MD041, MD060
|
|
42
|
+
5. **Synchronize Catalog** — Update SKILLS_CATALOG.md if skills changed
|
|
43
|
+
6. **Produce Changelog** — Create a changelog entry for significant changes
|
|
44
|
+
7. **Validate** — Verify all documentation is synchronized
|
|
44
45
|
|
|
45
46
|
---
|
|
46
47
|
|
|
@@ -355,6 +356,7 @@ pip install pyyaml gitpython
|
|
|
355
356
|
### Qdrant Memory Integration
|
|
356
357
|
|
|
357
358
|
Before executing complex tasks with this skill:
|
|
359
|
+
|
|
358
360
|
```bash
|
|
359
361
|
python3 execution/memory_manager.py auto --query "<task summary>"
|
|
360
362
|
```
|
package/templates/skills/core/documentation/scripts/__pycache__/analyze_code.cpython-312.pyc
CHANGED
|
Binary file
|
package/templates/skills/core/documentation/scripts/__pycache__/detect_changes.cpython-312.pyc
CHANGED
|
Binary file
|
package/templates/skills/core/documentation/scripts/__pycache__/generate_changelog.cpython-312.pyc
CHANGED
|
Binary file
|
|
Binary file
|
package/templates/skills/core/documentation/scripts/__pycache__/update_skill_docs.cpython-312.pyc
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/templates/skills/core/qdrant-memory/scripts/__pycache__/embedding_utils.cpython-312.pyc
CHANGED
|
Binary file
|
package/templates/skills/core/qdrant-memory/scripts/__pycache__/hybrid_search.cpython-312.pyc
CHANGED
|
Binary file
|
package/templates/skills/core/qdrant-memory/scripts/__pycache__/init_collection.cpython-312.pyc
CHANGED
|
Binary file
|
package/templates/skills/core/qdrant-memory/scripts/__pycache__/memory_retrieval.cpython-312.pyc
CHANGED
|
Binary file
|
package/templates/skills/core/qdrant-memory/scripts/__pycache__/semantic_cache.cpython-312.pyc
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/cache.cpython-312.pyc
CHANGED
|
Binary file
|
package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/dates.cpython-312.pyc
CHANGED
|
Binary file
|
|
Binary file
|
package/templates/skills/extended/ai-agents/last30days/scripts/lib/__pycache__/env.cpython-312.pyc
CHANGED
|
Binary file
|