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.
Files changed (40) hide show
  1. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/PKG-INFO +1 -1
  2. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/repo.py +12 -0
  3. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/.aiel/index.json +0 -0
  4. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/.aiel/integrations.json +0 -0
  5. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/.aiel/state.json +0 -0
  6. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/.coverage +0 -0
  7. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/.github/workflows/publish.yml +0 -0
  8. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/LICENSE +0 -0
  9. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/README.md +0 -0
  10. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/index.py +0 -0
  11. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/pyproject.toml +0 -0
  12. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/__init__.py +0 -0
  13. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/auth/api.py +0 -0
  14. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/auth/credentials.py +0 -0
  15. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/cli.py +0 -0
  16. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/cli_utils.py +0 -0
  17. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/.old/auth_doc.py +0 -0
  18. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/.old/config copy.py +0 -0
  19. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/.old/files copy.py +0 -0
  20. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/.old/info copy.py +0 -0
  21. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/.old/repo copy.py +0 -0
  22. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/_index.py +0 -0
  23. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/auth.py +0 -0
  24. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/config.py +0 -0
  25. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/files.py +0 -0
  26. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/info.py +0 -0
  27. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/commands/integrations.py +0 -0
  28. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/config.py +0 -0
  29. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/context/user_context.py +0 -0
  30. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/data_plane.py +0 -0
  31. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/errors.py +0 -0
  32. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/integration_plane.py +0 -0
  33. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/roadmap.py +0 -0
  34. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/utilities.py +0 -0
  35. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/utils/__init__.py +0 -0
  36. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/src/aiel/utils/format_integrations.py +0 -0
  37. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/tests/data/test_profile.json +0 -0
  38. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/tests/test_cli_routes.py +0 -0
  39. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/tests/test_internal_modules.py +0 -0
  40. {aiel_cli-1.2.1 → aiel_cli-1.2.2}/workflows/publish.yml +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiel-cli
3
- Version: 1.2.1
3
+ Version: 1.2.2
4
4
  Summary: AI Execution Layer CLI
5
5
  Author-email: Aldenir Flauzino <aldenirsrv@gmail.com>
6
6
  License: ```text
@@ -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