File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ > NOTE; This is still a work in progress!
2+
3+ ## ** How to Use:**
4+
5+ ### ** Build(compile) the Plugin:**
6+ ``` bash
7+ # Compile the plugin
8+
9+ cd plugins\d evtools\
10+
11+ rustc -o devtools.exe src/main.rs
12+ ```
13+
14+ ### ** Install/UnInstall in LucidShell:**
15+ ``` bash
16+ # Install
17+ lucidshell> plugin install devtools.exe
18+
19+ # UnInstall
20+ lucidshell> plugin remove devtools
21+ ```
22+
23+ ### ** Use the Plugin:**
24+ ``` bash
25+ # List available tools
26+ lucidshell> plugin run devtools list
27+
28+ # Get help for a specific tool
29+ lucidshell> plugin run devtools help git
30+
31+ # Run git commands
32+ lucidshell> plugin run devtools run git status
33+ lucidshell> plugin run devtools run git clone https://github.com/user/repo
34+
35+ # Use Python
36+ lucidshell> plugin run devtools run python -c " print('Hello')"
37+ lucidshell> plugin run devtools run pip install requests
38+
39+ # Use curl for API testing
40+ lucidshell> plugin run devtools run curl -X GET https://api.github.com
41+
42+ # Export manifest for verification
43+ lucidshell> plugin run devtools manifest devtools.json
44+ ```
You can’t perform that action at this time.
0 commit comments