moai-adk 0.8.2__py3-none-any.whl → 0.8.3__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/core/config/migration.py +1 -1
- moai_adk/core/issue_creator.py +7 -3
- moai_adk/core/tags/__init__.py +23 -24
- moai_adk/core/tags/ci_validator.py +3 -5
- moai_adk/core/tags/cli.py +2 -2
- moai_adk/core/tags/pre_commit_validator.py +5 -5
- moai_adk/core/tags/reporter.py +3 -5
- moai_adk/core/tags/validator.py +3 -3
- moai_adk/templates/.claude/commands/alfred/1-plan.md +65 -15
- moai_adk/templates/.claude/commands/alfred/2-run.md +65 -15
- moai_adk/templates/.claude/commands/alfred/3-sync.md +68 -14
- moai_adk/templates/.claude/hooks/alfred/core/version_cache.py +1 -1
- moai_adk/templates/.claude/hooks/alfred/shared/core/project.py +34 -23
- moai_adk/templates/.claude/hooks/alfred/shared/core/version_cache.py +3 -3
- moai_adk/templates/.moai/memory/gitflow-protection-policy.md +220 -0
- moai_adk/templates/.moai/memory/spec-metadata.md +356 -0
- moai_adk/templates/src/moai_adk/core/tags/__init__.py +23 -24
- moai_adk/templates/src/moai_adk/core/tags/ci_validator.py +3 -5
- moai_adk/templates/src/moai_adk/core/tags/cli.py +2 -2
- moai_adk/templates/src/moai_adk/core/tags/pre_commit_validator.py +5 -5
- moai_adk/templates/src/moai_adk/core/tags/reporter.py +3 -5
- moai_adk/templates/src/moai_adk/core/tags/validator.py +3 -3
- {moai_adk-0.8.2.dist-info → moai_adk-0.8.3.dist-info}/METADATA +15 -14
- {moai_adk-0.8.2.dist-info → moai_adk-0.8.3.dist-info}/RECORD +27 -25
- {moai_adk-0.8.2.dist-info → moai_adk-0.8.3.dist-info}/WHEEL +0 -0
- {moai_adk-0.8.2.dist-info → moai_adk-0.8.3.dist-info}/entry_points.txt +0 -0
- {moai_adk-0.8.2.dist-info → moai_adk-0.8.3.dist-info}/licenses/LICENSE +0 -0
|
@@ -14,43 +14,42 @@ This module provides TAG validation functionality for:
|
|
|
14
14
|
"""
|
|
15
15
|
|
|
16
16
|
# Component 1: Pre-commit validator
|
|
17
|
+
# Component 2: CI/CD validator
|
|
18
|
+
from .ci_validator import CIValidator
|
|
17
19
|
from .pre_commit_validator import (
|
|
18
20
|
PreCommitValidator,
|
|
19
|
-
ValidationResult,
|
|
20
21
|
ValidationError,
|
|
22
|
+
ValidationResult,
|
|
21
23
|
ValidationWarning,
|
|
22
24
|
)
|
|
23
25
|
|
|
24
|
-
# Component 2: CI/CD validator
|
|
25
|
-
from .ci_validator import CIValidator
|
|
26
|
-
|
|
27
|
-
# Component 3: Central validation system
|
|
28
|
-
from .validator import (
|
|
29
|
-
ValidationConfig,
|
|
30
|
-
TagValidator,
|
|
31
|
-
DuplicateValidator,
|
|
32
|
-
OrphanValidator,
|
|
33
|
-
ChainValidator,
|
|
34
|
-
FormatValidator,
|
|
35
|
-
CentralValidator,
|
|
36
|
-
CentralValidationResult,
|
|
37
|
-
ValidationIssue,
|
|
38
|
-
ValidationStatistics,
|
|
39
|
-
)
|
|
40
|
-
|
|
41
26
|
# Component 4: Documentation & Reporting
|
|
42
27
|
from .reporter import (
|
|
43
|
-
|
|
44
|
-
|
|
28
|
+
CoverageAnalyzer,
|
|
29
|
+
CoverageMetrics,
|
|
45
30
|
InventoryGenerator,
|
|
46
31
|
MatrixGenerator,
|
|
47
|
-
CoverageAnalyzer,
|
|
48
|
-
StatisticsGenerator,
|
|
49
32
|
ReportFormatter,
|
|
50
33
|
ReportGenerator,
|
|
51
|
-
CoverageMetrics,
|
|
52
|
-
StatisticsReport,
|
|
53
34
|
ReportResult,
|
|
35
|
+
StatisticsGenerator,
|
|
36
|
+
StatisticsReport,
|
|
37
|
+
TagInventory,
|
|
38
|
+
TagMatrix,
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
# Component 3: Central validation system
|
|
42
|
+
from .validator import (
|
|
43
|
+
CentralValidationResult,
|
|
44
|
+
CentralValidator,
|
|
45
|
+
ChainValidator,
|
|
46
|
+
DuplicateValidator,
|
|
47
|
+
FormatValidator,
|
|
48
|
+
OrphanValidator,
|
|
49
|
+
TagValidator,
|
|
50
|
+
ValidationConfig,
|
|
51
|
+
ValidationIssue,
|
|
52
|
+
ValidationStatistics,
|
|
54
53
|
)
|
|
55
54
|
|
|
56
55
|
__all__ = [
|
|
@@ -13,15 +13,13 @@ Used by GitHub Actions workflow to validate TAGs on every PR.
|
|
|
13
13
|
|
|
14
14
|
import json
|
|
15
15
|
import os
|
|
16
|
-
from
|
|
17
|
-
|
|
16
|
+
from typing import Any, Dict, List, Optional
|
|
17
|
+
|
|
18
18
|
import requests
|
|
19
19
|
|
|
20
20
|
from .pre_commit_validator import (
|
|
21
21
|
PreCommitValidator,
|
|
22
22
|
ValidationResult,
|
|
23
|
-
ValidationError,
|
|
24
|
-
ValidationWarning,
|
|
25
23
|
)
|
|
26
24
|
|
|
27
25
|
|
|
@@ -357,8 +355,8 @@ class CIValidator(PreCommitValidator):
|
|
|
357
355
|
|
|
358
356
|
def main():
|
|
359
357
|
"""CLI entry point for CI/CD validation"""
|
|
360
|
-
import sys
|
|
361
358
|
import argparse
|
|
359
|
+
import sys
|
|
362
360
|
|
|
363
361
|
parser = argparse.ArgumentParser(
|
|
364
362
|
description="Validate TAG annotations in GitHub PR"
|
|
@@ -15,15 +15,15 @@ Usage:
|
|
|
15
15
|
moai-adk validate-tags --no-duplicates --no-orphans
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
|
-
import sys
|
|
19
18
|
import argparse
|
|
19
|
+
import sys
|
|
20
20
|
from pathlib import Path
|
|
21
21
|
from typing import Optional
|
|
22
22
|
|
|
23
23
|
from .validator import (
|
|
24
|
+
CentralValidationResult,
|
|
24
25
|
CentralValidator,
|
|
25
26
|
ValidationConfig,
|
|
26
|
-
CentralValidationResult,
|
|
27
27
|
)
|
|
28
28
|
|
|
29
29
|
|
|
@@ -15,7 +15,7 @@ import re
|
|
|
15
15
|
import subprocess
|
|
16
16
|
from dataclasses import dataclass, field
|
|
17
17
|
from pathlib import Path
|
|
18
|
-
from typing import
|
|
18
|
+
from typing import Dict, List, Optional, Tuple
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
@dataclass
|
|
@@ -160,7 +160,7 @@ class PreCommitValidator:
|
|
|
160
160
|
for tag, locations in tag_locations.items():
|
|
161
161
|
if len(locations) > 1:
|
|
162
162
|
errors.append(ValidationError(
|
|
163
|
-
message=
|
|
163
|
+
message="Duplicate TAG found",
|
|
164
164
|
tag=tag,
|
|
165
165
|
locations=locations
|
|
166
166
|
))
|
|
@@ -220,7 +220,7 @@ class PreCommitValidator:
|
|
|
220
220
|
if domain not in tags_by_type["TEST"]:
|
|
221
221
|
for filepath, line_num in locations:
|
|
222
222
|
warnings.append(ValidationWarning(
|
|
223
|
-
message=
|
|
223
|
+
message="CODE TAG without corresponding TEST",
|
|
224
224
|
tag=f"@CODE:{domain}",
|
|
225
225
|
location=(filepath, line_num)
|
|
226
226
|
))
|
|
@@ -230,7 +230,7 @@ class PreCommitValidator:
|
|
|
230
230
|
if domain not in tags_by_type["CODE"]:
|
|
231
231
|
for filepath, line_num in locations:
|
|
232
232
|
warnings.append(ValidationWarning(
|
|
233
|
-
message=
|
|
233
|
+
message="TEST TAG without corresponding CODE",
|
|
234
234
|
tag=f"@TEST:{domain}",
|
|
235
235
|
location=(filepath, line_num)
|
|
236
236
|
))
|
|
@@ -302,8 +302,8 @@ class PreCommitValidator:
|
|
|
302
302
|
|
|
303
303
|
def main():
|
|
304
304
|
"""CLI entry point for pre-commit hook"""
|
|
305
|
-
import sys
|
|
306
305
|
import argparse
|
|
306
|
+
import sys
|
|
307
307
|
|
|
308
308
|
parser = argparse.ArgumentParser(
|
|
309
309
|
description="Validate TAG annotations in git staged files"
|
|
@@ -23,14 +23,12 @@ Usage:
|
|
|
23
23
|
print(f"Generated reports: {result.inventory_path}, {result.matrix_path}")
|
|
24
24
|
"""
|
|
25
25
|
|
|
26
|
-
import re
|
|
27
26
|
import json
|
|
27
|
+
import re
|
|
28
28
|
from dataclasses import dataclass, field
|
|
29
|
-
from pathlib import Path
|
|
30
|
-
from typing import List, Dict, Set, Tuple, Optional, Any
|
|
31
29
|
from datetime import datetime
|
|
32
|
-
import
|
|
33
|
-
|
|
30
|
+
from pathlib import Path
|
|
31
|
+
from typing import Dict, List, Set
|
|
34
32
|
|
|
35
33
|
# ============================================================================
|
|
36
34
|
# Data Models
|
|
@@ -22,14 +22,14 @@ Usage:
|
|
|
22
22
|
report = validator.create_report(result, format="json")
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
|
-
import re
|
|
26
25
|
import json
|
|
26
|
+
import re
|
|
27
27
|
import time
|
|
28
28
|
from abc import ABC, abstractmethod
|
|
29
29
|
from dataclasses import dataclass, field
|
|
30
|
-
from pathlib import Path
|
|
31
|
-
from typing import List, Dict, Set, Tuple, Optional, Any
|
|
32
30
|
from datetime import datetime
|
|
31
|
+
from pathlib import Path
|
|
32
|
+
from typing import Any, Dict, List, Optional, Set, Tuple
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
@dataclass
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: moai-adk
|
|
3
|
-
Version: 0.8.
|
|
3
|
+
Version: 0.8.3
|
|
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
|
|
@@ -255,7 +255,7 @@ my-project/
|
|
|
255
255
|
│ │ ├── 1-plan.md # SPEC authoring
|
|
256
256
|
│ │ ├── 2-run.md # TDD implementation
|
|
257
257
|
│ │ └── 3-sync.md # Documentation sync
|
|
258
|
-
│ ├── skills/ #
|
|
258
|
+
│ ├── skills/ # 55+ Claude Skills
|
|
259
259
|
│ │ ├── moai-foundation-* # 6 Foundation tier
|
|
260
260
|
│ │ ├── moai-essentials-* # 4 Essentials tier
|
|
261
261
|
│ │ ├── moai-alfred-* # 7 Alfred tier
|
|
@@ -617,7 +617,7 @@ uv tool update
|
|
|
617
617
|
|
|
618
618
|
```bash
|
|
619
619
|
# Reinstall specific version (e.g., 0.4.2)
|
|
620
|
-
uv tool install moai-adk
|
|
620
|
+
uv tool install moai-adk
|
|
621
621
|
```
|
|
622
622
|
|
|
623
623
|
### Verify After Update
|
|
@@ -1868,7 +1868,7 @@ Hooks are **event-driven** scripts that trigger automatically at specific points
|
|
|
1868
1868
|
- Editing critical files (`CLAUDE.md`, `config.json`)
|
|
1869
1869
|
- Mass edits (10+ files at once via MultiEdit)
|
|
1870
1870
|
|
|
1871
|
-
**TAG Guard
|
|
1871
|
+
**TAG Guard**:
|
|
1872
1872
|
Automatically detects missing @TAG annotations in changed files:
|
|
1873
1873
|
|
|
1874
1874
|
- Scans staged, modified, and untracked files
|
|
@@ -1999,15 +1999,16 @@ If you need to temporarily disable hooks, edit `.claude/settings.json`:
|
|
|
1999
1999
|
|
|
2000
2000
|
| Version | Key Features | Date |
|
|
2001
2001
|
| ----------- | ------------------------------------------------------------------------------------------------ | ---------- |
|
|
2002
|
+
| **v0.8.2** | 📖 EARS terminology update: "Constraints" → "Unwanted Behaviors" for clarity | 2025-10-29 |
|
|
2003
|
+
| **v0.8.1** | 🔄 Command rename: `/alfred:9-help` → `/alfred:9-feedback` + User feedback workflow improvements | 2025-10-28 |
|
|
2004
|
+
| **v0.8.0** | 🏷️ @DOC TAG auto-generation system + SessionStart version check enhancement | 2025-10-27 |
|
|
2005
|
+
| **v0.7.0** | 🌍 Complete language localization system (English, Korean, Japanese, Chinese, Spanish) | 2025-10-26 |
|
|
2006
|
+
| **v0.6.3** | ⚡ 3-Stage update workflow: 70-80% performance improvement via parallel operations | 2025-10-25 |
|
|
2007
|
+
| **v0.6.0** | 🏗️ Major architecture refactor + Enhanced SPEC metadata structure (7 required + 9 optional) | 2025-10-24 |
|
|
2002
2008
|
| **v0.5.7** | 🎯 SPEC → GitHub Issue automation + CodeRabbit integration + Auto PR comments | 2025-10-27 |
|
|
2003
2009
|
| **v0.4.11** | ✨ TAG Guard system + CLAUDE.md formatting improvements + Code cleanup | 2025-10-23 |
|
|
2004
|
-
| **v0.4.10** | 🔧 Hook robustness improvements + Bilingual documentation + Template language config | 2025-10-23 |
|
|
2005
|
-
| **v0.4.9** | 🎯 Hook JSON schema validation fixes + Comprehensive tests (468/468 passing) | 2025-10-23 |
|
|
2006
|
-
| **v0.4.8** | 🚀 Release automation + PyPI deployment + Skills refinement | 2025-10-23 |
|
|
2007
|
-
| **v0.4.7** | 📖 Korean language optimization + SPEC-First principle documentation | 2025-10-22 |
|
|
2008
|
-
| **v0.4.6** | 🎉 Complete Skills v2.0 (100% Production-Ready) + 85,000 lines official docs + 300+ TDD examples | 2025-10-22 |
|
|
2009
2010
|
|
|
2010
|
-
> 📦 **Install Now**: `uv tool install moai-adk
|
|
2011
|
+
> 📦 **Install Now**: `uv tool install moai-adk` or `pip install moai-adk`
|
|
2011
2012
|
|
|
2012
2013
|
---
|
|
2013
2014
|
|
|
@@ -2015,7 +2016,7 @@ If you need to temporarily disable hooks, edit `.claude/settings.json`:
|
|
|
2015
2016
|
|
|
2016
2017
|
| Purpose | Resource |
|
|
2017
2018
|
| ------------------------- | --------------------------------------------------------------- |
|
|
2018
|
-
| Skills detailed structure | `.claude/skills/` directory (
|
|
2019
|
+
| Skills detailed structure | `.claude/skills/` directory (55+ Skills) |
|
|
2019
2020
|
| Sub-agent details | `.claude/agents/alfred/` directory (12 agents) |
|
|
2020
2021
|
| Workflow guide | `.claude/commands/alfred/` (4 commands: 0-project ~ 3-sync) |
|
|
2021
2022
|
| Documentation | Coming soon (see `.moai/`, `.claude/`, `docs/` in your project) |
|
|
@@ -2029,8 +2030,8 @@ If you need to temporarily disable hooks, edit `.claude/settings.json`:
|
|
|
2029
2030
|
| ------------------------ | -------------------------------------------------------- |
|
|
2030
2031
|
| **GitHub Repository** | https://github.com/modu-ai/moai-adk |
|
|
2031
2032
|
| **Issues & Discussions** | https://github.com/modu-ai/moai-adk/issues |
|
|
2032
|
-
| **PyPI Package** | https://pypi.org/project/moai-adk/
|
|
2033
|
-
| **Latest Release** | https://github.com/modu-ai/moai-adk/releases
|
|
2033
|
+
| **PyPI Package** | https://pypi.org/project/moai-adk/ |
|
|
2034
|
+
| **Latest Release** | https://github.com/modu-ai/moai-adk/releases |
|
|
2034
2035
|
| **Documentation** | See `.moai/`, `.claude/`, `docs/` within project |
|
|
2035
2036
|
|
|
2036
2037
|
---
|
|
@@ -2039,7 +2040,7 @@ If you need to temporarily disable hooks, edit `.claude/settings.json`:
|
|
|
2039
2040
|
|
|
2040
2041
|
> **"No CODE without SPEC"**
|
|
2041
2042
|
|
|
2042
|
-
MoAI-ADK is not simply a code generation tool. Alfred SuperAgent with its 19-member team and
|
|
2043
|
+
MoAI-ADK is not simply a code generation tool. Alfred SuperAgent with its 19-member team and 55+ Claude Skills together guarantee:
|
|
2043
2044
|
|
|
2044
2045
|
- ✅ **SPEC → TEST (TDD) → CODE → DOCS consistency**
|
|
2045
2046
|
- ✅ **Complete history tracking with @TAG system**
|
|
@@ -11,10 +11,10 @@ moai_adk/cli/commands/update.py,sha256=yy6fZA2ySJS6Nsr6wBI63eEYAzGXBoRMhb1ZKEwi5
|
|
|
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
|
|
14
|
-
moai_adk/core/issue_creator.py,sha256=
|
|
14
|
+
moai_adk/core/issue_creator.py,sha256=sKhZzXMTc5_8_CIEk7iYBSaCYfq8CawpWMgJjYFrpRE,9547
|
|
15
15
|
moai_adk/core/template_engine.py,sha256=08--7FE4VWQxIBOTooi9irfe2UOjBQPRWOfOtY0RhJE,9023
|
|
16
16
|
moai_adk/core/config/__init__.py,sha256=30Qx-GSN1LLI_9ngNqQ6A6d40J92xK10AQxhKw1-MzU,328
|
|
17
|
-
moai_adk/core/config/migration.py,sha256
|
|
17
|
+
moai_adk/core/config/migration.py,sha256=-rPC1C9EGcBvlCXnQoBOk5ktw7AXSJPX0TXsujr4r5A,3562
|
|
18
18
|
moai_adk/core/diagnostics/__init__.py,sha256=aF-qC2CW0wxZDpxnlh-TILYs3kqwOIj2EjXYEXY-2j8,387
|
|
19
19
|
moai_adk/core/diagnostics/slash_commands.py,sha256=cEH96M5RLxa1JLyoeoRqziBMzAbnN30j04YjNjxM7Ro,4682
|
|
20
20
|
moai_adk/core/git/__init__.py,sha256=Kpq2yU5X5bBBUV8ySYIB1_vMPvfdFS6hTYx2Ue-CoeQ,697
|
|
@@ -35,17 +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=
|
|
39
|
-
moai_adk/core/tags/ci_validator.py,sha256=
|
|
40
|
-
moai_adk/core/tags/cli.py,sha256=
|
|
38
|
+
moai_adk/core/tags/__init__.py,sha256=nmZKs4eblrOzPg8JOHNkoaRzhPcUDGmMwvnUcyMZwGY,1985
|
|
39
|
+
moai_adk/core/tags/ci_validator.py,sha256=PScVKPROu12mnu02nFzi66i-1pdbbnoitGzheI1COV8,13679
|
|
40
|
+
moai_adk/core/tags/cli.py,sha256=1VWRT1k62FS5Yyzllat-nyLR3jqvGdyDkj1uOwPfavA,7344
|
|
41
41
|
moai_adk/core/tags/generator.py,sha256=xVopAAez8K5pNSHWZOGZXEWYIre53lTtfHUlR7i-vNE,3407
|
|
42
42
|
moai_adk/core/tags/inserter.py,sha256=_1lsMTyyrjGidAKqi4y925msHxK6gHLAsu3O8-O2vFM,2823
|
|
43
43
|
moai_adk/core/tags/mapper.py,sha256=ldcfMFzsk-ESKpXAptYydqx2NZ951utqKOXZVTHMeIE,3955
|
|
44
44
|
moai_adk/core/tags/parser.py,sha256=3LpNcL47xT3u4b3Fdf9wYnltChDrNAEV4EtnHqLN1MA,2098
|
|
45
|
-
moai_adk/core/tags/pre_commit_validator.py,sha256=
|
|
46
|
-
moai_adk/core/tags/reporter.py,sha256=
|
|
45
|
+
moai_adk/core/tags/pre_commit_validator.py,sha256=9lFC5bNv1vQbfRusxNdHBl9FBbHDPdyipF5CITBSHMs,10282
|
|
46
|
+
moai_adk/core/tags/reporter.py,sha256=TQEyM2F_4cGreYyI0iJgDTqoR0Y8XL4M0oG4ZX1LBgc,29362
|
|
47
47
|
moai_adk/core/tags/tags.py,sha256=Fylt030vrDqhSWivwRbxxwu_uQhilei0SFk_xVzy9UI,4248
|
|
48
|
-
moai_adk/core/tags/validator.py,sha256=
|
|
48
|
+
moai_adk/core/tags/validator.py,sha256=B3xUDubfyT5RlPM3GLYktfe1EQTEdxOrDhD230_etoA,31138
|
|
49
49
|
moai_adk/core/template/__init__.py,sha256=BB65Zkar2Oywt1_RFtQKIup6HXq20VNQrYqXD_Qp1_g,354
|
|
50
50
|
moai_adk/core/template/backup.py,sha256=44y3QGCKsYqrRPbzkB1xNM9qtpG6kNNMcWR8DnAcPiQ,3228
|
|
51
51
|
moai_adk/core/template/config.py,sha256=ZJU9UKSGF2tkPiwSFReoCkAHGQ0aN2jKmIIQt88x5-o,3532
|
|
@@ -69,9 +69,9 @@ moai_adk/templates/.claude/agents/alfred/tag-agent.md,sha256=oQIPS_Pa-VGiTZn4DH1
|
|
|
69
69
|
moai_adk/templates/.claude/agents/alfred/tdd-implementer.md,sha256=W0PwBgmdOhG_tb3dl-G-nFJtdL_0uLxjkGe1PLtUick,10691
|
|
70
70
|
moai_adk/templates/.claude/agents/alfred/trust-checker.md,sha256=ISdkXhZvwEYCBKVIHYyMGAHInr4ToLf4zVvNSwRVABA,14583
|
|
71
71
|
moai_adk/templates/.claude/commands/alfred/0-project.md,sha256=YFvND5qGRMqYqj9jWOAuv8OABK2eRcAn7cpciqhl92g,46903
|
|
72
|
-
moai_adk/templates/.claude/commands/alfred/1-plan.md,sha256=
|
|
73
|
-
moai_adk/templates/.claude/commands/alfred/2-run.md,sha256=
|
|
74
|
-
moai_adk/templates/.claude/commands/alfred/3-sync.md,sha256=
|
|
72
|
+
moai_adk/templates/.claude/commands/alfred/1-plan.md,sha256=NROGRNbxXd-0kXX_eW_7m6mSfUNkv6sfw30jJEQI3Zc,29056
|
|
73
|
+
moai_adk/templates/.claude/commands/alfred/2-run.md,sha256=s8zU2146DXupi3vJHoTDZB3YPm0v1vRnP8p_sPtuIBo,24375
|
|
74
|
+
moai_adk/templates/.claude/commands/alfred/3-sync.md,sha256=Pr9EGFol09l-MLdc2fFSOkpqA7jPHV1KPePqmfkKQgg,26619
|
|
75
75
|
moai_adk/templates/.claude/commands/alfred/9-feedback.md,sha256=VMaKo-ZODHun87uUfiihtHGf8eT4vrEWwxXdQ9RAz3k,3764
|
|
76
76
|
moai_adk/templates/.claude/hooks/alfred/README.md,sha256=LsSMvsxNwdV2CjA2X6Zn_xy73kT7-0Y7G-u_9bLKYlI,10568
|
|
77
77
|
moai_adk/templates/.claude/hooks/alfred/TROUBLESHOOTING.md,sha256=xINO1G3ujccL42JQzExEm-oiY9jHGrXm2YAlxtYkZY4,10753
|
|
@@ -85,13 +85,13 @@ moai_adk/templates/.claude/hooks/alfred/stop__handle_interrupt.py,sha256=0GrMBWO
|
|
|
85
85
|
moai_adk/templates/.claude/hooks/alfred/subagent_stop__handle_subagent_end.py,sha256=YmDOuvWa6OnSowsMitkRovekoJNq65pUPlmiTgQoBnE,2958
|
|
86
86
|
moai_adk/templates/.claude/hooks/alfred/user_prompt__jit_load_docs.py,sha256=AOPc8EmNbKMFsOhk5d7nGZ7aZbm-ZH8MNT0_I1Wv-hE,3585
|
|
87
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=
|
|
88
|
+
moai_adk/templates/.claude/hooks/alfred/core/version_cache.py,sha256=mOxvLtLiZDSCSlq0svECCJYIX0rPpNJOwL1KZjOB5yo,5967
|
|
89
89
|
moai_adk/templates/.claude/hooks/alfred/shared/core/__init__.py,sha256=nx_02kZDVFlKOgxBfFz3nqVrxMkmrkE0x7crJhdjl5E,6377
|
|
90
90
|
moai_adk/templates/.claude/hooks/alfred/shared/core/checkpoint.py,sha256=dsvFDSXQNSQlaQLpvhqFbytGOrOivyovi43Y18EmNeI,8483
|
|
91
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=
|
|
92
|
+
moai_adk/templates/.claude/hooks/alfred/shared/core/project.py,sha256=UPCYBYCmR1sz_gZGTFtGe6YKA3gXPk4ly6rexJ63xpg,24126
|
|
93
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=
|
|
94
|
+
moai_adk/templates/.claude/hooks/alfred/shared/core/version_cache.py,sha256=zt0a6__qsZVI_rfZuPv3JDpVZeUGLWBvYprTjSg_7gM,5965
|
|
95
95
|
moai_adk/templates/.claude/hooks/alfred/shared/handlers/__init__.py,sha256=j5L7nayKt7tnFQOZuO5sWiie815vmbmYJOn2VRiidLY,569
|
|
96
96
|
moai_adk/templates/.claude/hooks/alfred/shared/handlers/notification.py,sha256=8TcEqGlz4EpLf2lpouaIuhVbpKOVeY31KPmIq2snt9U,662
|
|
97
97
|
moai_adk/templates/.claude/hooks/alfred/shared/handlers/session.py,sha256=WkTiwgwce089eUkY1cT7WdXpSqpbmj-IIWTdRd3Ihqk,7278
|
|
@@ -299,21 +299,23 @@ moai_adk/templates/.moai/memory/GITFLOW-PROTECTION-POLICY.md,sha256=tm2ZOmNMvomA
|
|
|
299
299
|
moai_adk/templates/.moai/memory/ISSUE-LABEL-MAPPING.md,sha256=bKzC2v1ZZWyng0eHSj9oFQ9w9xCbadPe9T9IYWub7wM,3824
|
|
300
300
|
moai_adk/templates/.moai/memory/SKILLS-DESCRIPTION-POLICY.md,sha256=uMEFi6uojnpO_MGGtwhakYQzVF2yzVV9ZzfQe5tB0Hk,7823
|
|
301
301
|
moai_adk/templates/.moai/memory/SPEC-METADATA.md,sha256=Ha4ATMxyH2PgQdVbS1fYwVH0PnIkfqk4hfuB5ksMFFk,9702
|
|
302
|
+
moai_adk/templates/.moai/memory/gitflow-protection-policy.md,sha256=tm2ZOmNMvomAhh4_AGTUNjmSsc-eKzo1SGshojx2QL0,6228
|
|
303
|
+
moai_adk/templates/.moai/memory/spec-metadata.md,sha256=Ha4ATMxyH2PgQdVbS1fYwVH0PnIkfqk4hfuB5ksMFFk,9702
|
|
302
304
|
moai_adk/templates/.moai/project/product.md,sha256=IrRSqhu0o5KNfn453DUWoUKzdoO3m6013iYCwaHYCxM,5166
|
|
303
305
|
moai_adk/templates/.moai/project/structure.md,sha256=YWZ4ggmfzveKx8SQGFQWXdDUh5mxOLkEyy5yVdR3Rn0,4791
|
|
304
306
|
moai_adk/templates/.moai/project/tech.md,sha256=REecMv8wOvutt-pQZ5nlGk5YdReTan7AHcKJ2Yes6RM,5758
|
|
305
307
|
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=
|
|
307
|
-
moai_adk/templates/src/moai_adk/core/tags/ci_validator.py,sha256=
|
|
308
|
-
moai_adk/templates/src/moai_adk/core/tags/cli.py,sha256=
|
|
309
|
-
moai_adk/templates/src/moai_adk/core/tags/pre_commit_validator.py,sha256=
|
|
310
|
-
moai_adk/templates/src/moai_adk/core/tags/reporter.py,sha256=
|
|
311
|
-
moai_adk/templates/src/moai_adk/core/tags/validator.py,sha256=
|
|
308
|
+
moai_adk/templates/src/moai_adk/core/tags/__init__.py,sha256=nmZKs4eblrOzPg8JOHNkoaRzhPcUDGmMwvnUcyMZwGY,1985
|
|
309
|
+
moai_adk/templates/src/moai_adk/core/tags/ci_validator.py,sha256=PScVKPROu12mnu02nFzi66i-1pdbbnoitGzheI1COV8,13679
|
|
310
|
+
moai_adk/templates/src/moai_adk/core/tags/cli.py,sha256=1VWRT1k62FS5Yyzllat-nyLR3jqvGdyDkj1uOwPfavA,7344
|
|
311
|
+
moai_adk/templates/src/moai_adk/core/tags/pre_commit_validator.py,sha256=9lFC5bNv1vQbfRusxNdHBl9FBbHDPdyipF5CITBSHMs,10282
|
|
312
|
+
moai_adk/templates/src/moai_adk/core/tags/reporter.py,sha256=TQEyM2F_4cGreYyI0iJgDTqoR0Y8XL4M0oG4ZX1LBgc,29362
|
|
313
|
+
moai_adk/templates/src/moai_adk/core/tags/validator.py,sha256=B3xUDubfyT5RlPM3GLYktfe1EQTEdxOrDhD230_etoA,31138
|
|
312
314
|
moai_adk/utils/__init__.py,sha256=VnVfQzzKHvKw4bNdEw5xdscnRQYFrnr-v_TOBr3naPs,225
|
|
313
315
|
moai_adk/utils/banner.py,sha256=znppKd5yo-tTqgyhgPVJjstrTrfcy_v3X1_RFQxP4Fk,1878
|
|
314
316
|
moai_adk/utils/logger.py,sha256=g-m07PGKjK2bKRIInfSn6m-024Bedai-pV_WjZKDeu8,5064
|
|
315
|
-
moai_adk-0.8.
|
|
316
|
-
moai_adk-0.8.
|
|
317
|
-
moai_adk-0.8.
|
|
318
|
-
moai_adk-0.8.
|
|
319
|
-
moai_adk-0.8.
|
|
317
|
+
moai_adk-0.8.3.dist-info/METADATA,sha256=UdloYNmPnY27XNWLnefNIyGgKMBAowvby2HGy6ZOioM,81211
|
|
318
|
+
moai_adk-0.8.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
319
|
+
moai_adk-0.8.3.dist-info/entry_points.txt,sha256=P9no1794UipqH72LP-ltdyfVd_MeB1WKJY_6-JQgV3U,52
|
|
320
|
+
moai_adk-0.8.3.dist-info/licenses/LICENSE,sha256=M1M2b07fWcSWRM6_P3wbZKndZvyfHyYk_Wu9bS8F7o8,1069
|
|
321
|
+
moai_adk-0.8.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|