claude-code-tools 0.1.19__tar.gz → 0.1.21__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 (21) hide show
  1. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/.gitignore +1 -0
  2. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/PKG-INFO +37 -1
  3. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/README.md +36 -0
  4. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/claude_code_tools/__init__.py +1 -1
  5. claude_code_tools-0.1.21/docs/lmsh.md +48 -0
  6. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/pyproject.toml +2 -2
  7. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/LICENSE +0 -0
  8. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/claude_code_tools/codex_bridge_mcp.py +0 -0
  9. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/claude_code_tools/dotenv_vault.py +0 -0
  10. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/claude_code_tools/env_safe.py +0 -0
  11. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/claude_code_tools/find_claude_session.py +0 -0
  12. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/claude_code_tools/tmux_cli_controller.py +0 -0
  13. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/claude_code_tools/tmux_remote_controller.py +0 -0
  14. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/docs/cc-codex-instructions.md +0 -0
  15. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/docs/claude-code-chutes.md +0 -0
  16. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/docs/claude-code-tmux-tutorials.md +0 -0
  17. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/docs/dot-zshrc.md +0 -0
  18. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/docs/find-claude-session.md +0 -0
  19. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/docs/reddit-post.md +0 -0
  20. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/docs/tmux-cli-instructions.md +0 -0
  21. {claude_code_tools-0.1.19 → claude_code_tools-0.1.21}/docs/vault-documentation.md +0 -0
@@ -183,3 +183,4 @@ reference/
183
183
 
184
184
  # Ignore config.json files at any level
185
185
  **/config.json
186
+ *.flag
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude-code-tools
3
- Version: 0.1.19
3
+ Version: 0.1.21
4
4
  Summary: Collection of tools for working with Claude Code
5
5
  License-File: LICENSE
6
6
  Requires-Python: >=3.11
@@ -117,6 +117,42 @@ claude mcp add puppeteer -- npx -y @modelcontextprotocol/server-puppeteer
117
117
 
118
118
  For detailed instructions, see [docs/tmux-cli-instructions.md](docs/tmux-cli-instructions.md).
119
119
 
120
+ ## 🚀 lmsh (Experimental)
121
+
122
+ Natural language shell - type what you want in plain English, get an editable command.
123
+
124
+ ```bash
125
+ # Direct usage - translate, edit, execute, then enter interactive mode
126
+ $ lmsh "show me all python files modified today"
127
+ find . -name "*.py" -mtime 0 # <-- Edit before running
128
+
129
+ # Or interactive mode
130
+ $ lmsh
131
+ lmsh> show recent docker containers
132
+ docker ps -n 5 # <-- Edit before running
133
+ ```
134
+
135
+ **Features:**
136
+ - Rust-based for instant startup (<1ms binary load time)
137
+ - Translates natural language to shell commands using Claude
138
+ - Commands are editable before execution - full control
139
+ - Preserves your shell environment
140
+
141
+ **Note:** Claude API adds ~3-5s latency. Future versions may use local models for instant response.
142
+
143
+ **Installation:**
144
+ ```bash
145
+ # Install from crates.io (easiest, requires Rust)
146
+ cargo install lmsh
147
+
148
+ # Or build from source
149
+ cd lmsh && cargo build --release
150
+ cp target/release/lmsh ~/.cargo/bin/
151
+ # Or: make lmsh-install
152
+ ```
153
+
154
+ See [docs/lmsh.md](docs/lmsh.md) for details.
155
+
120
156
  ## 🔍 find-claude-session
121
157
 
122
158
  Search and resume Claude Code sessions by keywords with an interactive UI.
@@ -103,6 +103,42 @@ claude mcp add puppeteer -- npx -y @modelcontextprotocol/server-puppeteer
103
103
 
104
104
  For detailed instructions, see [docs/tmux-cli-instructions.md](docs/tmux-cli-instructions.md).
105
105
 
106
+ ## 🚀 lmsh (Experimental)
107
+
108
+ Natural language shell - type what you want in plain English, get an editable command.
109
+
110
+ ```bash
111
+ # Direct usage - translate, edit, execute, then enter interactive mode
112
+ $ lmsh "show me all python files modified today"
113
+ find . -name "*.py" -mtime 0 # <-- Edit before running
114
+
115
+ # Or interactive mode
116
+ $ lmsh
117
+ lmsh> show recent docker containers
118
+ docker ps -n 5 # <-- Edit before running
119
+ ```
120
+
121
+ **Features:**
122
+ - Rust-based for instant startup (<1ms binary load time)
123
+ - Translates natural language to shell commands using Claude
124
+ - Commands are editable before execution - full control
125
+ - Preserves your shell environment
126
+
127
+ **Note:** Claude API adds ~3-5s latency. Future versions may use local models for instant response.
128
+
129
+ **Installation:**
130
+ ```bash
131
+ # Install from crates.io (easiest, requires Rust)
132
+ cargo install lmsh
133
+
134
+ # Or build from source
135
+ cd lmsh && cargo build --release
136
+ cp target/release/lmsh ~/.cargo/bin/
137
+ # Or: make lmsh-install
138
+ ```
139
+
140
+ See [docs/lmsh.md](docs/lmsh.md) for details.
141
+
106
142
  ## 🔍 find-claude-session
107
143
 
108
144
  Search and resume Claude Code sessions by keywords with an interactive UI.
@@ -1,3 +1,3 @@
1
1
  """Claude Code Tools - Collection of utilities for Claude Code."""
2
2
 
3
- __version__ = "0.1.19"
3
+ __version__ = "0.1.21"
@@ -0,0 +1,48 @@
1
+ # lmsh
2
+
3
+ A fast, minimal natural language shell interface that translates conversational commands into editable shell commands.
4
+
5
+ ## What it does
6
+
7
+ Type natural language → Get an editable shell command → Review/modify → Execute
8
+
9
+ Example:
10
+ ```bash
11
+ $ lmsh
12
+ > show me all python files modified today
13
+ find . -name "*.py" -mtime 0 # <-- Editable command appears, press Enter to run
14
+ ```
15
+
16
+ ## Installation
17
+
18
+ ```bash
19
+ # Install from crates.io (easiest, requires Rust)
20
+ cargo install lmsh
21
+
22
+ # Or build from source
23
+ cd lmsh/
24
+ cargo build --release
25
+ cp target/release/lmsh ~/.cargo/bin/
26
+ # Or: make lmsh-install
27
+ ```
28
+
29
+ Note: Ensure `~/.cargo/bin` is in your PATH.
30
+
31
+ ## Usage
32
+
33
+ ```bash
34
+ lmsh # Interactive mode
35
+ lmsh "show me python files" # Translate, edit, execute, then interactive mode
36
+ lmsh --version # Version info
37
+ ```
38
+
39
+ ## Features
40
+
41
+ - **Editable commands** - Review and modify before execution
42
+ - **Fast startup** - Optimized Rust binary (~1ms)
43
+ - **Claude-powered** - Uses Claude for natural language understanding
44
+ - **Shell preservation** - Maintains your shell environment and aliases
45
+
46
+ ## Note
47
+
48
+ Claude's API startup adds ~2-3s latency. Future versions may explore faster local models for instant response.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "claude-code-tools"
3
- version = "0.1.19"
3
+ version = "0.1.21"
4
4
  description = "Collection of tools for working with Claude Code"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -42,7 +42,7 @@ exclude = [
42
42
 
43
43
  [tool.commitizen]
44
44
  name = "cz_conventional_commits"
45
- version = "0.1.19"
45
+ version = "0.1.21"
46
46
  tag_format = "v$version"
47
47
  version_files = [
48
48
  "pyproject.toml:version",