@lenne.tech/cli 1.6.3 → 1.6.5
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.
- package/bin/lt +13 -0
- package/build/commands/claude/plugins.js +78 -426
- package/build/commands/claude/shortcuts.js +117 -0
- package/build/lib/claude-cli.js +94 -0
- package/build/lib/json-utils.js +20 -0
- package/build/lib/marketplace.js +160 -0
- package/build/lib/plugin-utils.js +453 -0
- package/build/lib/shell-config.js +175 -0
- package/docs/commands.md +33 -0
- package/package.json +1 -1
package/docs/commands.md
CHANGED
|
@@ -886,6 +886,39 @@ lt claude plugins lt-dev --uninstall
|
|
|
886
886
|
|
|
887
887
|
---
|
|
888
888
|
|
|
889
|
+
### `lt claude shortcuts`
|
|
890
|
+
|
|
891
|
+
Installs Claude Code shell shortcuts (aliases) for quick access to common commands.
|
|
892
|
+
|
|
893
|
+
**Usage:**
|
|
894
|
+
```bash
|
|
895
|
+
lt claude shortcuts
|
|
896
|
+
```
|
|
897
|
+
|
|
898
|
+
**Alias:** `lt claude s`
|
|
899
|
+
|
|
900
|
+
**Shortcuts installed:**
|
|
901
|
+
| Alias | Command | Description |
|
|
902
|
+
|-------|---------|-------------|
|
|
903
|
+
| `c` | `claude --dangerously-skip-permissions` | Start new Claude Code session |
|
|
904
|
+
| `cc` | `claude --dangerously-skip-permissions --continue` | Continue last session |
|
|
905
|
+
| `cr` | `claude --dangerously-skip-permissions --resume` | Select and resume previous session |
|
|
906
|
+
|
|
907
|
+
**Note:** These shortcuts use `--dangerously-skip-permissions` which enables autonomous operation by bypassing permission prompts. Ensure you have proper data backups before using them.
|
|
908
|
+
|
|
909
|
+
**Examples:**
|
|
910
|
+
```bash
|
|
911
|
+
# Install shortcuts to ~/.zshrc (or detected shell config)
|
|
912
|
+
lt claude shortcuts
|
|
913
|
+
|
|
914
|
+
# After installation, use:
|
|
915
|
+
c # Start new session
|
|
916
|
+
cc # Continue last session
|
|
917
|
+
cr # Resume a previous session
|
|
918
|
+
```
|
|
919
|
+
|
|
920
|
+
---
|
|
921
|
+
|
|
889
922
|
## Blocks & Components
|
|
890
923
|
|
|
891
924
|
### `lt blocks add`
|