@query-ai/digital-workers 1.0.2 → 1.0.3
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/.claude-plugin/plugin.json +2 -2
- package/hooks/hooks.json +15 -13
- package/package.json +2 -2
- package/.claude-plugin/marketplace.json +0 -26
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "digital-workers",
|
|
3
3
|
"description": "Autonomous security investigation framework for the Query Data Mesh — alert triage, investigation, and response-ready reporting",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.3",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Query.ai"
|
|
7
7
|
},
|
|
8
8
|
"keywords": ["security", "investigation", "DFIR", "SOC", "FSQL", "digital-workers", "alert-triage"],
|
|
9
9
|
"skills": "./skills",
|
|
10
|
-
"hooks": "./hooks"
|
|
10
|
+
"hooks": "./hooks/hooks.json"
|
|
11
11
|
}
|
package/hooks/hooks.json
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
2
|
+
"hooks": {
|
|
3
|
+
"SessionStart": [
|
|
4
|
+
{
|
|
5
|
+
"matcher": "startup|resume|clear|compact",
|
|
6
|
+
"hooks": [
|
|
7
|
+
{
|
|
8
|
+
"type": "command",
|
|
9
|
+
"command": "'${CLAUDE_PLUGIN_ROOT}/hooks/run-hook.cmd' session-start",
|
|
10
|
+
"async": false
|
|
11
|
+
}
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@query-ai/digital-workers",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Autonomous security operations framework for reactive alert investigation and proactive threat hunting.",
|
|
5
5
|
"homepage": "https://plugins.query.ai/claude/digital-workers",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"files": [
|
|
8
|
-
".claude-plugin",
|
|
8
|
+
".claude-plugin/plugin.json",
|
|
9
9
|
"skills",
|
|
10
10
|
"hooks",
|
|
11
11
|
"README.md"
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "digital-workers",
|
|
3
|
-
"owner": {
|
|
4
|
-
"name": "Query.ai"
|
|
5
|
-
},
|
|
6
|
-
"metadata": {
|
|
7
|
-
"description": "Autonomous security investigation framework for the Query Data Mesh"
|
|
8
|
-
},
|
|
9
|
-
"plugins": [
|
|
10
|
-
{
|
|
11
|
-
"name": "digital-workers",
|
|
12
|
-
"sources": [
|
|
13
|
-
{
|
|
14
|
-
"type": "npm",
|
|
15
|
-
"package": "@query-ai/digital-workers",
|
|
16
|
-
"version": "1.0.2",
|
|
17
|
-
"registry": "https://registry.npmjs.org/"
|
|
18
|
-
}
|
|
19
|
-
],
|
|
20
|
-
"description": "Alert triage, investigation, and response-ready reporting using FSQL against the Query Data Mesh",
|
|
21
|
-
"version": "1.0.2",
|
|
22
|
-
"keywords": ["security", "investigation", "DFIR", "SOC", "FSQL", "digital-workers", "alert-triage"],
|
|
23
|
-
"category": "security operations"
|
|
24
|
-
}
|
|
25
|
-
]
|
|
26
|
-
}
|