-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharvis-workflow.json
More file actions
30 lines (30 loc) · 912 Bytes
/
arvis-workflow.json
File metadata and controls
30 lines (30 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"$schema": "https://raw.githubusercontent.com/jopemachine/arvis-extension-validator/master/workflow-schema.json",
"category": "Productivity",
"name": "arvis-mvns",
"readme": "Search for java libraries at maven central repository",
"defaultIcon": "icon.png",
"description": "Search for java libraries at maven central repository",
"webAddress": "https://github.com/jopemachine/arvis-mvns",
"creator": "xfslove",
"version": "0.0.1",
"enabled": true,
"commands": [
{
"type": "scriptFilter",
"title": "Search for java libraries",
"command": "mvn",
"scriptFilter": "node index.js {query}",
"runningSubtext": "Hold on a sec until script work is done...",
"argType": "optional",
"withspace": true,
"actions": [
{
"type": "clipboard",
"modifiers": "normal",
"text": "{query}"
}
]
}
]
}