@imdeadpool/guardex 7.0.19 → 7.0.21
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/README.md +51 -13
- package/bin/multiagent-safety.js +2 -7861
- package/package.json +2 -1
- package/src/cli/args.js +809 -0
- package/src/cli/dispatch.js +86 -0
- package/src/cli/main.js +5564 -0
- package/src/context.js +517 -0
- package/src/core/runtime.js +119 -0
- package/src/finish/index.js +425 -0
- package/src/git/index.js +122 -0
- package/src/hooks/index.js +74 -0
- package/src/output/index.js +398 -0
- package/src/sandbox/index.js +68 -0
- package/src/scaffold/index.js +148 -0
- package/src/toolchain/index.js +223 -0
- package/templates/scripts/agent-branch-start.sh +52 -8
- package/templates/scripts/codex-agent.sh +155 -7
- package/templates/vscode/guardex-active-agents/README.md +16 -11
- package/templates/vscode/guardex-active-agents/extension.js +908 -65
- package/templates/vscode/guardex-active-agents/package.json +63 -1
- package/templates/vscode/guardex-active-agents/session-schema.js +440 -42
|
@@ -14,18 +14,49 @@
|
|
|
14
14
|
],
|
|
15
15
|
"activationEvents": [
|
|
16
16
|
"workspaceContains:.omx/state/active-sessions",
|
|
17
|
+
"workspaceContains:.omx/agent-worktrees",
|
|
18
|
+
"workspaceContains:.omc/agent-worktrees",
|
|
17
19
|
"onView:gitguardex.activeAgents"
|
|
18
20
|
],
|
|
19
21
|
"main": "./extension.js",
|
|
20
22
|
"contributes": {
|
|
21
23
|
"commands": [
|
|
24
|
+
{
|
|
25
|
+
"command": "gitguardex.activeAgents.startAgent",
|
|
26
|
+
"title": "Start Guardex Agent"
|
|
27
|
+
},
|
|
22
28
|
{
|
|
23
29
|
"command": "gitguardex.activeAgents.refresh",
|
|
24
30
|
"title": "Refresh Active Agents"
|
|
25
31
|
},
|
|
32
|
+
{
|
|
33
|
+
"command": "gitguardex.activeAgents.commitSelectedSession",
|
|
34
|
+
"title": "Commit Selected Session",
|
|
35
|
+
"icon": "$(check)"
|
|
36
|
+
},
|
|
26
37
|
{
|
|
27
38
|
"command": "gitguardex.activeAgents.openWorktree",
|
|
28
39
|
"title": "Open Agent Worktree"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"command": "gitguardex.activeAgents.finishSession",
|
|
43
|
+
"title": "Finish",
|
|
44
|
+
"icon": "$(check)"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"command": "gitguardex.activeAgents.syncSession",
|
|
48
|
+
"title": "Sync",
|
|
49
|
+
"icon": "$(sync)"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"command": "gitguardex.activeAgents.stopSession",
|
|
53
|
+
"title": "Stop",
|
|
54
|
+
"icon": "$(debug-stop)"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"command": "gitguardex.activeAgents.openSessionDiff",
|
|
58
|
+
"title": "Open Diff",
|
|
59
|
+
"icon": "$(diff)"
|
|
29
60
|
}
|
|
30
61
|
],
|
|
31
62
|
"views": {
|
|
@@ -37,12 +68,23 @@
|
|
|
37
68
|
}
|
|
38
69
|
]
|
|
39
70
|
},
|
|
71
|
+
"viewsWelcome": [
|
|
72
|
+
{
|
|
73
|
+
"view": "gitguardex.activeAgents",
|
|
74
|
+
"contents": "No active Guardex agents are visible in this workspace yet.\n\n[Start agent](command:gitguardex.activeAgents.startAgent)\n[Open guide](https://github.com/recodeee/gitguardex/blob/main/vscode/guardex-active-agents/README.md#quick-start)\n[Refresh](command:gitguardex.activeAgents.refresh)"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
40
77
|
"menus": {
|
|
41
78
|
"view/title": [
|
|
79
|
+
{
|
|
80
|
+
"command": "gitguardex.activeAgents.commitSelectedSession",
|
|
81
|
+
"when": "view == gitguardex.activeAgents",
|
|
82
|
+
"group": "navigation@1"
|
|
83
|
+
},
|
|
42
84
|
{
|
|
43
85
|
"command": "gitguardex.activeAgents.refresh",
|
|
44
86
|
"when": "view == gitguardex.activeAgents",
|
|
45
|
-
"group": "navigation"
|
|
87
|
+
"group": "navigation@9"
|
|
46
88
|
}
|
|
47
89
|
],
|
|
48
90
|
"view/item/context": [
|
|
@@ -50,6 +92,26 @@
|
|
|
50
92
|
"command": "gitguardex.activeAgents.openWorktree",
|
|
51
93
|
"when": "view == gitguardex.activeAgents && viewItem == gitguardex.session",
|
|
52
94
|
"group": "inline"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"command": "gitguardex.activeAgents.finishSession",
|
|
98
|
+
"when": "view == gitguardex.activeAgents && viewItem == gitguardex.session",
|
|
99
|
+
"group": "inline"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"command": "gitguardex.activeAgents.syncSession",
|
|
103
|
+
"when": "view == gitguardex.activeAgents && viewItem == gitguardex.session",
|
|
104
|
+
"group": "inline"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"command": "gitguardex.activeAgents.stopSession",
|
|
108
|
+
"when": "view == gitguardex.activeAgents && viewItem == gitguardex.session",
|
|
109
|
+
"group": "inline"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"command": "gitguardex.activeAgents.openSessionDiff",
|
|
113
|
+
"when": "view == gitguardex.activeAgents && viewItem == gitguardex.session",
|
|
114
|
+
"group": "inline"
|
|
53
115
|
}
|
|
54
116
|
]
|
|
55
117
|
}
|