Skip to content

Commit e42173a

Browse files
authored
Document how to use the devtools plugin
Added instructions for building, installing, and using the devtools plugin in LucidShell.
1 parent 420f2cf commit e42173a

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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\devtools\
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+
```

0 commit comments

Comments
 (0)