get_context.py 320 B

12345678910111213141516
  1. #!/usr/bin/env python3
  2. """
  3. Get Session Context for AI Agent.
  4. Usage:
  5. python3 get_context.py Output context in text format
  6. python3 get_context.py --json Output context in JSON format
  7. """
  8. from __future__ import annotations
  9. from common.git_context import main
  10. if __name__ == "__main__":
  11. main()