@probo/skills 0.3.0 → 0.3.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@probo/skills",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Multi-agent compliance skills for open-source GRC (Claude Code, Codex, OpenCode) powered by Probo MCP",
|
|
5
5
|
"private": false,
|
|
6
6
|
"scripts": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
],
|
|
39
39
|
"license": "MIT",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"js-yaml": "^4.
|
|
41
|
+
"js-yaml": "^5.4.1"
|
|
42
42
|
},
|
|
43
43
|
"repository": {
|
|
44
44
|
"type": "git",
|
package/plugin.json
CHANGED
|
@@ -11,7 +11,7 @@ for non-`APPROVED` decisions.
|
|
|
11
11
|
| --- | --- | --- |
|
|
12
12
|
| `TERMINATED_USER` flag | `REVOKE` | Terminated user — access no longer required |
|
|
13
13
|
| `CONTRACTOR_EXPIRED` flag | `REVOKE` | Contractor engagement ended |
|
|
14
|
-
| `active === false`
|
|
14
|
+
| `active === false` | `REVOKE` | Account inactive at the source |
|
|
15
15
|
| `ORPHANED` flag and `active === false` | `REVOKE` | Orphaned inactive account |
|
|
16
16
|
| `ORPHANED` flag only, `active !== false` | `ESCALATE` | Orphaned account still active — needs owner |
|
|
17
17
|
| `SHARED_ACCOUNT` flag | `ESCALATE` | Shared account — assign individual owner |
|
|
@@ -19,7 +19,7 @@ for non-`APPROVED` decisions.
|
|
|
19
19
|
| `PRIVILEGED_ACCESS` or `ROLE_CREEP` flag | `ESCALATE` | Privileged access requires explicit approval |
|
|
20
20
|
| `is_admin === true` and (`DORMANT` flag or last_login very stale) | `ESCALATE` | Admin access dormant — confirm business need |
|
|
21
21
|
| `account_type === SERVICE_ACCOUNT`, active, no danger flags | `APPROVED` | Service account with expected access |
|
|
22
|
-
| Active user, no flags (or only `NONE`), not admin
|
|
22
|
+
| Active user, no flags (or only `NONE`), not admin | `APPROVED` | Routine access reaffirmed |
|
|
23
23
|
|
|
24
24
|
"Very stale" last_login: no login in 90+ days when `last_login` is present.
|
|
25
25
|
|
|
@@ -27,7 +27,6 @@ for non-`APPROVED` decisions.
|
|
|
27
27
|
|
|
28
28
|
| Condition | Suggested default | Why ambiguous |
|
|
29
29
|
| --- | --- | --- |
|
|
30
|
-
| `incremental_tag === NEW` | `ESCALATE` | New access since last campaign |
|
|
31
30
|
| `NO_BUSINESS_JUSTIFICATION` flag | `ESCALATE` or `REVOKE` | Needs human judgment |
|
|
32
31
|
| `OUT_OF_DEPARTMENT` flag | `ESCALATE` | Role/department mismatch |
|
|
33
32
|
| `EXCESSIVE` or `ROLE_MISMATCH` flag | `ESCALATE` | Role change needs context |
|
|
@@ -40,7 +40,6 @@ List entries for a campaign. Primary data source for this command.
|
|
|
40
40
|
| `campaign_id` | Campaign GID |
|
|
41
41
|
| `filter.decision` | Use `PENDING` for review batches |
|
|
42
42
|
| `filter.flag` | Optional — focus on a flag (e.g. `TERMINATED_USER`) |
|
|
43
|
-
| `filter.incremental_tag` | Optional — `NEW`, `REMOVED`, `UNCHANGED` |
|
|
44
43
|
| `filter.is_admin` | Optional boolean |
|
|
45
44
|
| `filter.active` | Optional boolean |
|
|
46
45
|
| `size` | Page size; use `50` per batch |
|
|
@@ -54,8 +53,8 @@ infer the tool from account IDs, roles, email patterns, or other entry data.
|
|
|
54
53
|
|
|
55
54
|
Required: `campaign_id`
|
|
56
55
|
|
|
57
|
-
Returns `statistics` with `total_count`, `decision_counts`, `flag_counts
|
|
58
|
-
|
|
56
|
+
Returns `statistics` with `total_count`, `decision_counts`, `flag_counts`.
|
|
57
|
+
Call at the start of each run and after large batches.
|
|
59
58
|
|
|
60
59
|
## Write (semi-auto command)
|
|
61
60
|
|
|
@@ -99,10 +98,9 @@ Do not call unless the user explicitly asks for campaign setup:
|
|
|
99
98
|
| `is_admin` | Heightened scrutiny |
|
|
100
99
|
| `active` | `false` often supports revoke |
|
|
101
100
|
| `mfa_status` | `DISABLED` on privileged access → escalate |
|
|
102
|
-
| `auth_method` | `API_KEY`, `SERVICE_ACCOUNT` context |
|
|
101
|
+
| `auth_method` | `SSO`, `PASSWORD`, `API_KEY`, `OAUTH2`, `SSH`, `SERVICE_ACCOUNT` context |
|
|
103
102
|
| `account_type` | `SERVICE_ACCOUNT` vs `USER` |
|
|
104
103
|
| `last_login` | Dormancy signal |
|
|
105
|
-
| `incremental_tag` | `NEW` needs extra scrutiny |
|
|
106
104
|
| `flags`, `flag_reasons` | Primary risk signals |
|
|
107
105
|
| `decision` | Target `PENDING` entries only |
|
|
108
106
|
|