aiel-cli 1.2.1__tar.gz → 1.2.2__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.
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/PKG-INFO +1 -1
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/repo.py +12 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/.aiel/index.json +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/.aiel/integrations.json +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/.aiel/state.json +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/.coverage +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/.github/workflows/publish.yml +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/LICENSE +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/README.md +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/index.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/pyproject.toml +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/__init__.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/auth/api.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/auth/credentials.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/cli.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/cli_utils.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/.old/auth_doc.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/.old/config copy.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/.old/files copy.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/.old/info copy.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/.old/repo copy.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/_index.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/auth.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/config.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/files.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/info.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/integrations.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/config.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/context/user_context.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/data_plane.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/errors.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/integration_plane.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/roadmap.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/utilities.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/utils/__init__.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/utils/format_integrations.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/tests/data/test_profile.json +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/tests/test_cli_routes.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/tests/test_internal_modules.py +0 -0
- {aiel_cli-1.2.1 → aiel_cli-1.2.2}/workflows/publish.yml +0 -0
|
@@ -695,6 +695,18 @@ def pull():
|
|
|
695
695
|
"""
|
|
696
696
|
ensure_repo()
|
|
697
697
|
_print_repo_context("pull")
|
|
698
|
+
ignore_path = Path(".aielignore")
|
|
699
|
+
if not ignore_path.exists():
|
|
700
|
+
ignore_path.write_text(
|
|
701
|
+
"# AIEL ignore file\n"
|
|
702
|
+
".aiel/\n"
|
|
703
|
+
".venv/\n"
|
|
704
|
+
"__pycache__/\n"
|
|
705
|
+
".pytest_cache/\n"
|
|
706
|
+
".mypy_cache/\n"
|
|
707
|
+
".DS_Store\n",
|
|
708
|
+
encoding="utf-8",
|
|
709
|
+
)
|
|
698
710
|
with httpx.Client(timeout=30.0) as client:
|
|
699
711
|
manifest = _dp_get_manifest(client)
|
|
700
712
|
m = _manifest_to_map(manifest)
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|