claude-code-tools 0.2.2__tar.gz → 0.2.3__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 claude-code-tools might be problematic. Click here for more details.

Files changed (22) hide show
  1. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/PKG-INFO +1 -1
  2. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/claude_code_tools/__init__.py +1 -1
  3. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/claude_code_tools/find_claude_session.py +1 -1
  4. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/claude_code_tools/find_codex_session.py +1 -1
  5. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/pyproject.toml +2 -2
  6. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/.gitignore +0 -0
  7. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/LICENSE +0 -0
  8. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/README.md +0 -0
  9. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/claude_code_tools/codex_bridge_mcp.py +0 -0
  10. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/claude_code_tools/dotenv_vault.py +0 -0
  11. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/claude_code_tools/env_safe.py +0 -0
  12. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/claude_code_tools/tmux_cli_controller.py +0 -0
  13. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/claude_code_tools/tmux_remote_controller.py +0 -0
  14. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/docs/cc-codex-instructions.md +0 -0
  15. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/docs/claude-code-chutes.md +0 -0
  16. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/docs/claude-code-tmux-tutorials.md +0 -0
  17. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/docs/dot-zshrc.md +0 -0
  18. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/docs/find-claude-session.md +0 -0
  19. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/docs/lmsh.md +0 -0
  20. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/docs/reddit-post.md +0 -0
  21. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/docs/tmux-cli-instructions.md +0 -0
  22. {claude_code_tools-0.2.2 → claude_code_tools-0.2.3}/docs/vault-documentation.md +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude-code-tools
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: Collection of tools for working with Claude Code
5
5
  License-File: LICENSE
6
6
  Requires-Python: >=3.11
@@ -1,3 +1,3 @@
1
1
  """Claude Code Tools - Collection of utilities for Claude Code."""
2
2
 
3
- __version__ = "0.2.2"
3
+ __version__ = "0.2.3"
@@ -337,7 +337,7 @@ def display_interactive_ui(sessions: List[Tuple[str, float, int, str, str, str,
337
337
  table.add_column("Branch", style="magenta")
338
338
  table.add_column("Date-Range", style="blue")
339
339
  table.add_column("Lines", style="cyan", justify="right")
340
- table.add_column("Preview", style="white", max_width=60, overflow="fold")
340
+ table.add_column("Last User Message", style="white", max_width=60, overflow="fold")
341
341
 
342
342
  for idx, (session_id, mod_time, create_time, line_count, project_name, preview, _, git_branch) in enumerate(display_sessions, 1):
343
343
  # Format: "10/04 - 10/09 13:45"
@@ -296,7 +296,7 @@ def display_interactive_ui(
296
296
  table.add_column("Branch", style="magenta")
297
297
  table.add_column("Date-Range", style="blue")
298
298
  table.add_column("Lines", justify="right")
299
- table.add_column("Preview", style="dim", max_width=60, overflow="fold")
299
+ table.add_column("Last User Message", style="dim", max_width=60, overflow="fold")
300
300
 
301
301
  for i, match in enumerate(matches, 1):
302
302
  table.add_row(
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "claude-code-tools"
3
- version = "0.2.2"
3
+ version = "0.2.3"
4
4
  description = "Collection of tools for working with Claude Code"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -43,7 +43,7 @@ exclude = [
43
43
 
44
44
  [tool.commitizen]
45
45
  name = "cz_conventional_commits"
46
- version = "0.2.2"
46
+ version = "0.2.3"
47
47
  tag_format = "v$version"
48
48
  version_files = [
49
49
  "pyproject.toml:version",