-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathruntime-status-hints.json
More file actions
76 lines (76 loc) · 1.98 KB
/
Copy pathruntime-status-hints.json
File metadata and controls
76 lines (76 loc) · 1.98 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"adapterId": "sample-runtime-status",
"adapterVersion": "1.0.0",
"project": {
"id": "sample-service",
"detection": {
"rootMarkers": [
{
"kind": "file",
"path": "package.json"
}
],
"maximumDepth": 1,
"scope": "declared-project-root",
"requireApprovalOutsideScope": true
}
},
"supportedSkills": [
{
"id": "runtime-truth",
"compatibleVersions": ["0.2.3"],
"declaredMode": "audit-only"
}
],
"extensions": {
"safeReadPaths": ["README.md", "package.json"],
"ignoredPaths": ["logs"],
"documentationPrecedence": ["README.md"],
"commandAliases": [
{
"alias": "service-status",
"skillId": "runtime-truth",
"family": "runtime-status",
"command": "systemctl --user status sample.service --no-pager"
}
],
"safeStatusCommands": [
{
"manager": "systemd-user",
"command": "systemctl --user status sample.service --no-pager"
}
],
"requiredEvidence": ["manager status", "listener ownership", "health response"],
"expectedRuntimeManagers": ["systemd-user"],
"expectedPackageManagers": ["npm"]
},
"approvalRequirements": [
{
"operation": "authenticated-health-check",
"required": true,
"reason": "Authenticated health checks require a separately approved workflow."
}
],
"inheritance": {
"sharedRestrictions": "required",
"deniedOperationCategories": [
"file-write",
"package-install",
"deployment",
"git-mutation",
"unrestricted-scan",
"secret-read",
"process-mutation",
"service-mutation",
"migration-apply",
"privileged-api"
],
"allowRestrictionRemoval": false,
"allowModeOverride": false,
"allowFailureSuppression": false,
"allowCompletionOverride": false,
"allowSecretExposure": false,
"allowRequiredEvidenceRemoval": false,
"allowScopeExpansionWithoutApproval": false
}
}