-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtool-hint-justifications.json
More file actions
66 lines (66 loc) · 2.99 KB
/
Copy pathtool-hint-justifications.json
File metadata and controls
66 lines (66 loc) · 2.99 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
{
"$schema": "https://developers.openai.com/apps-sdk/schemas/tool-hint-justifications.v1.json",
"schema_version": 1,
"tools": {
"itcons_check_connection": {
"annotations": {
"readOnlyHint": true,
"openWorldHint": false,
"destructiveHint": false
},
"justifications": {
"read_only_justification": "Only lists private work order types to verify the user's Itcons.app credentials and does not modify data.",
"open_world_justification": "Only reads from the authenticated user's private Itcons.app workspace and does not affect public internet state.",
"destructive_justification": "Does not delete, overwrite, revoke access, or perform any irreversible action."
}
},
"itcons_list_work_report_models": {
"annotations": {
"readOnlyHint": true,
"openWorldHint": false,
"destructiveHint": false
},
"justifications": {
"read_only_justification": "Only fetches private work report model records and returns them without modifying state.",
"open_world_justification": "Only reads from the user's private Itcons.app workspace and does not touch public internet surfaces.",
"destructive_justification": "Does not delete, overwrite, or revoke anything."
}
},
"itcons_search_work_reports": {
"annotations": {
"readOnlyHint": true,
"openWorldHint": false,
"destructiveHint": false
},
"justifications": {
"read_only_justification": "Only retrieves private work reports by query parameters and does not create or update reports.",
"open_world_justification": "Only reads from the authenticated user's private Itcons.app workspace and does not affect public internet state.",
"destructive_justification": "Does not remove data or perform irreversible changes."
}
},
"itcons_list_work_reports_by_date": {
"annotations": {
"readOnlyHint": true,
"openWorldHint": false,
"destructiveHint": false
},
"justifications": {
"read_only_justification": "Only fetches private work reports and filters them by date without modifying stored records.",
"open_world_justification": "Only reads closed Itcons.app data and does not publish or send information to external systems.",
"destructive_justification": "Does not delete, overwrite, or perform irreversible actions."
}
},
"itcons_list_today_work_reports": {
"annotations": {
"readOnlyHint": true,
"openWorldHint": false,
"destructiveHint": false
},
"justifications": {
"read_only_justification": "Only computes today's date and retrieves matching private work reports without modifying any data.",
"open_world_justification": "Only reads from the user's private Itcons.app workspace and does not touch public internet state.",
"destructive_justification": "Does not delete records or perform any irreversible operation."
}
}
}
}