Skip to content

Commit 4553048

Browse files
committed
Merge branch 'master' of github.com:DP-Hridayan/aShellYou
2 parents cacb9ee + 732cf9c commit 4553048

1 file changed

Lines changed: 117 additions & 0 deletions

File tree

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
name: "ADB Command Suggestion"
2+
description: Suggest a useful ADB command to be added to aShellYou
3+
title: "[ADB]: "
4+
labels:
5+
- adb-command
6+
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
## 📌 Suggest an ADB Command
12+
Help improve aShellYou by suggesting useful ADB commands.
13+
14+
Please fill out the details clearly so it can be reviewed and possibly added.
15+
16+
- type: input
17+
id: command_name
18+
attributes:
19+
label: Command Name
20+
description: Short name for the command (e.g., Toggle WiFi, Open Developer Options)
21+
placeholder: Toggle Mobile Data
22+
validations:
23+
required: true
24+
25+
- type: textarea
26+
id: adb_command
27+
attributes:
28+
label: ADB Command
29+
description: Provide the exact ADB command(s)
30+
placeholder: adb shell svc data enable
31+
validations:
32+
required: true
33+
34+
- type: textarea
35+
id: description
36+
attributes:
37+
label: What does this command do?
38+
description: Explain clearly what the command does
39+
placeholder: Enables mobile data on the device
40+
validations:
41+
required: true
42+
43+
- type: dropdown
44+
id: category
45+
attributes:
46+
label: Category
47+
description: Select the most relevant category
48+
options:
49+
- "Connectivity (WiFi, Data, Bluetooth)"
50+
- "System Settings"
51+
- "UI / Navigation"
52+
- "Developer Options"
53+
- "Performance"
54+
- "Battery"
55+
- "Apps / Package Manager"
56+
- "Debugging"
57+
- "Other"
58+
validations:
59+
required: true
60+
61+
- type: dropdown
62+
id: root_required
63+
attributes:
64+
label: Requires Root?
65+
options:
66+
- "No"
67+
- "Yes"
68+
- "Not Sure"
69+
validations:
70+
required: true
71+
72+
- type: dropdown
73+
id: android_version
74+
attributes:
75+
label: Tested Android Version(s)
76+
description: Mention where it works
77+
options:
78+
- "Android 10"
79+
- "Android 11"
80+
- "Android 12"
81+
- "Android 13"
82+
- "Android 14"
83+
- "Android 15"
84+
- "Not Tested"
85+
- "Other (mention below)"
86+
87+
- type: textarea
88+
id: device_info
89+
attributes:
90+
label: Device / ROM (if tested)
91+
placeholder: Poco F5, HyperOS
92+
93+
- type: textarea
94+
id: risks
95+
attributes:
96+
label: Risks / Side Effects
97+
description: Mention if it can break something or has limitations
98+
placeholder: May not work on non-rooted devices
99+
100+
- type: textarea
101+
id: additional_notes
102+
attributes:
103+
label: Additional Notes
104+
description: Anything else (alternatives, variations, etc.)
105+
106+
- type: checkboxes
107+
id: checklist
108+
attributes:
109+
label: Checklist
110+
description: Please confirm before submitting
111+
options:
112+
- label: I have tested this command (or clearly marked it as untested)
113+
required: true
114+
- label: I have mentioned any risks or side effects
115+
required: true
116+
- label: I have confirmed this command does not already exist in aShellYou
117+
required: true

0 commit comments

Comments
 (0)