CHANGELOG.md
LICENSE
MANIFEST.in
NOTICE
README.md
pyproject.toml
docs/commands/README.md
docs/commands/bench.md
docs/commands/config.md
docs/commands/cost.md
docs/commands/diff.md
docs/commands/doctor.md
docs/commands/export.md
docs/commands/restore.md
docs/commands/share.md
docs/commands/stats.md
docs/commands/template.md
src/miracle_claw_extras.egg-info/PKG-INFO
src/miracle_claw_extras.egg-info/SOURCES.txt
src/miracle_claw_extras.egg-info/dependency_links.txt
src/miracle_claw_extras.egg-info/entry_points.txt
src/miracle_claw_extras.egg-info/requires.txt
src/miracle_claw_extras.egg-info/top_level.txt
src/mlg_extras/__init__.py
src/mlg_extras/cli.py
src/mlg_extras/py.typed
src/mlg_extras/_core/__init__.py
src/mlg_extras/_core/checks.py
src/mlg_extras/_core/click_utils.py
src/mlg_extras/_core/config.py
src/mlg_extras/_core/cost.py
src/mlg_extras/_core/diff.py
src/mlg_extras/_core/errors.py
src/mlg_extras/_core/export.py
src/mlg_extras/_core/history.py
src/mlg_extras/_core/output.py
src/mlg_extras/_core/paths.py
src/mlg_extras/_core/restore.py
src/mlg_extras/_core/share.py
src/mlg_extras/_core/stats.py
src/mlg_extras/_core/template.py
src/mlg_extras/_core/version.py
src/mlg_extras/commands/__init__.py
src/mlg_extras/commands/bench.py
src/mlg_extras/commands/config.py
src/mlg_extras/commands/cost.py
src/mlg_extras/commands/diff.py
src/mlg_extras/commands/doctor.py
src/mlg_extras/commands/export.py
src/mlg_extras/commands/restore.py
src/mlg_extras/commands/share.py
src/mlg_extras/commands/stats.py
src/mlg_extras/commands/template.py
src/mlg_extras/templates/__init__.py
src/mlg_extras/templates/mlg-skill/SKILL.md
src/mlg_extras/templates/mlg-skill/template.yaml
src/mlg_extras/templates/mlg-skill/scripts/main.py
src/mlg_extras/templates/mlg-skill/scripts/requirements.txt
src/mlg_extras/templates/mlg-skill/scripts/run.sh
src/mlg_extras/templates/python-api/.gitignore
src/mlg_extras/templates/python-api/Dockerfile
src/mlg_extras/templates/python-api/README.md
src/mlg_extras/templates/python-api/docker-compose.yml
src/mlg_extras/templates/python-api/pyproject.toml
src/mlg_extras/templates/python-api/template.yaml
src/mlg_extras/templates/python-api/src/$package_name/__init__.py
src/mlg_extras/templates/python-api/src/$package_name/config.py
src/mlg_extras/templates/python-api/src/$package_name/main.py
src/mlg_extras/templates/python-api/src/$package_name/api/__init__.py
src/mlg_extras/templates/python-api/src/$package_name/api/v1/__init__.py
src/mlg_extras/templates/python-api/src/$package_name/api/v1/items.py
src/mlg_extras/templates/python-api/tests/__init__.py
src/mlg_extras/templates/python-api/tests/conftest.py
src/mlg_extras/templates/python-api/tests/test_health.py
src/mlg_extras/templates/python-cli/.gitignore
src/mlg_extras/templates/python-cli/LICENSE
src/mlg_extras/templates/python-cli/README.md
src/mlg_extras/templates/python-cli/pyproject.toml
src/mlg_extras/templates/python-cli/template.yaml
src/mlg_extras/templates/python-cli/docs/index.md
src/mlg_extras/templates/python-cli/src/$package_name/__init__.py
src/mlg_extras/templates/python-cli/src/$package_name/cli.py
src/mlg_extras/templates/python-cli/tests/__init__.py
src/mlg_extras/templates/python-cli/tests/test_hello.py
src/mlg_extras/templates/tauri-desktop/.gitignore
src/mlg_extras/templates/tauri-desktop/README.md
src/mlg_extras/templates/tauri-desktop/index.html
src/mlg_extras/templates/tauri-desktop/package.json
src/mlg_extras/templates/tauri-desktop/template.yaml
src/mlg_extras/templates/tauri-desktop/tsconfig.json
src/mlg_extras/templates/tauri-desktop/vite.config.ts
src/mlg_extras/templates/tauri-desktop/src/App.css
src/mlg_extras/templates/tauri-desktop/src/App.tsx
src/mlg_extras/templates/tauri-desktop/src/index.css
src/mlg_extras/templates/tauri-desktop/src/main.tsx
src/mlg_extras/templates/tauri-desktop/src-tauri/Cargo.toml
src/mlg_extras/templates/tauri-desktop/src-tauri/build.rs
src/mlg_extras/templates/tauri-desktop/src-tauri/tauri.conf.json
src/mlg_extras/templates/tauri-desktop/src-tauri/capabilities/default.json
src/mlg_extras/templates/tauri-desktop/src-tauri/src/lib.rs
src/mlg_extras/templates/tauri-desktop/src-tauri/src/main.rs
src/mlg_extras/templates/web-app/.gitignore
src/mlg_extras/templates/web-app/.prettierrc
src/mlg_extras/templates/web-app/README.md
src/mlg_extras/templates/web-app/index.html
src/mlg_extras/templates/web-app/package.json
src/mlg_extras/templates/web-app/template.yaml
src/mlg_extras/templates/web-app/tsconfig.json
src/mlg_extras/templates/web-app/tsconfig.node.json
src/mlg_extras/templates/web-app/vite.config.ts
src/mlg_extras/templates/web-app/src/App.css
src/mlg_extras/templates/web-app/src/App.tsx
src/mlg_extras/templates/web-app/src/index.css
src/mlg_extras/templates/web-app/src/main.tsx
src/mlg_extras/templates/web-app/src/components/Hello.css
src/mlg_extras/templates/web-app/src/components/Hello.tsx
src/mlg_extras/templates/web-app/src/lib/util.ts
src/mlg_extras/templates/web-app/tests/Hello.test.tsx
src/mlg_extras/templates/web-app/tests/setup.ts
src/mlg_extras/templates/web-app/tests/util.test.ts
tests/__init__.py
tests/conftest.py
tests/test_dispatcher_cli.py
tests/test_docs_structure.py
tests/_core/__init__.py
tests/_core/test_checks.py
tests/_core/test_click_utils.py
tests/_core/test_config.py
tests/_core/test_cost.py
tests/_core/test_diff.py
tests/_core/test_errors.py
tests/_core/test_export.py
tests/_core/test_history.py
tests/_core/test_output.py
tests/_core/test_paths.py
tests/_core/test_restore.py
tests/_core/test_share.py
tests/_core/test_stats.py
tests/_core/test_template.py
tests/commands/__init__.py
tests/commands/test_config_cli.py
tests/commands/test_cost_cli.py
tests/commands/test_diff_cli.py
tests/commands/test_doctor_cli.py
tests/commands/test_export_cli.py
tests/commands/test_restore_cli.py
tests/commands/test_share_cli.py
tests/commands/test_stats_cli.py
tests/commands/test_template_cli.py
tests/integration/__init__.py