moai-adk 0.8.1__py3-none-any.whl → 0.8.2__py3-none-any.whl

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.

Potentially problematic release.


This version of moai-adk might be problematic. Click here for more details.

Files changed (87) hide show
  1. moai_adk/cli/commands/update.py +15 -4
  2. moai_adk/core/tags/__init__.py +87 -0
  3. moai_adk/core/tags/ci_validator.py +435 -0
  4. moai_adk/core/tags/cli.py +283 -0
  5. moai_adk/core/tags/generator.py +109 -0
  6. moai_adk/core/tags/inserter.py +99 -0
  7. moai_adk/core/tags/mapper.py +126 -0
  8. moai_adk/core/tags/parser.py +76 -0
  9. moai_adk/core/tags/pre_commit_validator.py +355 -0
  10. moai_adk/core/tags/reporter.py +959 -0
  11. moai_adk/core/tags/tags.py +149 -0
  12. moai_adk/core/tags/validator.py +897 -0
  13. moai_adk/templates/.claude/agents/alfred/cc-manager.md +25 -2
  14. moai_adk/templates/.claude/agents/alfred/debug-helper.md +24 -12
  15. moai_adk/templates/.claude/agents/alfred/doc-syncer.md +19 -12
  16. moai_adk/templates/.claude/agents/alfred/git-manager.md +20 -12
  17. moai_adk/templates/.claude/agents/alfred/implementation-planner.md +19 -12
  18. moai_adk/templates/.claude/agents/alfred/project-manager.md +29 -2
  19. moai_adk/templates/.claude/agents/alfred/quality-gate.md +25 -2
  20. moai_adk/templates/.claude/agents/alfred/skill-factory.md +30 -2
  21. moai_adk/templates/.claude/agents/alfred/spec-builder.md +26 -11
  22. moai_adk/templates/.claude/agents/alfred/tag-agent.md +30 -8
  23. moai_adk/templates/.claude/agents/alfred/tdd-implementer.md +27 -12
  24. moai_adk/templates/.claude/agents/alfred/trust-checker.md +25 -2
  25. moai_adk/templates/.claude/commands/alfred/0-project.md +5 -0
  26. moai_adk/templates/.claude/commands/alfred/1-plan.md +17 -4
  27. moai_adk/templates/.claude/commands/alfred/2-run.md +7 -0
  28. moai_adk/templates/.claude/commands/alfred/3-sync.md +6 -0
  29. moai_adk/templates/.claude/hooks/alfred/.moai/cache/version-check.json +9 -0
  30. moai_adk/templates/.claude/hooks/alfred/README.md +258 -145
  31. moai_adk/templates/.claude/hooks/alfred/TROUBLESHOOTING.md +471 -0
  32. moai_adk/templates/.claude/hooks/alfred/alfred_hooks.py +92 -57
  33. moai_adk/templates/.claude/hooks/alfred/core/version_cache.py +198 -0
  34. moai_adk/templates/.claude/hooks/alfred/notification__handle_events.py +102 -0
  35. moai_adk/templates/.claude/hooks/alfred/post_tool__log_changes.py +102 -0
  36. moai_adk/templates/.claude/hooks/alfred/pre_tool__auto_checkpoint.py +108 -0
  37. moai_adk/templates/.claude/hooks/alfred/session_end__cleanup.py +102 -0
  38. moai_adk/templates/.claude/hooks/alfred/session_start__show_project_info.py +102 -0
  39. moai_adk/templates/.claude/hooks/alfred/{core → shared/core}/project.py +269 -13
  40. moai_adk/templates/.claude/hooks/alfred/shared/core/version_cache.py +198 -0
  41. moai_adk/templates/.claude/hooks/alfred/{handlers → shared/handlers}/session.py +21 -7
  42. moai_adk/templates/.claude/hooks/alfred/stop__handle_interrupt.py +102 -0
  43. moai_adk/templates/.claude/hooks/alfred/subagent_stop__handle_subagent_end.py +102 -0
  44. moai_adk/templates/.claude/hooks/alfred/user_prompt__jit_load_docs.py +120 -0
  45. moai_adk/templates/.claude/settings.json +5 -5
  46. moai_adk/templates/.claude/skills/moai-foundation-ears/SKILL.md +9 -6
  47. moai_adk/templates/.claude/skills/moai-spec-authoring/README.md +56 -56
  48. moai_adk/templates/.claude/skills/moai-spec-authoring/SKILL.md +101 -100
  49. moai_adk/templates/.claude/skills/moai-spec-authoring/examples/validate-spec.sh +3 -3
  50. moai_adk/templates/.claude/skills/moai-spec-authoring/examples.md +219 -219
  51. moai_adk/templates/.claude/skills/moai-spec-authoring/reference.md +287 -287
  52. moai_adk/templates/.github/ISSUE_TEMPLATE/spec.yml +9 -11
  53. moai_adk/templates/.github/PULL_REQUEST_TEMPLATE.md +9 -21
  54. moai_adk/templates/.github/workflows/moai-release-create.yml +100 -0
  55. moai_adk/templates/.github/workflows/moai-release-pipeline.yml +182 -0
  56. moai_adk/templates/.github/workflows/release.yml +49 -0
  57. moai_adk/templates/.github/workflows/tag-report.yml +261 -0
  58. moai_adk/templates/.github/workflows/tag-validation.yml +176 -0
  59. moai_adk/templates/.moai/config.json +6 -1
  60. moai_adk/templates/.moai/hooks/install.sh +79 -0
  61. moai_adk/templates/.moai/hooks/pre-commit.sh +66 -0
  62. moai_adk/templates/CLAUDE.md +39 -40
  63. moai_adk/templates/src/moai_adk/core/__init__.py +5 -0
  64. moai_adk/templates/src/moai_adk/core/tags/__init__.py +87 -0
  65. moai_adk/templates/src/moai_adk/core/tags/ci_validator.py +435 -0
  66. moai_adk/templates/src/moai_adk/core/tags/cli.py +283 -0
  67. moai_adk/templates/src/moai_adk/core/tags/pre_commit_validator.py +355 -0
  68. moai_adk/templates/src/moai_adk/core/tags/reporter.py +959 -0
  69. moai_adk/templates/src/moai_adk/core/tags/validator.py +897 -0
  70. {moai_adk-0.8.1.dist-info → moai_adk-0.8.2.dist-info}/METADATA +226 -1
  71. {moai_adk-0.8.1.dist-info → moai_adk-0.8.2.dist-info}/RECORD +83 -50
  72. moai_adk/templates/.claude/hooks/alfred/HOOK_SCHEMA_VALIDATION.md +0 -313
  73. moai_adk/templates/.moai/memory/config-schema.md +0 -444
  74. moai_adk/templates/.moai/memory/gitflow-protection-policy.md +0 -220
  75. moai_adk/templates/.moai/memory/spec-metadata.md +0 -356
  76. /moai_adk/templates/.claude/hooks/alfred/{core → shared/core}/__init__.py +0 -0
  77. /moai_adk/templates/.claude/hooks/alfred/{core → shared/core}/checkpoint.py +0 -0
  78. /moai_adk/templates/.claude/hooks/alfred/{core → shared/core}/context.py +0 -0
  79. /moai_adk/templates/.claude/hooks/alfred/{core → shared/core}/tags.py +0 -0
  80. /moai_adk/templates/.claude/hooks/alfred/{handlers → shared/handlers}/__init__.py +0 -0
  81. /moai_adk/templates/.claude/hooks/alfred/{handlers → shared/handlers}/notification.py +0 -0
  82. /moai_adk/templates/.claude/hooks/alfred/{handlers → shared/handlers}/tool.py +0 -0
  83. /moai_adk/templates/.claude/hooks/alfred/{handlers → shared/handlers}/user.py +0 -0
  84. /moai_adk/templates/.moai/memory/{issue-label-mapping.md → ISSUE-LABEL-MAPPING.md} +0 -0
  85. {moai_adk-0.8.1.dist-info → moai_adk-0.8.2.dist-info}/WHEEL +0 -0
  86. {moai_adk-0.8.1.dist-info → moai_adk-0.8.2.dist-info}/entry_points.txt +0 -0
  87. {moai_adk-0.8.1.dist-info → moai_adk-0.8.2.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: moai-adk
3
- Version: 0.8.1
3
+ Version: 0.8.2
4
4
  Summary: MoAI Agentic Development Kit - SPEC-First TDD with Alfred SuperAgent & Complete Skills v2.0
5
5
  Project-URL: Homepage, https://github.com/modu-ai/moai-adk
6
6
  Project-URL: Repository, https://github.com/modu-ai/moai-adk
@@ -646,6 +646,231 @@ claude
646
646
 
647
647
  ---
648
648
 
649
+ ## Development Setup for Contributors
650
+
651
+ If you're developing **MoAI-ADK itself**, follow these steps to set up your development environment.
652
+
653
+ ### Prerequisites
654
+
655
+ - Python 3.13+
656
+ - `uv` package manager
657
+ - Git
658
+
659
+ ### Setup Steps
660
+
661
+ #### Step 1: Clone and Install in Editable Mode
662
+
663
+ ```bash
664
+ # Clone the repository
665
+ git clone https://github.com/modu-ai/moai-adk.git
666
+ cd moai-adk
667
+
668
+ # Install in editable mode (creates symlink, not a copy)
669
+ uv pip install -e .
670
+
671
+ # Or with pip (also works)
672
+ pip install -e .
673
+ ```
674
+
675
+ The editable install allows your local changes to be immediately reflected when using `moai-adk` command.
676
+
677
+ #### Step 2: Initialize Development Configuration
678
+
679
+ After the editable install, initialize the development repository's configuration:
680
+
681
+ ```bash
682
+ # Run the initialization script
683
+ bash .moai/scripts/init-dev-config.sh
684
+ ```
685
+
686
+ **What this script does:**
687
+ - Extracts the actual version from `pyproject.toml`
688
+ - Replaces template placeholders (`{{MOAI_VERSION}}`) with actual version values in `.moai/config.json`
689
+ - Sets up `project.template_version` field
690
+ - Ensures the `moai-adk update` command works correctly on first run
691
+
692
+ **Why is this necessary?**
693
+
694
+ When you install MoAI-ADK in editable mode, the `.moai/config.json` file contains unsubstituted template placeholders. This causes the first `moai-adk update` command to fail with version comparison errors. The init script resolves these placeholders so everything works seamlessly.
695
+
696
+ #### Step 3: Verify Setup
697
+
698
+ ```bash
699
+ # Check that moai-adk works
700
+ moai-adk --version
701
+
702
+ # Run the health check
703
+ moai-adk doctor
704
+
705
+ # Expected output:
706
+ # ✅ Python version: 3.13+
707
+ # ✅ UV installed
708
+ # ✅ Project structure: Valid
709
+ # ✅ Configuration: Ready
710
+ ```
711
+
712
+ #### Step 4: Run Tests
713
+
714
+ ```bash
715
+ # Run all tests with coverage
716
+ pytest tests/
717
+
718
+ # Run specific test module
719
+ pytest tests/unit/test_update.py -v
720
+
721
+ # Run with coverage report
722
+ pytest tests/ --cov=src/moai_adk --cov-report=html
723
+
724
+ # Check coverage thresholds
725
+ pytest tests/ --cov=src/moai_adk --cov-report=term-missing
726
+ ```
727
+
728
+ ### Common Development Workflow
729
+
730
+ #### After Making Code Changes
731
+
732
+ ```bash
733
+ # 1. Run tests to ensure nothing broke
734
+ pytest tests/ -v
735
+
736
+ # 2. Check code style
737
+ ruff check src/
738
+ ruff format src/
739
+
740
+ # 3. Type checking
741
+ mypy src/
742
+
743
+ # 4. If you modified update.py, test the update command
744
+ moai-adk update --check
745
+ ```
746
+
747
+ #### Testing the Update Command
748
+
749
+ The update command has been fixed to handle invalid version strings gracefully. To test it in development:
750
+
751
+ ```bash
752
+ # Test update without applying it
753
+ moai-adk update --check
754
+
755
+ # Test with force mode (skips backup)
756
+ moai-adk update --force
757
+
758
+ # Test with specific version
759
+ moai-adk update --templates-only
760
+ ```
761
+
762
+ ### Understanding the Init Script
763
+
764
+ The `.moai/scripts/init-dev-config.sh` script performs these operations:
765
+
766
+ 1. **Extracts Version**: Reads `pyproject.toml` to get the current version
767
+ 2. **Updates Config**: Modifies `.moai/config.json` to set:
768
+ - `moai.version` → actual version value
769
+ - `project.template_version` → actual version value
770
+ 3. **Validates**: Ensures the JSON structure is preserved correctly
771
+ 4. **Provides Feedback**: Shows what was updated and verifies the changes
772
+
773
+ ### Troubleshooting Development Setup
774
+
775
+ #### Problem: `moai-adk` command not found
776
+
777
+ ```bash
778
+ # Solution 1: Reinstall in editable mode
779
+ uv pip install -e .
780
+
781
+ # Solution 2: Verify uv environment
782
+ uv pip list | grep moai-adk
783
+
784
+ # Solution 3: Use full path
785
+ python -m moai_adk --version
786
+ ```
787
+
788
+ #### Problem: `.moai/config.json` still has placeholders after running init script
789
+
790
+ ```bash
791
+ # Manually check the config
792
+ cat .moai/config.json | grep -i moai_version
793
+
794
+ # If still showing {{MOAI_VERSION}}, rerun the script:
795
+ bash .moai/scripts/init-dev-config.sh
796
+
797
+ # Or manually update using Python:
798
+ python3 << 'EOF'
799
+ import json
800
+ from pathlib import Path
801
+
802
+ config_path = Path(".moai/config.json")
803
+ config = json.loads(config_path.read_text())
804
+
805
+ # Update manually
806
+ config['moai']['version'] = "0.8.1"
807
+ config['project']['template_version'] = "0.8.1"
808
+
809
+ config_path.write_text(json.dumps(config, indent=2) + '\n')
810
+ print("✅ Config updated manually")
811
+ EOF
812
+ ```
813
+
814
+ #### Problem: `moai-adk update` requires running twice
815
+
816
+ This issue has been **fixed** in v0.8.1+. If you're experiencing this:
817
+
818
+ 1. Ensure you've run the init script: `bash .moai/scripts/init-dev-config.sh`
819
+ 2. Update to the latest version: `pip install -e --upgrade .`
820
+ 3. Verify the config has actual versions: `cat .moai/config.json | grep version`
821
+
822
+ **What was the issue?**
823
+ - Development installations had unsubstituted `{{MOAI_VERSION}}` placeholders in config
824
+ - First `moai-adk update` would fail comparing "0.8.1" vs "{{MOAI_VERSION}}"
825
+ - Second run might partially work after partial sync
826
+
827
+ **How it's fixed:**
828
+ - `init-dev-config.sh` replaces placeholders with actual versions
829
+ - Code now gracefully handles InvalidVersion exceptions
830
+ - Added comprehensive unit tests for placeholder detection
831
+
832
+ ### Contributing Tests
833
+
834
+ When adding new features, always include tests:
835
+
836
+ ```bash
837
+ # Add tests to tests/unit/ or tests/integration/
838
+ # Follow existing test patterns in test_update.py
839
+
840
+ # Run your new tests
841
+ pytest tests/unit/test_*.py -v
842
+
843
+ # Ensure coverage remains ≥ 85%
844
+ pytest tests/ --cov=src/moai_adk --cov-report=term-missing
845
+ ```
846
+
847
+ ### Making a Pull Request
848
+
849
+ Before opening a PR, ensure:
850
+
851
+ ```bash
852
+ # 1. All tests pass
853
+ pytest tests/ -v
854
+
855
+ # 2. Coverage is adequate
856
+ pytest tests/ --cov=src/moai_adk --cov-report=term-missing
857
+
858
+ # 3. Code is formatted
859
+ ruff format src/
860
+ ruff check src/
861
+
862
+ # 4. Types are valid
863
+ mypy src/
864
+
865
+ # 5. Init script works
866
+ bash .moai/scripts/init-dev-config.sh
867
+
868
+ # 6. Update command works
869
+ moai-adk update --check
870
+ ```
871
+
872
+ ---
873
+
649
874
  ## Core Workflow (0 → 3)
650
875
 
651
876
  Alfred iteratively develops projects with four commands.
@@ -7,7 +7,7 @@ moai_adk/cli/commands/backup.py,sha256=jKdm9P55RIIdaBLhXYDQdbn2ThQDVDrc9_No48uHB
7
7
  moai_adk/cli/commands/doctor.py,sha256=keyU2PwwiUGuQViQVDlXKCqLmi6F1JDW3JEOOY64wgk,9831
8
8
  moai_adk/cli/commands/init.py,sha256=XidvHLZD-7_ZoHk-LcKmJaj78hhAjj7yB6LCBKHxx40,11459
9
9
  moai_adk/cli/commands/status.py,sha256=FQgzz7GYKk1W-w08xBg1A1bziSGsE0qvXhQJrPjow8o,3796
10
- moai_adk/cli/commands/update.py,sha256=iwDDD_ozCfkGUk1ci2CPfybzRtNFPMi-680NxmKhDc8,30177
10
+ moai_adk/cli/commands/update.py,sha256=yy6fZA2ySJS6Nsr6wBI63eEYAzGXBoRMhb1ZKEwi5IM,31027
11
11
  moai_adk/cli/prompts/__init__.py,sha256=a4_ctS4KEvGtmM9j7z8XIlMkpftohjVb9woUwZu38gE,136
12
12
  moai_adk/cli/prompts/init_prompts.py,sha256=OZ_T-b4XfkyXQsKXTwLcDYwmLbaf0k5oZfbi_asTH9M,5226
13
13
  moai_adk/core/__init__.py,sha256=1sJO-PHEKF1NmYjeOPPPzn_HRgYln3CKlCpUH4E2Jrs,129
@@ -35,6 +35,17 @@ moai_adk/core/quality/__init__.py,sha256=_uNsbThBLmVLWZCPmEgfFyQqJx3tdef9jhkP9Qo
35
35
  moai_adk/core/quality/trust_checker.py,sha256=CN067AiublAH46IBAKEV_I-8Wc0bNaR2dMnMf9n5oBg,15198
36
36
  moai_adk/core/quality/validators/__init__.py,sha256=Q53sqQFOK7GnwshPVi0HvUSq_VCvHEL28-V5J_L9LoE,189
37
37
  moai_adk/core/quality/validators/base_validator.py,sha256=8Fk5casPdfRtnlEfslIK6mOYsZeZLWIK_MAebWCrNw4,437
38
+ moai_adk/core/tags/__init__.py,sha256=BJ83UcG0lTQMN3wBy4dkmHWLLIkGITmJQYH0CEH3KJM,1986
39
+ moai_adk/core/tags/ci_validator.py,sha256=mZm78VgwLNIoGvw4xYkZLZAJib0LGQ8jZCoFOTkFOew,13754
40
+ moai_adk/core/tags/cli.py,sha256=IKukBQoyjPdB3asrXiuCJpaT8U1Gz26OBauNXKGAJTs,7344
41
+ moai_adk/core/tags/generator.py,sha256=xVopAAez8K5pNSHWZOGZXEWYIre53lTtfHUlR7i-vNE,3407
42
+ moai_adk/core/tags/inserter.py,sha256=_1lsMTyyrjGidAKqi4y925msHxK6gHLAsu3O8-O2vFM,2823
43
+ moai_adk/core/tags/mapper.py,sha256=ldcfMFzsk-ESKpXAptYydqx2NZ951utqKOXZVTHMeIE,3955
44
+ moai_adk/core/tags/parser.py,sha256=3LpNcL47xT3u4b3Fdf9wYnltChDrNAEV4EtnHqLN1MA,2098
45
+ moai_adk/core/tags/pre_commit_validator.py,sha256=1eA2RLFaFgRHKYKnHWfst_n3_TL8jJiLK53wb2_-dIA,10290
46
+ moai_adk/core/tags/reporter.py,sha256=8KNf5L3PEMcsq0CEJ08c4GQYzt5mYtzDHOsxRBlU1hA,29400
47
+ moai_adk/core/tags/tags.py,sha256=Fylt030vrDqhSWivwRbxxwu_uQhilei0SFk_xVzy9UI,4248
48
+ moai_adk/core/tags/validator.py,sha256=RH4NMX2TMtZ3IfGUHzlk-q0EzWWev5m9dYSehaXfxkE,31138
38
49
  moai_adk/core/template/__init__.py,sha256=BB65Zkar2Oywt1_RFtQKIup6HXq20VNQrYqXD_Qp1_g,354
39
50
  moai_adk/core/template/backup.py,sha256=44y3QGCKsYqrRPbzkB1xNM9qtpG6kNNMcWR8DnAcPiQ,3228
40
51
  moai_adk/core/template/config.py,sha256=ZJU9UKSGF2tkPiwSFReoCkAHGQ0aN2jKmIIQt88x5-o,3532
@@ -42,39 +53,50 @@ moai_adk/core/template/languages.py,sha256=V0wLcxCIOve9Q_0_NhrHGQevSIN_MB612GwrO
42
53
  moai_adk/core/template/merger.py,sha256=ZV8_U1HZJ3bfAtgyNmSxgj8KdTMt4eUnUG6kVVRT7bE,6909
43
54
  moai_adk/core/template/processor.py,sha256=_nYHiuN9PGzC3iE4X5SpRMFW-OTkI2u1dOAjD98axAk,19190
44
55
  moai_adk/templates/.gitignore,sha256=6VNKResdDpyaii3cmJA4pOLwK2PhYARIWkUODYtKyxg,310
45
- moai_adk/templates/CLAUDE.md,sha256=SIuw1GLq5w6Mh1ejhnKQ8IlnJKjUs5FmSG8EkL4-N6w,13839
56
+ moai_adk/templates/CLAUDE.md,sha256=dgVsp_srZJKnn04uegJ-9PxifVDwenSPBY0KxawFvEA,14278
46
57
  moai_adk/templates/__init__.py,sha256=6MV1gCB7PLZMiL4gaD_dZSKxtcQyo45MMTuN8fVdchA,104
47
- moai_adk/templates/.claude/settings.json,sha256=SwjID_m0XWmHT12lqkhJXL1Sh30zAr9_tk4drQ9x9K8,3149
48
- moai_adk/templates/.claude/agents/alfred/cc-manager.md,sha256=ievRB2BMAXjQ6iepWTLTCIHR9Dc4_L-Ab-dqhKQDdxE,8382
49
- moai_adk/templates/.claude/agents/alfred/debug-helper.md,sha256=C6jF54jsbI1y4xmb6s-MWVpuYISaFDQzY88M_HJhurw,7289
50
- moai_adk/templates/.claude/agents/alfred/doc-syncer.md,sha256=iFP09SKUEMfb4OdMT3gMBakwHf0UvIaBfQHhb0YzdWo,8704
51
- moai_adk/templates/.claude/agents/alfred/git-manager.md,sha256=3fRvc0-sNVT2k8GTGilFHXJ0UudAD8OG7d3nL69Is9M,14694
52
- moai_adk/templates/.claude/agents/alfred/implementation-planner.md,sha256=Xysj1KinbZt-PTw0Sx1bGFlTCxBuQGFfTCNLdatjb8E,11613
53
- moai_adk/templates/.claude/agents/alfred/project-manager.md,sha256=N-CaSiWnCdaJXWM3tZegMg4ispm-ioHKnuzmUdwQ2YE,15111
54
- moai_adk/templates/.claude/agents/alfred/quality-gate.md,sha256=_OebbNOxpKmUAde1zmjjYL8UrniFnIp710xFd7EtuU0,10779
55
- moai_adk/templates/.claude/agents/alfred/skill-factory.md,sha256=EUXtroq8qN22vAqyMxHgGLx7TVOe_in3quEB6K1HmS8,26467
56
- moai_adk/templates/.claude/agents/alfred/spec-builder.md,sha256=xGUYsGXB40lBcvmlONIx3tK4iUOVNRFfPatCXNDJonE,12575
57
- moai_adk/templates/.claude/agents/alfred/tag-agent.md,sha256=_ydlDocuxal89jGwpGIfQLfEbcCUDNoj8CDyDONRRYg,9679
58
- moai_adk/templates/.claude/agents/alfred/tdd-implementer.md,sha256=qTDJotSnK1KSxe2j6Kpvx0qLYwmzu0e9lKHmD6PVwgc,10285
59
- moai_adk/templates/.claude/agents/alfred/trust-checker.md,sha256=Vc5ReZjdl1FAifg_9qKt2MYWAdMHmq2psda-kyVhtVI,13663
60
- moai_adk/templates/.claude/commands/alfred/0-project.md,sha256=Acx7045n1e6-GC1g6QDePVoI2tOGC_fZFvokgrvz_T8,46704
61
- moai_adk/templates/.claude/commands/alfred/1-plan.md,sha256=wHROuePWaQwrbRm4SL4369vD7EpzKpVRvQBcWPcpUw0,25272
62
- moai_adk/templates/.claude/commands/alfred/2-run.md,sha256=KTUuQQPheLr0YY79asbK0oH9ajlp8vDsQC_2c8BvzWY,20956
63
- moai_adk/templates/.claude/commands/alfred/3-sync.md,sha256=WNlBzf5I_mDbdWhcITYE7oiHziHD1UQOG-HD12sqSwQ,23162
58
+ moai_adk/templates/.claude/settings.json,sha256=CJuGzZU84aWPS0UOcDYJxUOEVau60piT_X4kybyimuQ,3270
59
+ moai_adk/templates/.claude/agents/alfred/cc-manager.md,sha256=gVw9NMzy6UJqQ20GEiYz8Sm03e-4TKNR1-0Lz0MGPTc,9264
60
+ moai_adk/templates/.claude/agents/alfred/debug-helper.md,sha256=Y6MrS87UhyoBmbwpiF06duaAVogaO6wC3dWXvoE7kKY,7571
61
+ moai_adk/templates/.claude/agents/alfred/doc-syncer.md,sha256=oObWA_yl8FCVwdBMefp49hBRANdoVh20yWhwLIWpSkc,8588
62
+ moai_adk/templates/.claude/agents/alfred/git-manager.md,sha256=k922Ilww124KPnk5318kQUVRKsWMKNOlEhp2j4OGylg,14622
63
+ moai_adk/templates/.claude/agents/alfred/implementation-planner.md,sha256=QoV7w-wRY5BwcXo7QekQ6y3o1n4sAMW5Fysgt85IoeY,11602
64
+ moai_adk/templates/.claude/agents/alfred/project-manager.md,sha256=l_8Rt-QlplLCWsc4brBnfbO9jU6Y2zL15BRKFNDno0E,16246
65
+ moai_adk/templates/.claude/agents/alfred/quality-gate.md,sha256=WadGENW94h7E0yBoTmD5jC1cGDyAV_U_dmajEZHtcWk,11698
66
+ moai_adk/templates/.claude/agents/alfred/skill-factory.md,sha256=DJbB0cduJEhvJKhsc22qlumbAEISkL0xY7V-UtnHTlo,27535
67
+ moai_adk/templates/.claude/agents/alfred/spec-builder.md,sha256=duYOXS1-VPLpFVZUnRc02KqUIU1FXcFpJmcQypLvsw4,13081
68
+ moai_adk/templates/.claude/agents/alfred/tag-agent.md,sha256=oQIPS_Pa-VGiTZn4DH1TWgpk2EFwfTvn38S3zF4OL1M,10579
69
+ moai_adk/templates/.claude/agents/alfred/tdd-implementer.md,sha256=W0PwBgmdOhG_tb3dl-G-nFJtdL_0uLxjkGe1PLtUick,10691
70
+ moai_adk/templates/.claude/agents/alfred/trust-checker.md,sha256=ISdkXhZvwEYCBKVIHYyMGAHInr4ToLf4zVvNSwRVABA,14583
71
+ moai_adk/templates/.claude/commands/alfred/0-project.md,sha256=YFvND5qGRMqYqj9jWOAuv8OABK2eRcAn7cpciqhl92g,46903
72
+ moai_adk/templates/.claude/commands/alfred/1-plan.md,sha256=tD_C30pm24yWfwkSOQMYyAQxLgcg4qbYTxpBzCkV3wg,25918
73
+ moai_adk/templates/.claude/commands/alfred/2-run.md,sha256=SVyJQoZJIQWr2rDqz8QTbLFXGney_ev5gT4WoLyU7w8,21270
74
+ moai_adk/templates/.claude/commands/alfred/3-sync.md,sha256=jLCRe8UUC2Iof8Kg1rruvw6LS0TILnL7mg5UgdWrBtU,23397
64
75
  moai_adk/templates/.claude/commands/alfred/9-feedback.md,sha256=VMaKo-ZODHun87uUfiihtHGf8eT4vrEWwxXdQ9RAz3k,3764
65
- moai_adk/templates/.claude/hooks/alfred/HOOK_SCHEMA_VALIDATION.md,sha256=5dd6KRFQXzp0L8lAWKRN7Momgg_8XNV1QZ6VGs03_pc,9064
66
- moai_adk/templates/.claude/hooks/alfred/README.md,sha256=8JirNg3Jn2OUFmHySYBd8QxQgPkG7kcev86Zkf80asY,6852
67
- moai_adk/templates/.claude/hooks/alfred/alfred_hooks.py,sha256=PjdyJluyoQgaIpq3n9K9r-a3VeLMH1eWcXaAA6ohvrw,7723
68
- moai_adk/templates/.claude/hooks/alfred/core/__init__.py,sha256=nx_02kZDVFlKOgxBfFz3nqVrxMkmrkE0x7crJhdjl5E,6377
69
- moai_adk/templates/.claude/hooks/alfred/core/checkpoint.py,sha256=dsvFDSXQNSQlaQLpvhqFbytGOrOivyovi43Y18EmNeI,8483
70
- moai_adk/templates/.claude/hooks/alfred/core/context.py,sha256=RQd6yk8OGT-twgYtUiNmJIL-UEt_h4oktxqiRP_wXAI,2103
71
- moai_adk/templates/.claude/hooks/alfred/core/project.py,sha256=7S5GUyN_GkfKy_g-SZfzFjqLQbFYKpC2sNpbSpN2b6w,14141
72
- moai_adk/templates/.claude/hooks/alfred/core/tags.py,sha256=XcYYCS1VmCejp7Ga9xZ3hDfrWWsKM-WyPD_N5gY1q1w,6359
73
- moai_adk/templates/.claude/hooks/alfred/handlers/__init__.py,sha256=j5L7nayKt7tnFQOZuO5sWiie815vmbmYJOn2VRiidLY,569
74
- moai_adk/templates/.claude/hooks/alfred/handlers/notification.py,sha256=8TcEqGlz4EpLf2lpouaIuhVbpKOVeY31KPmIq2snt9U,662
75
- moai_adk/templates/.claude/hooks/alfred/handlers/session.py,sha256=gFrkTcBRQrDR0p5o79KvhN1LuGdmIVQyWg0fk1YD8l8,6397
76
- moai_adk/templates/.claude/hooks/alfred/handlers/tool.py,sha256=0bNtAf2M7nupTAkcrEiZMBCmD2f-dLjjZa5p1CWiNyM,3383
77
- moai_adk/templates/.claude/hooks/alfred/handlers/user.py,sha256=PyQI201oezWBzLrKo8ntWoRa9GDyVwLYktdu9vLT84s,1389
76
+ moai_adk/templates/.claude/hooks/alfred/README.md,sha256=LsSMvsxNwdV2CjA2X6Zn_xy73kT7-0Y7G-u_9bLKYlI,10568
77
+ moai_adk/templates/.claude/hooks/alfred/TROUBLESHOOTING.md,sha256=xINO1G3ujccL42JQzExEm-oiY9jHGrXm2YAlxtYkZY4,10753
78
+ moai_adk/templates/.claude/hooks/alfred/alfred_hooks.py,sha256=eOV-evpk8ChZD9_kMNmrRysCpy3ZMzV6cq1Oys0vRn0,9220
79
+ moai_adk/templates/.claude/hooks/alfred/notification__handle_events.py,sha256=Gn-hSpMs6Oy6yJcluXUcmlXiyS48RmsDWZn1xu3tgLA,2911
80
+ moai_adk/templates/.claude/hooks/alfred/post_tool__log_changes.py,sha256=7wxR2gQFX3nmBi9uC6KORjQGrQAv1y6JxJ_fcMxsw78,2939
81
+ moai_adk/templates/.claude/hooks/alfred/pre_tool__auto_checkpoint.py,sha256=2BR1e3cebN188rTonrczMLPfPv2ThXn5wsnoUBK72jo,3385
82
+ moai_adk/templates/.claude/hooks/alfred/session_end__cleanup.py,sha256=3wMPFq5JDXN7AXdLsGG6yL3WjCHtW7jCoYqNs0hER_M,2886
83
+ moai_adk/templates/.claude/hooks/alfred/session_start__show_project_info.py,sha256=s6KD1kxPdvADDzaItizqHhGmd3-WttNXNAp2UCCa2F8,2908
84
+ moai_adk/templates/.claude/hooks/alfred/stop__handle_interrupt.py,sha256=0GrMBWOQreGqJM-Q8_B1kXLdPchDiEnpsQSJlBIByxo,2863
85
+ moai_adk/templates/.claude/hooks/alfred/subagent_stop__handle_subagent_end.py,sha256=YmDOuvWa6OnSowsMitkRovekoJNq65pUPlmiTgQoBnE,2958
86
+ moai_adk/templates/.claude/hooks/alfred/user_prompt__jit_load_docs.py,sha256=AOPc8EmNbKMFsOhk5d7nGZ7aZbm-ZH8MNT0_I1Wv-hE,3585
87
+ moai_adk/templates/.claude/hooks/alfred/.moai/cache/version-check.json,sha256=D_Q4I_C-g6h4GqflzDOen1yPNrVFF6gXySga68VSQXg,250
88
+ moai_adk/templates/.claude/hooks/alfred/core/version_cache.py,sha256=qqrID2f7JZsEXXRf4kz_KtwAXBK-g0r-CixuXxM7vig,5972
89
+ moai_adk/templates/.claude/hooks/alfred/shared/core/__init__.py,sha256=nx_02kZDVFlKOgxBfFz3nqVrxMkmrkE0x7crJhdjl5E,6377
90
+ moai_adk/templates/.claude/hooks/alfred/shared/core/checkpoint.py,sha256=dsvFDSXQNSQlaQLpvhqFbytGOrOivyovi43Y18EmNeI,8483
91
+ moai_adk/templates/.claude/hooks/alfred/shared/core/context.py,sha256=RQd6yk8OGT-twgYtUiNmJIL-UEt_h4oktxqiRP_wXAI,2103
92
+ moai_adk/templates/.claude/hooks/alfred/shared/core/project.py,sha256=nnjdVPGShDNirrF2X5KN1lWQ0kfSfYeQBSrrIeig1h8,23496
93
+ moai_adk/templates/.claude/hooks/alfred/shared/core/tags.py,sha256=XcYYCS1VmCejp7Ga9xZ3hDfrWWsKM-WyPD_N5gY1q1w,6359
94
+ moai_adk/templates/.claude/hooks/alfred/shared/core/version_cache.py,sha256=qqrID2f7JZsEXXRf4kz_KtwAXBK-g0r-CixuXxM7vig,5972
95
+ moai_adk/templates/.claude/hooks/alfred/shared/handlers/__init__.py,sha256=j5L7nayKt7tnFQOZuO5sWiie815vmbmYJOn2VRiidLY,569
96
+ moai_adk/templates/.claude/hooks/alfred/shared/handlers/notification.py,sha256=8TcEqGlz4EpLf2lpouaIuhVbpKOVeY31KPmIq2snt9U,662
97
+ moai_adk/templates/.claude/hooks/alfred/shared/handlers/session.py,sha256=WkTiwgwce089eUkY1cT7WdXpSqpbmj-IIWTdRd3Ihqk,7278
98
+ moai_adk/templates/.claude/hooks/alfred/shared/handlers/tool.py,sha256=0bNtAf2M7nupTAkcrEiZMBCmD2f-dLjjZa5p1CWiNyM,3383
99
+ moai_adk/templates/.claude/hooks/alfred/shared/handlers/user.py,sha256=PyQI201oezWBzLrKo8ntWoRa9GDyVwLYktdu9vLT84s,1389
78
100
  moai_adk/templates/.claude/output-styles/alfred/agentic-coding.md,sha256=xxqVTxNwBEQahaerqeFYDEAErPNLw_-W1orWXYLuwtU,19702
79
101
  moai_adk/templates/.claude/output-styles/alfred/moai-adk-learning.md,sha256=Et9BlQkja_jOIVp7NLBVxCGU7H0H-qoEe_9LNaVis3k,17583
80
102
  moai_adk/templates/.claude/output-styles/alfred/study-with-alfred.md,sha256=XpIj9c4jqOOlZxn57Ujj8o7VIpAx_ftddwwd0fxIsio,12632
@@ -159,7 +181,7 @@ moai_adk/templates/.claude/skills/moai-essentials-refactor/reference.md,sha256=l
159
181
  moai_adk/templates/.claude/skills/moai-essentials-review/SKILL.md,sha256=9ZX1K1bPQ4WFLhsNZzRXaAli3D5Mq923tI2Et0zV71s,2397
160
182
  moai_adk/templates/.claude/skills/moai-essentials-review/examples.md,sha256=lxv3r2wcPL_jbrdYCH0AasV7FKClv29s8-81lXEmknU,399
161
183
  moai_adk/templates/.claude/skills/moai-essentials-review/reference.md,sha256=VMZ1BFTFMibuEx55zboCCNNHtSOYD4NKTqC9HUnxlNg,335
162
- moai_adk/templates/.claude/skills/moai-foundation-ears/SKILL.md,sha256=TxqWOT1IoEvIQuPjblJKKCP_llxsEV7Jcu7uikTztU0,2353
184
+ moai_adk/templates/.claude/skills/moai-foundation-ears/SKILL.md,sha256=Cb7bXtsfy0bJsWoXrdcsZDs-Q-IoIoD6zLueteJMmCk,2763
163
185
  moai_adk/templates/.claude/skills/moai-foundation-ears/examples.md,sha256=Pq82XtJTpZcZQB6E8ZzauwmFZ0gddZQ8WxQAbX__uxo,397
164
186
  moai_adk/templates/.claude/skills/moai-foundation-ears/reference.md,sha256=01U0adzSewSDRukBigoyY3H9nWwU_SeNcsx0BQbeeGM,333
165
187
  moai_adk/templates/.claude/skills/moai-foundation-git/SKILL.md,sha256=oswPp16o2fcQfVCsRVJG6UXOw2NVBgUOTWFREextwbw,2535
@@ -250,37 +272,48 @@ moai_adk/templates/.claude/skills/moai-skill-factory/templates/SKILL_TEMPLATE.md
250
272
  moai_adk/templates/.claude/skills/moai-skill-factory/templates/examples-template.md,sha256=hZqJhGuJtgW2mpXw_ZtXw8oei2LS-_WHFdctlARiaS8,5547
251
273
  moai_adk/templates/.claude/skills/moai-skill-factory/templates/reference-template.md,sha256=aLn_XSHaY-IhsC_xpXkqLXLDinqc90ByO0lW1hG1wac,4991
252
274
  moai_adk/templates/.claude/skills/moai-skill-factory/templates/scripts-template.sh,sha256=29HB8TlGO7zZOcLA-viF5xWtI0roSXUTJPQ0zjnsW3w,6984
253
- moai_adk/templates/.claude/skills/moai-spec-authoring/README.md,sha256=-OxbNzAeOHfTMQmgQD89ULAx9GyI9XgGyDwFZ7qUCn8,3946
254
- moai_adk/templates/.claude/skills/moai-spec-authoring/SKILL.md,sha256=oJCo2cKOXq1WM-CPE7fWm1slElTIOntC0Q54HwwiVUI,6297
255
- moai_adk/templates/.claude/skills/moai-spec-authoring/examples.md,sha256=k-3QWf6d4HI_kvss_QyzYrOH0kemgAqGMEeqGtxokAM,15522
256
- moai_adk/templates/.claude/skills/moai-spec-authoring/reference.md,sha256=Wbz1GM8nN64D7X49I0TffQPKxtUPWWmhOcaf_Ci0ZSA,16624
257
- moai_adk/templates/.claude/skills/moai-spec-authoring/examples/validate-spec.sh,sha256=QzwhuMnNK2itb6DLI_htqA4l_EHSgO0FG2pikV7I-ME,4241
258
- moai_adk/templates/.github/PULL_REQUEST_TEMPLATE.md,sha256=Y1WTubsATr7C54-zO5H3dg4MFB_M6MBefFRAG27rftM,2384
259
- moai_adk/templates/.github/ISSUE_TEMPLATE/spec.yml,sha256=6Zqfo_kLOZs1ElAXMshukQDVyz3rAktgZQCbnM_OoLY,5277
275
+ moai_adk/templates/.claude/skills/moai-spec-authoring/README.md,sha256=FZh0EJ0AAg_TkRdStllMCyphJQojeXpc9H_VfERbjSM,3947
276
+ moai_adk/templates/.claude/skills/moai-spec-authoring/SKILL.md,sha256=JoHdTtLdDcAwHGB7p5A2AhjjEEE-U_apX0MPee62IPU,6415
277
+ moai_adk/templates/.claude/skills/moai-spec-authoring/examples.md,sha256=rLSWTioSN0njc6W1tcsZA-R_mVG55oEXysii1NRMZWg,14527
278
+ moai_adk/templates/.claude/skills/moai-spec-authoring/reference.md,sha256=vTZ2BBo0mqpzhIcEGabyG7vXrm28V7qiQany5o_OxMQ,16124
279
+ moai_adk/templates/.claude/skills/moai-spec-authoring/examples/validate-spec.sh,sha256=FSXNA_8v36sN4V-3HpGudOXJo2c4t2whf_5QNDn6FiE,4251
280
+ moai_adk/templates/.github/PULL_REQUEST_TEMPLATE.md,sha256=rzTnwxhccYZO_yHqsW5FaxIMhggfLO9xJ6D1IYMEQqc,2153
281
+ moai_adk/templates/.github/ISSUE_TEMPLATE/spec.yml,sha256=fon91ozuKBeDwrw2BBuTSbkGApDEptNP9er5dW_-ZVc,5280
260
282
  moai_adk/templates/.github/workflows/moai-gitflow.yml,sha256=9QDqqscY7npu_1Sfsn0g9piX0QRDRZFhbEEwkZGXIG0,8684
283
+ moai_adk/templates/.github/workflows/moai-release-create.yml,sha256=KrHGkAep6iRyeLUh3YEP1XJCY7UO28lzqQY_DmwFkvw,2956
284
+ moai_adk/templates/.github/workflows/moai-release-pipeline.yml,sha256=kVpRk_OFgz0AVctLRLA2ASN-G_-prAHTGI7tufe6Pd0,6319
285
+ moai_adk/templates/.github/workflows/release.yml,sha256=5h4-npHKU-t1mnOQePYcpkcdGCN_560-Obu5tUCyNe0,1382
261
286
  moai_adk/templates/.github/workflows/spec-issue-sync.yml,sha256=GIYeQQvwcoi0r-o85nEbSSLwT5EsrSEzJKLhLMX7GPk,6483
262
- moai_adk/templates/.moai/config.json,sha256=b9AHxl-m71y3bewFiSG0URptvEWW8aUB19QpVOfYE4M,2830
287
+ moai_adk/templates/.github/workflows/tag-report.yml,sha256=zZ33OmLnRjBfWbnnYx_chpV_iY3rncCAbcVP708JQoE,9273
288
+ moai_adk/templates/.github/workflows/tag-validation.yml,sha256=L6NMZhb4q_K4toKvyYG1hvBFT3fBNJaiONtL7OefTCw,6758
289
+ moai_adk/templates/.moai/config.json,sha256=r7TtDLtS06YDP7EsqsghNfKCNkltVxVbmmSJHwQQV-s,2950
263
290
  moai_adk/templates/.moai/docs/quick-issue-creation-guide.md,sha256=tFJqsNr9SpXlGao6HXXm6I8FmC7yCkUo9cu6lE1GaVA,5460
291
+ moai_adk/templates/.moai/hooks/install.sh,sha256=P1-RtiHp7m2QIUUcHQ_oHB1xnqRQnD5QePb2iUo7qfA,2112
292
+ moai_adk/templates/.moai/hooks/pre-commit.sh,sha256=86UIhXMqJ4i24mKrLdzvyWXYSMK__EtXGSpE19wgVw4,1802
264
293
  moai_adk/templates/.moai/memory/CLAUDE-AGENTS-GUIDE.md,sha256=37Qj5DYcyUniLM1g8IU7UWFI_16tutZrcAkJc4E5i20,15876
265
294
  moai_adk/templates/.moai/memory/CLAUDE-PRACTICES.md,sha256=Tf3q68X1DiA3MkIBYu7AMXoeparYrDRpyqVI5Nw92OY,12653
266
295
  moai_adk/templates/.moai/memory/CLAUDE-RULES.md,sha256=S9GODGRzwwleOmROVtBDa471Ok5NyQLWIkaO_4peHhU,19783
267
296
  moai_adk/templates/.moai/memory/CONFIG-SCHEMA.md,sha256=XmvogEnGedRItVc9OABKr4lDNEZhcKZQ3Qa6KlfxE3E,12477
268
297
  moai_adk/templates/.moai/memory/DEVELOPMENT-GUIDE.md,sha256=SAcue1J5-DEJpygDnTgp_ex-ok2E4lbcykBuBiC7tGs,14534
269
298
  moai_adk/templates/.moai/memory/GITFLOW-PROTECTION-POLICY.md,sha256=tm2ZOmNMvomAhh4_AGTUNjmSsc-eKzo1SGshojx2QL0,6228
299
+ moai_adk/templates/.moai/memory/ISSUE-LABEL-MAPPING.md,sha256=bKzC2v1ZZWyng0eHSj9oFQ9w9xCbadPe9T9IYWub7wM,3824
270
300
  moai_adk/templates/.moai/memory/SKILLS-DESCRIPTION-POLICY.md,sha256=uMEFi6uojnpO_MGGtwhakYQzVF2yzVV9ZzfQe5tB0Hk,7823
271
301
  moai_adk/templates/.moai/memory/SPEC-METADATA.md,sha256=Ha4ATMxyH2PgQdVbS1fYwVH0PnIkfqk4hfuB5ksMFFk,9702
272
- moai_adk/templates/.moai/memory/config-schema.md,sha256=XmvogEnGedRItVc9OABKr4lDNEZhcKZQ3Qa6KlfxE3E,12477
273
- moai_adk/templates/.moai/memory/gitflow-protection-policy.md,sha256=tm2ZOmNMvomAhh4_AGTUNjmSsc-eKzo1SGshojx2QL0,6228
274
- moai_adk/templates/.moai/memory/issue-label-mapping.md,sha256=bKzC2v1ZZWyng0eHSj9oFQ9w9xCbadPe9T9IYWub7wM,3824
275
- moai_adk/templates/.moai/memory/spec-metadata.md,sha256=Ha4ATMxyH2PgQdVbS1fYwVH0PnIkfqk4hfuB5ksMFFk,9702
276
302
  moai_adk/templates/.moai/project/product.md,sha256=IrRSqhu0o5KNfn453DUWoUKzdoO3m6013iYCwaHYCxM,5166
277
303
  moai_adk/templates/.moai/project/structure.md,sha256=YWZ4ggmfzveKx8SQGFQWXdDUh5mxOLkEyy5yVdR3Rn0,4791
278
304
  moai_adk/templates/.moai/project/tech.md,sha256=REecMv8wOvutt-pQZ5nlGk5YdReTan7AHcKJ2Yes6RM,5758
305
+ moai_adk/templates/src/moai_adk/core/__init__.py,sha256=rbztODLKJooQ4ah3_Pjfk9wNM7qlMfXm5o7qotiNAK8,127
306
+ moai_adk/templates/src/moai_adk/core/tags/__init__.py,sha256=BJ83UcG0lTQMN3wBy4dkmHWLLIkGITmJQYH0CEH3KJM,1986
307
+ moai_adk/templates/src/moai_adk/core/tags/ci_validator.py,sha256=mZm78VgwLNIoGvw4xYkZLZAJib0LGQ8jZCoFOTkFOew,13754
308
+ moai_adk/templates/src/moai_adk/core/tags/cli.py,sha256=IKukBQoyjPdB3asrXiuCJpaT8U1Gz26OBauNXKGAJTs,7344
309
+ moai_adk/templates/src/moai_adk/core/tags/pre_commit_validator.py,sha256=1eA2RLFaFgRHKYKnHWfst_n3_TL8jJiLK53wb2_-dIA,10290
310
+ moai_adk/templates/src/moai_adk/core/tags/reporter.py,sha256=8KNf5L3PEMcsq0CEJ08c4GQYzt5mYtzDHOsxRBlU1hA,29400
311
+ moai_adk/templates/src/moai_adk/core/tags/validator.py,sha256=RH4NMX2TMtZ3IfGUHzlk-q0EzWWev5m9dYSehaXfxkE,31138
279
312
  moai_adk/utils/__init__.py,sha256=VnVfQzzKHvKw4bNdEw5xdscnRQYFrnr-v_TOBr3naPs,225
280
313
  moai_adk/utils/banner.py,sha256=znppKd5yo-tTqgyhgPVJjstrTrfcy_v3X1_RFQxP4Fk,1878
281
314
  moai_adk/utils/logger.py,sha256=g-m07PGKjK2bKRIInfSn6m-024Bedai-pV_WjZKDeu8,5064
282
- moai_adk-0.8.1.dist-info/METADATA,sha256=zEPvdQBK_mM5S1y9M6mptWfBF8VBYXikaAMF9H7SwVc,75540
283
- moai_adk-0.8.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
284
- moai_adk-0.8.1.dist-info/entry_points.txt,sha256=P9no1794UipqH72LP-ltdyfVd_MeB1WKJY_6-JQgV3U,52
285
- moai_adk-0.8.1.dist-info/licenses/LICENSE,sha256=M1M2b07fWcSWRM6_P3wbZKndZvyfHyYk_Wu9bS8F7o8,1069
286
- moai_adk-0.8.1.dist-info/RECORD,,
315
+ moai_adk-0.8.2.dist-info/METADATA,sha256=HHPxuV_a1xMadFqt3DLz-3sbQl40rJUPLMfQYKtExb4,81109
316
+ moai_adk-0.8.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
317
+ moai_adk-0.8.2.dist-info/entry_points.txt,sha256=P9no1794UipqH72LP-ltdyfVd_MeB1WKJY_6-JQgV3U,52
318
+ moai_adk-0.8.2.dist-info/licenses/LICENSE,sha256=M1M2b07fWcSWRM6_P3wbZKndZvyfHyYk_Wu9bS8F7o8,1069
319
+ moai_adk-0.8.2.dist-info/RECORD,,