brass-runtime 1.20.0 → 1.21.0
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/CHANGELOG.md +54 -0
- package/dist/agent/cli/main.cjs +265 -43
- package/dist/agent/cli/main.d.ts +99 -0
- package/dist/agent/cli/main.js +238 -16
- package/dist/agent/cli/main.mjs +238 -16
- package/dist/agent/index.cjs +18 -2
- package/dist/agent/index.d.ts +60 -482
- package/dist/agent/index.js +17 -1
- package/dist/agent/index.mjs +17 -1
- package/dist/{chunk-J4F5KC3U.js → chunk-AI3M6624.js} +1260 -45
- package/dist/{chunk-IHY2EJTT.cjs → chunk-EX4VEKUF.cjs} +1340 -125
- package/dist/{chunk-6BNZS2A4.mjs → chunk-Q57ENQUW.mjs} +1260 -45
- package/dist/nodeWorkspaceDiscovery-Ami1UkMt.d.ts +631 -0
- package/package.json +1 -1
- package/wasm/pkg/package.json +1 -1
package/dist/agent/index.mjs
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AGENT_CONFIG_FILE_NAMES,
|
|
3
|
+
CI_INDICATORS,
|
|
3
4
|
NodeShell,
|
|
4
5
|
PROJECT_LOCKFILE_PROBES,
|
|
5
6
|
PROJECT_PROFILE_PROBES,
|
|
6
7
|
autoApproveApprovals,
|
|
8
|
+
buildHostProfile,
|
|
7
9
|
canAutoRollback,
|
|
8
10
|
canRequestPatchRepair,
|
|
11
|
+
collectHostSignals,
|
|
9
12
|
commandForScript,
|
|
10
13
|
decideNextAction,
|
|
14
|
+
deepFreeze,
|
|
11
15
|
defaultPermissions,
|
|
12
16
|
deriveContextSearchQueries,
|
|
13
17
|
describeCommandDiscovery,
|
|
@@ -27,6 +31,10 @@ import {
|
|
|
27
31
|
extractPatchPaths,
|
|
28
32
|
extractUnifiedDiff,
|
|
29
33
|
goalForAgentPreset,
|
|
34
|
+
inferCapabilities,
|
|
35
|
+
inferConstraints,
|
|
36
|
+
inferOptionalIdentity,
|
|
37
|
+
inferTransport,
|
|
30
38
|
inferUserLanguage,
|
|
31
39
|
initialAgentState,
|
|
32
40
|
invokeAction,
|
|
@@ -73,7 +81,7 @@ import {
|
|
|
73
81
|
timeout,
|
|
74
82
|
unappliedPatchStack,
|
|
75
83
|
workspaceValidationStatus
|
|
76
|
-
} from "../chunk-
|
|
84
|
+
} from "../chunk-Q57ENQUW.mjs";
|
|
77
85
|
import "../chunk-B5JD23U7.mjs";
|
|
78
86
|
import "../chunk-BFNBU47C.mjs";
|
|
79
87
|
import "../chunk-36I3M4UC.mjs";
|
|
@@ -81,14 +89,18 @@ import "../chunk-UZQ3BB6W.mjs";
|
|
|
81
89
|
import "../chunk-Y6FXYEAI.mjs";
|
|
82
90
|
export {
|
|
83
91
|
AGENT_CONFIG_FILE_NAMES,
|
|
92
|
+
CI_INDICATORS,
|
|
84
93
|
NodeShell,
|
|
85
94
|
PROJECT_LOCKFILE_PROBES,
|
|
86
95
|
PROJECT_PROFILE_PROBES,
|
|
87
96
|
autoApproveApprovals,
|
|
97
|
+
buildHostProfile,
|
|
88
98
|
canAutoRollback,
|
|
89
99
|
canRequestPatchRepair,
|
|
100
|
+
collectHostSignals,
|
|
90
101
|
commandForScript,
|
|
91
102
|
decideNextAction,
|
|
103
|
+
deepFreeze,
|
|
92
104
|
defaultPermissions,
|
|
93
105
|
deriveContextSearchQueries,
|
|
94
106
|
describeCommandDiscovery,
|
|
@@ -108,6 +120,10 @@ export {
|
|
|
108
120
|
extractPatchPaths,
|
|
109
121
|
extractUnifiedDiff,
|
|
110
122
|
goalForAgentPreset,
|
|
123
|
+
inferCapabilities,
|
|
124
|
+
inferConstraints,
|
|
125
|
+
inferOptionalIdentity,
|
|
126
|
+
inferTransport,
|
|
111
127
|
inferUserLanguage,
|
|
112
128
|
initialAgentState,
|
|
113
129
|
invokeAction,
|