moai-adk 0.3.11__py3-none-any.whl → 0.3.12__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.

moai_adk/__init__.py CHANGED
@@ -4,5 +4,5 @@
4
4
  SPEC-First TDD Framework with Alfred SuperAgent
5
5
  """
6
6
 
7
- __version__ = "0.3.11"
7
+ __version__ = "0.3.12"
8
8
  __all__ = ["__version__"]
@@ -1,4 +1,5 @@
1
1
  # @CODE:CLI-001 | SPEC: SPEC-CLI-001.md | TEST: tests/unit/test_doctor.py
2
+ # @CODE:CLAUDE-COMMANDS-001:CLI | SPEC: SPEC-CLAUDE-COMMANDS-001.md | TEST: tests/unit/test_slash_commands.py
2
3
  """MoAI-ADK doctor command
3
4
 
4
5
  System diagnostics command:
@@ -6,6 +7,7 @@ System diagnostics command:
6
7
  - Verify Git installation
7
8
  - Validate project structure
8
9
  - Inspect language-specific tool chains
10
+ - Diagnose slash command loading issues (--check-commands)
9
11
  """
10
12
 
11
13
  import json
@@ -27,7 +29,8 @@ console = Console()
27
29
  @click.option("--fix", is_flag=True, help="Suggest fixes for missing tools")
28
30
  @click.option("--export", type=click.Path(), help="Export diagnostics to JSON file")
29
31
  @click.option("--check", type=str, help="Check specific tool only")
30
- def doctor(verbose: bool, fix: bool, export: str | None, check: str | None) -> None:
32
+ @click.option("--check-commands", is_flag=True, help="Diagnose slash command loading issues")
33
+ def doctor(verbose: bool, fix: bool, export: str | None, check: str | None, check_commands: bool) -> None:
31
34
  """Check system requirements and project health
32
35
 
33
36
  Verifies:
@@ -37,6 +40,11 @@ def doctor(verbose: bool, fix: bool, export: str | None, check: str | None) -> N
37
40
  - Language-specific tool chains (20+ languages)
38
41
  """
39
42
  try:
43
+ # Handle --check-commands option first
44
+ if check_commands:
45
+ _check_slash_commands()
46
+ return
47
+
40
48
  console.print("[cyan]Running system diagnostics...[/cyan]\n")
41
49
 
42
50
  # Run basic environment checks
@@ -182,3 +190,45 @@ def _export_diagnostics(export_path: str, data: dict) -> None:
182
190
  console.print(f"\n[green]✓ Diagnostics exported to {export_path}[/green]")
183
191
  except Exception as e:
184
192
  console.print(f"\n[red]✗ Failed to export diagnostics: {e}[/red]")
193
+
194
+
195
+ def _check_slash_commands() -> None:
196
+ """Check slash command loading issues (helper)"""
197
+ from moai_adk.core.diagnostics.slash_commands import diagnose_slash_commands
198
+
199
+ console.print("[cyan]Running slash command diagnostics...[/cyan]\n")
200
+
201
+ result = diagnose_slash_commands()
202
+
203
+ # Handle error case
204
+ if "error" in result:
205
+ console.print(f"[red]✗ {result['error']}[/red]")
206
+ return
207
+
208
+ # Build results table
209
+ table = Table(show_header=True, header_style="bold magenta")
210
+ table.add_column("Command File", style="dim", width=40)
211
+ table.add_column("Status", justify="center", width=10)
212
+ table.add_column("Issues", style="yellow")
213
+
214
+ for detail in result["details"]:
215
+ icon = "✓" if detail["valid"] else "✗"
216
+ color = "green" if detail["valid"] else "red"
217
+ issues = ", ".join(detail["errors"]) if detail["errors"] else "-"
218
+
219
+ table.add_row(detail["file"], f"[{color}]{icon}[/{color}]", issues)
220
+
221
+ console.print(table)
222
+ console.print()
223
+
224
+ # Summary
225
+ total = result["total_files"]
226
+ valid = result["valid_commands"]
227
+
228
+ if valid == total and total > 0:
229
+ console.print(f"[green]✓ {valid}/{total} command files are valid[/green]")
230
+ elif total == 0:
231
+ console.print("[yellow]⚠ No command files found in .claude/commands/[/yellow]")
232
+ else:
233
+ console.print(f"[yellow]⚠ Only {valid}/{total} command files are valid[/yellow]")
234
+ console.print("[dim]Fix the issues above to enable slash commands[/dim]")
@@ -123,9 +123,20 @@ def prompt_project_setup(
123
123
  "Java",
124
124
  "Go",
125
125
  "Rust",
126
+ "Ruby",
126
127
  "Dart",
127
128
  "Swift",
128
129
  "Kotlin",
130
+ "PHP",
131
+ "C#",
132
+ "C",
133
+ "C++",
134
+ "Elixir",
135
+ "Scala",
136
+ "Clojure",
137
+ "Haskell",
138
+ "Lua",
139
+ "OCaml",
129
140
  "Generic",
130
141
  ],
131
142
  ).ask()
@@ -0,0 +1,19 @@
1
+ """Diagnostics module for MoAI-ADK
2
+
3
+ Provides diagnostic tools for:
4
+ - Slash command validation
5
+ - System health checks
6
+ - Environment verification
7
+ """
8
+
9
+ from moai_adk.core.diagnostics.slash_commands import (
10
+ diagnose_slash_commands,
11
+ scan_command_files,
12
+ validate_command_file,
13
+ )
14
+
15
+ __all__ = [
16
+ "diagnose_slash_commands",
17
+ "scan_command_files",
18
+ "validate_command_file",
19
+ ]
@@ -0,0 +1,160 @@
1
+ # @CODE:CLAUDE-COMMANDS-001:DIAGNOSTIC | SPEC: SPEC-CLAUDE-COMMANDS-001.md | TEST: tests/unit/test_slash_commands.py
2
+ """Slash command diagnostics
3
+
4
+ Diagnose and validate Claude Code slash command loading issues.
5
+
6
+ Functions:
7
+ - validate_command_file: Validate YAML front matter and required fields
8
+ - scan_command_files: Recursively scan for .md files
9
+ - diagnose_slash_commands: Comprehensive diagnostic report
10
+ """
11
+
12
+ from pathlib import Path
13
+
14
+ import yaml
15
+
16
+
17
+ def validate_command_file(file_path: Path) -> dict:
18
+ """Validate slash command file format
19
+
20
+ Checks:
21
+ 1. File exists and readable
22
+ 2. YAML front matter present (starts with ---)
23
+ 3. Valid YAML syntax
24
+ 4. Required fields: name, description
25
+
26
+ Args:
27
+ file_path: Path to command file (.md)
28
+
29
+ Returns:
30
+ dict with 'valid' (bool) and optional 'errors' (list[str])
31
+
32
+ Example:
33
+ >>> result = validate_command_file(Path("cmd.md"))
34
+ >>> if result["valid"]:
35
+ ... print("Valid command file")
36
+ ... else:
37
+ ... print(f"Errors: {result['errors']}")
38
+ """
39
+ try:
40
+ # Check file exists
41
+ if not file_path.exists():
42
+ return {"valid": False, "errors": ["File not found"]}
43
+
44
+ # Read file content
45
+ content = file_path.read_text(encoding="utf-8")
46
+
47
+ # Check front matter delimiter
48
+ if not content.startswith("---"):
49
+ return {
50
+ "valid": False,
51
+ "errors": ["Missing YAML front matter (must start with ---)"],
52
+ }
53
+
54
+ # Split by --- delimiter
55
+ parts = content.split("---", 2)
56
+ if len(parts) < 3:
57
+ return {
58
+ "valid": False,
59
+ "errors": ["Invalid front matter format (missing closing ---)"],
60
+ }
61
+
62
+ # Parse YAML
63
+ try:
64
+ metadata = yaml.safe_load(parts[1])
65
+ except yaml.YAMLError as e:
66
+ return {"valid": False, "errors": [f"YAML parsing error: {e}"]}
67
+
68
+ # Check required fields
69
+ required_fields = ["name", "description"]
70
+ missing_fields = [field for field in required_fields if field not in metadata]
71
+
72
+ if missing_fields:
73
+ return {
74
+ "valid": False,
75
+ "errors": [f"Missing required field: {', '.join(missing_fields)}"],
76
+ }
77
+
78
+ return {"valid": True}
79
+
80
+ except Exception as e:
81
+ return {"valid": False, "errors": [str(e)]}
82
+
83
+
84
+ def scan_command_files(commands_dir: Path) -> list[Path]:
85
+ """Scan directory for all .md files
86
+
87
+ Recursively searches for .md files in the given directory.
88
+
89
+ Args:
90
+ commands_dir: Directory to scan (e.g., .claude/commands)
91
+
92
+ Returns:
93
+ List of Path objects for found .md files
94
+
95
+ Example:
96
+ >>> files = scan_command_files(Path(".claude/commands"))
97
+ >>> print(f"Found {len(files)} command files")
98
+ """
99
+ if not commands_dir.exists():
100
+ return []
101
+
102
+ try:
103
+ return list(commands_dir.glob("**/*.md"))
104
+ except Exception:
105
+ return []
106
+
107
+
108
+ def diagnose_slash_commands() -> dict:
109
+ """Diagnose slash command loading issues
110
+
111
+ Comprehensive diagnostic that:
112
+ 1. Checks if .claude/commands directory exists
113
+ 2. Scans for all .md files
114
+ 3. Validates each file's format
115
+ 4. Returns detailed report
116
+
117
+ Returns:
118
+ dict with diagnostic results:
119
+ - total_files: Number of .md files found
120
+ - valid_commands: Number of valid command files
121
+ - details: List of per-file validation results
122
+ OR
123
+ - error: Error message if directory not found
124
+
125
+ Example:
126
+ >>> result = diagnose_slash_commands()
127
+ >>> if "error" in result:
128
+ ... print(f"Error: {result['error']}")
129
+ ... else:
130
+ ... print(f"{result['valid_commands']}/{result['total_files']} valid")
131
+ """
132
+ commands_dir = Path(".claude/commands")
133
+
134
+ # Check if directory exists
135
+ if not commands_dir.exists():
136
+ return {"error": "Commands directory not found"}
137
+
138
+ # Scan for .md files
139
+ md_files = scan_command_files(commands_dir)
140
+
141
+ # Validate each file
142
+ details = []
143
+ for file_path in md_files:
144
+ validation = validate_command_file(file_path)
145
+ details.append(
146
+ {
147
+ "file": str(file_path.relative_to(commands_dir)),
148
+ "valid": validation["valid"],
149
+ "errors": validation.get("errors", []),
150
+ }
151
+ )
152
+
153
+ # Count valid commands
154
+ valid_count = sum(1 for detail in details if detail["valid"])
155
+
156
+ return {
157
+ "total_files": len(md_files),
158
+ "valid_commands": valid_count,
159
+ "details": details,
160
+ }
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: alfred:2-build
3
- description: 구현할 SPEC ID (예: SPEC-001) 또는 all로 모든 SPEC 구현: 언어별 최적화된 TDD 구현 (Red-Green-Refactor) with SQLite3 tags.db
3
+ description: "구현할 SPEC ID (예: SPEC-001) 또는 all로 모든 SPEC 구현 - 언어별 최적화된 TDD 구현 (Red-Green-Refactor) with SQLite3 tags.db"
4
4
  argument-hint: "SPEC-ID - 구현할 SPEC ID (예: SPEC-001) 또는 all로 모든 SPEC 구현"
5
5
  allowed-tools:
6
6
  - Read
@@ -6,17 +6,6 @@
6
6
  "PYTHON_ENV": "{{PROJECT_MODE}}"
7
7
  },
8
8
  "hooks": {
9
- "SessionStart": [
10
- {
11
- "hooks": [
12
- {
13
- "command": "uv run .claude/hooks/alfred/alfred_hooks.py SessionStart",
14
- "type": "command"
15
- }
16
- ],
17
- "matcher": "*"
18
- }
19
- ],
20
9
  "PreToolUse": [
21
10
  {
22
11
  "hooks": [
@@ -106,6 +106,7 @@ MoAI-ADK는 Anthropic의 "Effective Context Engineering for AI Agents" 원칙을
106
106
  - **Java**: JUnit + SPEC 어노테이션 (행동 주도 테스트)
107
107
  - **Go**: go test + SPEC 테이블 주도 테스트 (인터페이스 준수)
108
108
  - **Rust**: cargo test + SPEC 문서 테스트 (trait 검증)
109
+ - **Ruby**: RSpec + SPEC 기반 BDD 테스트 (행동 명세 우선)
109
110
 
110
111
  각 테스트는 @TEST:ID → @CODE:ID 참조를 통해 특정 SPEC 요구사항과 연결한다.
111
112
 
@@ -125,6 +126,7 @@ MoAI-ADK는 Anthropic의 "Effective Context Engineering for AI Agents" 원칙을
125
126
  - **Java**: SPEC 구성요소 구현 클래스 + 강한 타이핑
126
127
  - **Go**: SPEC 요구사항 충족 인터페이스 + gofmt
127
128
  - **Rust**: SPEC 안전 요구사항을 구현하는 타입 + rustfmt
129
+ - **Ruby**: SPEC 행동을 반영하는 duck typing + RuboCop 검증
128
130
 
129
131
  모든 코드 요소는 @TAG 주석을 통해 SPEC까지 추적 가능하다.
130
132
 
@@ -320,6 +322,7 @@ rg "### v[0-9]" .moai/specs/SPEC-AUTH-001.md | head -3
320
322
  - **Java**: JUnit (테스트), Maven/Gradle (빌드)
321
323
  - **Go**: go test (테스트), gofmt (포맷)
322
324
  - **Rust**: cargo test (테스트), rustfmt (포맷)
325
+ - **Ruby**: RSpec (테스트), RuboCop (린터+포맷), Bundler (패키지 관리)
323
326
 
324
327
  ## 변수 역할 참고
325
328
 
@@ -461,7 +461,7 @@ def handle_pre_tool_use(payload):
461
461
  - **SPEC-First**: 명세 없이는 코드 없음
462
462
  - **TDD-First**: 테스트 없이는 구현 없음
463
463
  - **GitFlow 지원**: Git 작업 자동화, Living Document 동기화, @TAG 추적성
464
- - **다중 언어 지원**: Python, TypeScript, Java, Go, Rust, Dart, Swift, Kotlin 등 모든 주요 언어
464
+ - **다중 언어 지원**: Python, TypeScript, Java, Go, Rust, Ruby, Dart, Swift, Kotlin 등 20개 주요 언어
465
465
  - **모바일 지원**: Flutter, React Native, iOS (Swift), Android (Kotlin)
466
466
  - **CODE-FIRST @TAG**: 코드 직접 스캔 방식 (중간 캐시 없음)
467
467
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: moai-adk
3
- Version: 0.3.11
3
+ Version: 0.3.12
4
4
  Summary: MoAI Agentic Development Kit - SPEC-First TDD with Alfred SuperAgent
5
5
  Project-URL: Homepage, https://github.com/modu-ai/moai-adk
6
6
  Project-URL: Repository, https://github.com/modu-ai/moai-adk
@@ -1,16 +1,18 @@
1
- moai_adk/__init__.py,sha256=xGKbfTvpKMGcmSZOUJtX8_WsZAAp04nKprHyddnHS3o,217
1
+ moai_adk/__init__.py,sha256=zd7dqRoH0TwcrNnPYup0gctShF4cKVtbdpprX5vyo2g,217
2
2
  moai_adk/__main__.py,sha256=Wok19np6X4pxX4ybsGWS6McDZwoAN6iAvyLqFD9G5No,2419
3
3
  moai_adk/cli/__init__.py,sha256=tidIaJnd4Pje_5QYRq7OvRRst4T3kaPlkw5QcPQ3l1Y,135
4
4
  moai_adk/cli/main.py,sha256=mHACHi27AP2N7fg7zhzOo1tlF1Jrlw1_AcbxMfpGLVE,306
5
5
  moai_adk/cli/commands/__init__.py,sha256=AXHW3xozTShXENtrAINFK6brSEEGmaFCi0q71xsE9FQ,675
6
6
  moai_adk/cli/commands/backup.py,sha256=Hzf3zc7NhfChAJu2OTN_0xARtUbNaB32fmPczchbrC4,1652
7
- moai_adk/cli/commands/doctor.py,sha256=R4Cf9Jqwww1ng36u2SHTh6x0VdmnvaT7G9KVKJRX7N4,6623
7
+ moai_adk/cli/commands/doctor.py,sha256=XGZd3FDsGw8mIwmRouGR-SopKOrU_VeReUaZB4I-rGE,8553
8
8
  moai_adk/cli/commands/init.py,sha256=B9xWjjpIU9YgXBwfguLrzopVZMYg8GaqPa481EiHHGo,10377
9
9
  moai_adk/cli/commands/status.py,sha256=YJhh7RoKnumxY0_ho7FWTWm5Nxh2jTnH9aSsapdLhyo,2277
10
10
  moai_adk/cli/commands/update.py,sha256=aoYSR6Nz70sI-KNnkeD_9nZg4CHo5DJkmstnVfoTbrk,5979
11
11
  moai_adk/cli/prompts/__init__.py,sha256=a4_ctS4KEvGtmM9j7z8XIlMkpftohjVb9woUwZu38gE,136
12
- moai_adk/cli/prompts/init_prompts.py,sha256=LDuszslENM-xpNk1e-XIHnFu5J1168rKAnyPsMGXYBU,4944
12
+ moai_adk/cli/prompts/init_prompts.py,sha256=MG7QSSLAkPnff4rYtj8Uv9-r3MCzNdawtzzUivhGp8M,5254
13
13
  moai_adk/core/__init__.py,sha256=Nq5zaonDTRGFFfr0yH4Wcsjm5u_xCG1zg0nIAIdRqKc,124
14
+ moai_adk/core/diagnostics/__init__.py,sha256=aF-qC2CW0wxZDpxnlh-TILYs3kqwOIj2EjXYEXY-2j8,387
15
+ moai_adk/core/diagnostics/slash_commands.py,sha256=HCdaO0BgL6u-buvpmLQ0PRZru_2DkzLU97lQpGOj6Z0,4650
14
16
  moai_adk/core/git/__init__.py,sha256=Kpq2yU5X5bBBUV8ySYIB1_vMPvfdFS6hTYx2Ue-CoeQ,697
15
17
  moai_adk/core/git/branch.py,sha256=QHYWwLcAhEaqWfrGViV1kUOzHJHpd2E1U-IikCZaIRU,612
16
18
  moai_adk/core/git/branch_manager.py,sha256=K6SyO3vtVv111D2dudbSgyKBLlDX2aWTPj1qJV4PSMg,4143
@@ -36,9 +38,9 @@ moai_adk/core/template/languages.py,sha256=waeyA_MFy217bV9IiILc2gofG9RM9JhD-kdVG
36
38
  moai_adk/core/template/merger.py,sha256=dvKobOW4vXz-7GWKJpZFYxCMtR-LszcJZYbYFTL3XY0,4049
37
39
  moai_adk/core/template/processor.py,sha256=gmYK3d0dwlf0ES2RZb59ihBVctYcknB3WX0Gsp1pwBg,15175
38
40
  moai_adk/templates/.gitignore,sha256=6VNKResdDpyaii3cmJA4pOLwK2PhYARIWkUODYtKyxg,310
39
- moai_adk/templates/CLAUDE.md,sha256=xANecTF739Bh2aJX7nExWQcS2Yc_G8jk2HEVZKlmJOo,27286
41
+ moai_adk/templates/CLAUDE.md,sha256=TSUD5r6vgr8eA4AtIYfCb7haA_WmnbmdWlwjqydOYdM,27291
40
42
  moai_adk/templates/__init__.py,sha256=9YY0tDkKbDFCdUB7rJFtGq0CZbF2ftVSKF573iw0KJc,99
41
- moai_adk/templates/.claude/settings.json,sha256=-wa_uzvkUc2nE91VJhCAMv5Xrw-gwEW4-f61yhC-olk,2518
43
+ moai_adk/templates/.claude/settings.json,sha256=5y0IO9Q7-_vHp2Mkw6zeIQY-k-tdBB8CZ2H5NT1PVcY,2283
42
44
  moai_adk/templates/.claude/agents/alfred/cc-manager.md,sha256=xP3V7QAI-08ga6hhF3J4fXbgiHUM08bJbT2nfE52Bq4,13883
43
45
  moai_adk/templates/.claude/agents/alfred/debug-helper.md,sha256=1Sxz6tBHa-oCoTmwjEZ8ix2OMbjTsOpWUOekQKftlF8,5249
44
46
  moai_adk/templates/.claude/agents/alfred/doc-syncer.md,sha256=kLwLvI-5oRjEG6fSlq8CwwsH3TbqrAY-OWZDcS_3IMo,6223
@@ -52,7 +54,7 @@ moai_adk/templates/.claude/agents/alfred/tdd-implementer.md,sha256=oeJimFgfRuJqB
52
54
  moai_adk/templates/.claude/agents/alfred/trust-checker.md,sha256=eIwFumcJfr66jWdAuWJ5LITHfzzsRBaITGD7iz8EYH4,11647
53
55
  moai_adk/templates/.claude/commands/alfred/0-project.md,sha256=6a19UVvi6BV6mX0312WbQJyN4nsKB7pggTlLgtxwcFM,17831
54
56
  moai_adk/templates/.claude/commands/alfred/1-spec.md,sha256=dpaOJWxK2zjU2wI7uvVfY16SDyGzN-HsUcIepPO8sCM,20365
55
- moai_adk/templates/.claude/commands/alfred/2-build.md,sha256=cEvXk9gadL2twrkDf3p2w8lzrCt3JkMUx-T0MtnLN7U,17429
57
+ moai_adk/templates/.claude/commands/alfred/2-build.md,sha256=jnNuUlFndD8hyYFUpVyt7Mvqlvaob_Z69SLpv4ajg7U,17432
56
58
  moai_adk/templates/.claude/commands/alfred/3-sync.md,sha256=5rYopDYzJHKEG400CuHoSWP5xBppcZNTFCu2GlFNVs0,19610
57
59
  moai_adk/templates/.claude/hooks/alfred/README.md,sha256=1E_nUaFj_50UTXIfFnkNLTy4qZHCs_R3gzhBoekf4Pk,6823
58
60
  moai_adk/templates/.claude/hooks/alfred/alfred_hooks.py,sha256=vffNW0u2RXZ_jG3EzIggxEv23fDuh2qtU7oF7PZIW6A,6943
@@ -72,7 +74,7 @@ moai_adk/templates/.github/PULL_REQUEST_TEMPLATE.md,sha256=Cbkc2YZzM1wiGC5XI0cbg
72
74
  moai_adk/templates/.github/workflows/moai-gitflow.yml,sha256=aD36D-wKSvjWHGGfy5lRvriMHVWSjtRojn6qzBdztu0,8701
73
75
  moai_adk/templates/.moai/config.json,sha256=pMmmcQgyZQJtbvsrpzjYiYZRwmLrSH9FBaMKTVNcj2w,2152
74
76
  moai_adk/templates/.moai/hooks/pre-push.sample,sha256=zpQOWHxpV_XjTAnyp1dTrM39Iz1MBe_JaNdc_sRfrxw,3728
75
- moai_adk/templates/.moai/memory/development-guide.md,sha256=YMepw_MT0-YDK6rQlKvWOULAMGtPDH-WJA6wIYiSMwU,14717
77
+ moai_adk/templates/.moai/memory/development-guide.md,sha256=LtW7LpwpKmaajQZYoQPAmfKjZh8cfjniatngiCV6Sn4,14938
76
78
  moai_adk/templates/.moai/memory/gitflow-protection-policy.md,sha256=xmRXA9erdH4EgpRdd0inKGat6HEZ8HP-4BQthjLyoZ4,6529
77
79
  moai_adk/templates/.moai/memory/spec-metadata.md,sha256=EZ_GMCG-yRwvvCotD6oSGR350hg090fodQkxPuWNYso,7350
78
80
  moai_adk/templates/.moai/project/product.md,sha256=ClDlG1q7P8aX4cjroXLUZIQGd2wBZt6xD-w9RXMOYfk,5731
@@ -81,8 +83,8 @@ moai_adk/templates/.moai/project/tech.md,sha256=1BgkApeFqQCq6TPriGiev02G9niVx23c
81
83
  moai_adk/utils/__init__.py,sha256=fv-UwHv8r4-eedwRnDA9hFjo5QSZYXjctKDyE7XF10g,220
82
84
  moai_adk/utils/banner.py,sha256=TmZyJKXOnJpdbdn6NZDJC6a4hm051QudEvOfiKQhvI8,1873
83
85
  moai_adk/utils/logger.py,sha256=jYCWKvcN-tX17hZ-e2IPuHATwkQBFc_I1dd5fUTWxmY,5059
84
- moai_adk-0.3.11.dist-info/METADATA,sha256=GvaHiumDTnHbFtuELOGZfSy8lO30yJAo3CLooR0IgGE,49933
85
- moai_adk-0.3.11.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
86
- moai_adk-0.3.11.dist-info/entry_points.txt,sha256=P9no1794UipqH72LP-ltdyfVd_MeB1WKJY_6-JQgV3U,52
87
- moai_adk-0.3.11.dist-info/licenses/LICENSE,sha256=M1M2b07fWcSWRM6_P3wbZKndZvyfHyYk_Wu9bS8F7o8,1069
88
- moai_adk-0.3.11.dist-info/RECORD,,
86
+ moai_adk-0.3.12.dist-info/METADATA,sha256=j3QfFKZALqlfKz1yIPS0f1QhHVqlqmnqvqvHKbv5SS8,49933
87
+ moai_adk-0.3.12.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
88
+ moai_adk-0.3.12.dist-info/entry_points.txt,sha256=P9no1794UipqH72LP-ltdyfVd_MeB1WKJY_6-JQgV3U,52
89
+ moai_adk-0.3.12.dist-info/licenses/LICENSE,sha256=M1M2b07fWcSWRM6_P3wbZKndZvyfHyYk_Wu9bS8F7o8,1069
90
+ moai_adk-0.3.12.dist-info/RECORD,,