moai-adk 0.3.10__tar.gz → 0.3.11__tar.gz
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-0.3.10 → moai_adk-0.3.11}/PKG-INFO +1 -1
- {moai_adk-0.3.10 → moai_adk-0.3.11}/pyproject.toml +1 -1
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/__init__.py +1 -1
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/__main__.py +1 -3
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/cli/commands/__init__.py +8 -4
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/cli/commands/init.py +0 -1
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/template/processor.py +0 -25
- moai_adk-0.3.10/src/moai_adk/cli/commands/restore.py +0 -77
- {moai_adk-0.3.10 → moai_adk-0.3.11}/.gitignore +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/LICENSE +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/README.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/cli/__init__.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/cli/commands/backup.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/cli/commands/doctor.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/cli/commands/status.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/cli/commands/update.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/cli/main.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/cli/prompts/__init__.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/cli/prompts/init_prompts.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/__init__.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/git/__init__.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/git/branch.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/git/branch_manager.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/git/checkpoint.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/git/commit.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/git/event_detector.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/git/manager.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/project/__init__.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/project/backup_utils.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/project/checker.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/project/detector.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/project/initializer.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/project/phase_executor.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/project/validator.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/quality/__init__.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/quality/trust_checker.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/quality/validators/__init__.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/quality/validators/base_validator.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/template/__init__.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/template/backup.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/template/config.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/template/languages.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/core/template/merger.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/cc-manager.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/debug-helper.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/doc-syncer.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/git-manager.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/implementation-planner.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/project-manager.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/quality-gate.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/spec-builder.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/tag-agent.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/tdd-implementer.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/trust-checker.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/commands/alfred/0-project.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/commands/alfred/1-spec.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/commands/alfred/2-build.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/commands/alfred/3-sync.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/README.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/alfred_hooks.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/core/__init__.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/core/checkpoint.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/core/context.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/core/project.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/handlers/__init__.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/handlers/notification.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/handlers/session.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/handlers/tool.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/handlers/user.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/output-styles/alfred/agentic-coding.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/output-styles/alfred/moai-adk-learning.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/output-styles/alfred/study-with-alfred.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/settings.json +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.github/workflows/moai-gitflow.yml +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.gitignore +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.moai/config.json +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.moai/hooks/pre-push.sample +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.moai/memory/development-guide.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.moai/memory/gitflow-protection-policy.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.moai/memory/spec-metadata.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.moai/project/product.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.moai/project/structure.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.moai/project/tech.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/CLAUDE.md +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/__init__.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/utils/__init__.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/utils/banner.py +0 -0
- {moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/utils/logger.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: moai-adk
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.11
|
|
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
|
|
@@ -6,7 +6,7 @@ Implements the CLI entry point:
|
|
|
6
6
|
- Rich console terminal output
|
|
7
7
|
- ASCII logo rendering
|
|
8
8
|
- --version and --help options
|
|
9
|
-
-
|
|
9
|
+
- Five core commands: init, doctor, status, backup, update
|
|
10
10
|
"""
|
|
11
11
|
|
|
12
12
|
import sys
|
|
@@ -19,7 +19,6 @@ from moai_adk import __version__
|
|
|
19
19
|
from moai_adk.cli.commands.backup import backup
|
|
20
20
|
from moai_adk.cli.commands.doctor import doctor
|
|
21
21
|
from moai_adk.cli.commands.init import init
|
|
22
|
-
from moai_adk.cli.commands.restore import restore
|
|
23
22
|
from moai_adk.cli.commands.status import status
|
|
24
23
|
from moai_adk.cli.commands.update import update
|
|
25
24
|
|
|
@@ -58,7 +57,6 @@ def cli(ctx: click.Context) -> None:
|
|
|
58
57
|
cli.add_command(init)
|
|
59
58
|
cli.add_command(doctor)
|
|
60
59
|
cli.add_command(status)
|
|
61
|
-
cli.add_command(restore)
|
|
62
60
|
cli.add_command(backup)
|
|
63
61
|
cli.add_command(update)
|
|
64
62
|
|
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
# @CODE:CLI-001 | SPEC: SPEC-CLI-001.md | TEST: tests/unit/test_cli_commands.py
|
|
2
2
|
"""CLI command module
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
Core commands:
|
|
5
5
|
- init: initialize the project
|
|
6
6
|
- doctor: run system diagnostics
|
|
7
7
|
- status: show project status
|
|
8
|
-
-
|
|
8
|
+
- update: update templates to latest version
|
|
9
|
+
- backup: create project backups
|
|
10
|
+
|
|
11
|
+
Note: restore functionality is handled by checkpoint system in core.git.checkpoint
|
|
9
12
|
"""
|
|
10
13
|
|
|
14
|
+
from moai_adk.cli.commands.backup import backup
|
|
11
15
|
from moai_adk.cli.commands.doctor import doctor
|
|
12
16
|
from moai_adk.cli.commands.init import init
|
|
13
|
-
from moai_adk.cli.commands.restore import restore
|
|
14
17
|
from moai_adk.cli.commands.status import status
|
|
18
|
+
from moai_adk.cli.commands.update import update
|
|
15
19
|
|
|
16
|
-
__all__ = ["init", "doctor", "status", "
|
|
20
|
+
__all__ = ["init", "doctor", "status", "update", "backup"]
|
|
@@ -15,7 +15,6 @@ from typing import Sequence
|
|
|
15
15
|
import click
|
|
16
16
|
from rich.console import Console
|
|
17
17
|
from rich.progress import BarColumn, Progress, SpinnerColumn, TaskID, TextColumn
|
|
18
|
-
from rich.prompt import Confirm
|
|
19
18
|
|
|
20
19
|
from moai_adk import __version__
|
|
21
20
|
from moai_adk.cli.prompts import prompt_project_setup
|
|
@@ -305,31 +305,6 @@ class TemplateProcessor:
|
|
|
305
305
|
if not silent:
|
|
306
306
|
console.print(" ✅ .claude/ copy complete (variables substituted)")
|
|
307
307
|
|
|
308
|
-
def _backup_alfred_folder(self, folder_path: Path, folder_name: str) -> None:
|
|
309
|
-
"""Backup an Alfred folder before overwriting (safety measure).
|
|
310
|
-
|
|
311
|
-
Args:
|
|
312
|
-
folder_path: Path to the folder to backup.
|
|
313
|
-
folder_name: Name of the folder (e.g., "hooks/alfred").
|
|
314
|
-
"""
|
|
315
|
-
if not folder_path.exists():
|
|
316
|
-
return
|
|
317
|
-
|
|
318
|
-
# Create backup directory in .moai-backups/.claude-backups/{timestamp}/
|
|
319
|
-
backup_base = self.target_path / ".moai-backups" / ".claude-backups"
|
|
320
|
-
backup_base.mkdir(parents=True, exist_ok=True)
|
|
321
|
-
|
|
322
|
-
# Generate timestamp-based backup directory
|
|
323
|
-
from moai_adk.core.project.backup_utils import generate_backup_dir_name
|
|
324
|
-
|
|
325
|
-
timestamp = generate_backup_dir_name()
|
|
326
|
-
backup_dir = backup_base / timestamp
|
|
327
|
-
|
|
328
|
-
# Backup this specific folder
|
|
329
|
-
backup_folder = backup_dir / folder_name
|
|
330
|
-
backup_folder.parent.mkdir(parents=True, exist_ok=True)
|
|
331
|
-
shutil.copytree(folder_path, backup_folder)
|
|
332
|
-
|
|
333
308
|
def _copy_moai(self, silent: bool = False) -> None:
|
|
334
309
|
""".moai/ directory copy with variable substitution (excludes protected paths)."""
|
|
335
310
|
src = self.template_root / ".moai"
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
# @CODE:CLI-001 | SPEC: SPEC-CLI-001.md | TEST: tests/unit/test_cli_commands.py
|
|
2
|
-
"""MoAI-ADK restore command
|
|
3
|
-
|
|
4
|
-
Backup restore command:
|
|
5
|
-
- Locate backups in .moai-backups/{timestamp}/ directory
|
|
6
|
-
- Restore the specified timestamp or the latest backup
|
|
7
|
-
- Confirm before performing the restore
|
|
8
|
-
"""
|
|
9
|
-
|
|
10
|
-
from pathlib import Path
|
|
11
|
-
|
|
12
|
-
import click
|
|
13
|
-
from rich.console import Console
|
|
14
|
-
|
|
15
|
-
console = Console()
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
@click.command()
|
|
19
|
-
@click.option(
|
|
20
|
-
"--timestamp",
|
|
21
|
-
help="Specific backup timestamp to restore (format: YYYY-MM-DD-HHMMSS)",
|
|
22
|
-
)
|
|
23
|
-
def restore(timestamp: str | None) -> None:
|
|
24
|
-
"""Restore from backup
|
|
25
|
-
|
|
26
|
-
Args:
|
|
27
|
-
timestamp: Optional specific backup timestamp
|
|
28
|
-
|
|
29
|
-
Examples:
|
|
30
|
-
python -m moai_adk restore # Restore from latest backup
|
|
31
|
-
python -m moai_adk restore --timestamp 2025-10-13-120000 # Restore specific backup
|
|
32
|
-
"""
|
|
33
|
-
try:
|
|
34
|
-
project_root = Path.cwd()
|
|
35
|
-
backup_dir = project_root / ".moai-backups"
|
|
36
|
-
|
|
37
|
-
# Find all timestamp directories in .moai-backups/
|
|
38
|
-
if not backup_dir.exists():
|
|
39
|
-
console.print("[yellow]⚠ No backup directory found[/yellow]")
|
|
40
|
-
console.print("[dim]Backups are stored in .moai-backups/{timestamp}/[/dim]")
|
|
41
|
-
raise click.Abort()
|
|
42
|
-
|
|
43
|
-
backup_dirs = sorted(
|
|
44
|
-
[d for d in backup_dir.iterdir() if d.is_dir()],
|
|
45
|
-
key=lambda x: x.name,
|
|
46
|
-
reverse=True
|
|
47
|
-
)
|
|
48
|
-
|
|
49
|
-
if not backup_dirs:
|
|
50
|
-
console.print("[yellow]⚠ No backup directories found[/yellow]")
|
|
51
|
-
console.print("[dim]Backups are stored in .moai-backups/{timestamp}/[/dim]")
|
|
52
|
-
raise click.Abort()
|
|
53
|
-
|
|
54
|
-
# When a timestamp is provided, find the matching backup
|
|
55
|
-
if timestamp:
|
|
56
|
-
console.print(f"[cyan]Restoring from {timestamp}...[/cyan]")
|
|
57
|
-
matching = [d for d in backup_dirs if timestamp in d.name]
|
|
58
|
-
if not matching:
|
|
59
|
-
console.print(f"[red]✗ Backup not found for timestamp: {timestamp}[/red]")
|
|
60
|
-
raise click.Abort()
|
|
61
|
-
backup_path = matching[0]
|
|
62
|
-
else:
|
|
63
|
-
console.print("[cyan]Restoring from latest backup...[/cyan]")
|
|
64
|
-
backup_path = backup_dirs[0]
|
|
65
|
-
|
|
66
|
-
# Placeholder for the future restore implementation
|
|
67
|
-
console.print(f"[dim] └─ Backup: {backup_path.name}[/dim]")
|
|
68
|
-
console.print("[green]✓ Restore completed[/green]")
|
|
69
|
-
|
|
70
|
-
console.print("\n[yellow]Note:[/yellow] Restore functionality is not yet implemented")
|
|
71
|
-
console.print("[dim]This will be added in a future release[/dim]")
|
|
72
|
-
|
|
73
|
-
except click.Abort:
|
|
74
|
-
raise
|
|
75
|
-
except Exception as e:
|
|
76
|
-
console.print(f"[red]✗ Restore failed: {e}[/red]")
|
|
77
|
-
raise
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/cc-manager.md
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/debug-helper.md
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/doc-syncer.md
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/git-manager.md
RENAMED
|
File without changes
|
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/project-manager.md
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/quality-gate.md
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/spec-builder.md
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/tag-agent.md
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/tdd-implementer.md
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/agents/alfred/trust-checker.md
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/commands/alfred/0-project.md
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/commands/alfred/1-spec.md
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/commands/alfred/2-build.md
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/commands/alfred/3-sync.md
RENAMED
|
File without changes
|
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/alfred_hooks.py
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/core/__init__.py
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/core/checkpoint.py
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/core/context.py
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/core/project.py
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/handlers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/handlers/session.py
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/handlers/tool.py
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.claude/hooks/alfred/handlers/user.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.github/workflows/moai-gitflow.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.moai/memory/development-guide.md
RENAMED
|
File without changes
|
{moai_adk-0.3.10 → moai_adk-0.3.11}/src/moai_adk/templates/.moai/memory/gitflow-protection-policy.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|