nomoreide 0.1.53 → 0.1.54
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/dist/core/workflows.d.ts +22 -0
- package/dist/core/workflows.js +19 -1
- package/dist/core/workflows.js.map +1 -1
- package/dist/web/client/assets/{code-editor-CFwgiwCM.js → code-editor-dsjVJ-4Z.js} +1 -1
- package/dist/web/client/assets/{index-DixOCrTR.js → index-CpAg7ECo.js} +100 -100
- package/dist/web/client/assets/{index-D2WEod6o.css → index-D4fn2UZ8.css} +1 -1
- package/dist/web/client/index.html +2 -2
- package/package.json +1 -1
package/dist/core/workflows.d.ts
CHANGED
|
@@ -62,6 +62,14 @@ export declare const workflowStepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodO
|
|
|
62
62
|
plugins?: string[] | undefined;
|
|
63
63
|
hooks?: string[] | undefined;
|
|
64
64
|
}>>;
|
|
65
|
+
/**
|
|
66
|
+
* Run this step in a fresh, one-shot agent session instead of resuming the
|
|
67
|
+
* dock conversation. Much cheaper — the model isn't re-fed every earlier
|
|
68
|
+
* step's transcript and tool output — but the step gets no shared memory, so
|
|
69
|
+
* only set it on self-contained steps (e.g. drafting a commit message, not
|
|
70
|
+
* "merge the PR you just opened").
|
|
71
|
+
*/
|
|
72
|
+
isolated: z.ZodOptional<z.ZodBoolean>;
|
|
65
73
|
/**
|
|
66
74
|
* Real-state check run after the agent's turn before advancing:
|
|
67
75
|
* - `committed` — the working tree is clean (changes were committed).
|
|
@@ -79,6 +87,7 @@ export declare const workflowStepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodO
|
|
|
79
87
|
plugins?: string[] | undefined;
|
|
80
88
|
hooks?: string[] | undefined;
|
|
81
89
|
} | undefined;
|
|
90
|
+
isolated?: boolean | undefined;
|
|
82
91
|
verify?: "committed" | "pushed" | undefined;
|
|
83
92
|
}, {
|
|
84
93
|
kind: "agent";
|
|
@@ -91,6 +100,7 @@ export declare const workflowStepSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodO
|
|
|
91
100
|
plugins?: string[] | undefined;
|
|
92
101
|
hooks?: string[] | undefined;
|
|
93
102
|
} | undefined;
|
|
103
|
+
isolated?: boolean | undefined;
|
|
94
104
|
verify?: "committed" | "pushed" | undefined;
|
|
95
105
|
}>, z.ZodObject<{
|
|
96
106
|
kind: z.ZodLiteral<"gate">;
|
|
@@ -161,6 +171,14 @@ export declare const workflowSchema: z.ZodObject<{
|
|
|
161
171
|
plugins?: string[] | undefined;
|
|
162
172
|
hooks?: string[] | undefined;
|
|
163
173
|
}>>;
|
|
174
|
+
/**
|
|
175
|
+
* Run this step in a fresh, one-shot agent session instead of resuming the
|
|
176
|
+
* dock conversation. Much cheaper — the model isn't re-fed every earlier
|
|
177
|
+
* step's transcript and tool output — but the step gets no shared memory, so
|
|
178
|
+
* only set it on self-contained steps (e.g. drafting a commit message, not
|
|
179
|
+
* "merge the PR you just opened").
|
|
180
|
+
*/
|
|
181
|
+
isolated: z.ZodOptional<z.ZodBoolean>;
|
|
164
182
|
/**
|
|
165
183
|
* Real-state check run after the agent's turn before advancing:
|
|
166
184
|
* - `committed` — the working tree is clean (changes were committed).
|
|
@@ -178,6 +196,7 @@ export declare const workflowSchema: z.ZodObject<{
|
|
|
178
196
|
plugins?: string[] | undefined;
|
|
179
197
|
hooks?: string[] | undefined;
|
|
180
198
|
} | undefined;
|
|
199
|
+
isolated?: boolean | undefined;
|
|
181
200
|
verify?: "committed" | "pushed" | undefined;
|
|
182
201
|
}, {
|
|
183
202
|
kind: "agent";
|
|
@@ -190,6 +209,7 @@ export declare const workflowSchema: z.ZodObject<{
|
|
|
190
209
|
plugins?: string[] | undefined;
|
|
191
210
|
hooks?: string[] | undefined;
|
|
192
211
|
} | undefined;
|
|
212
|
+
isolated?: boolean | undefined;
|
|
193
213
|
verify?: "committed" | "pushed" | undefined;
|
|
194
214
|
}>, z.ZodObject<{
|
|
195
215
|
kind: z.ZodLiteral<"gate">;
|
|
@@ -227,6 +247,7 @@ export declare const workflowSchema: z.ZodObject<{
|
|
|
227
247
|
plugins?: string[] | undefined;
|
|
228
248
|
hooks?: string[] | undefined;
|
|
229
249
|
} | undefined;
|
|
250
|
+
isolated?: boolean | undefined;
|
|
230
251
|
verify?: "committed" | "pushed" | undefined;
|
|
231
252
|
} | {
|
|
232
253
|
message: string;
|
|
@@ -255,6 +276,7 @@ export declare const workflowSchema: z.ZodObject<{
|
|
|
255
276
|
plugins?: string[] | undefined;
|
|
256
277
|
hooks?: string[] | undefined;
|
|
257
278
|
} | undefined;
|
|
279
|
+
isolated?: boolean | undefined;
|
|
258
280
|
verify?: "committed" | "pushed" | undefined;
|
|
259
281
|
} | {
|
|
260
282
|
message: string;
|
package/dist/core/workflows.js
CHANGED
|
@@ -45,6 +45,14 @@ export const workflowStepSchema = z.discriminatedUnion("kind", [
|
|
|
45
45
|
prompt: z.string().min(1),
|
|
46
46
|
/** Optional user-selected capabilities the runner adds as prompt guidance. */
|
|
47
47
|
capabilities: workflowCapabilitiesSchema.optional(),
|
|
48
|
+
/**
|
|
49
|
+
* Run this step in a fresh, one-shot agent session instead of resuming the
|
|
50
|
+
* dock conversation. Much cheaper — the model isn't re-fed every earlier
|
|
51
|
+
* step's transcript and tool output — but the step gets no shared memory, so
|
|
52
|
+
* only set it on self-contained steps (e.g. drafting a commit message, not
|
|
53
|
+
* "merge the PR you just opened").
|
|
54
|
+
*/
|
|
55
|
+
isolated: z.boolean().optional(),
|
|
48
56
|
/**
|
|
49
57
|
* Real-state check run after the agent's turn before advancing:
|
|
50
58
|
* - `committed` — the working tree is clean (changes were committed).
|
|
@@ -82,6 +90,10 @@ const COMMIT_MESSAGE_STEP = {
|
|
|
82
90
|
kind: "agent",
|
|
83
91
|
id: "commit-message",
|
|
84
92
|
title: "Generate commit message",
|
|
93
|
+
// Self-contained: it stages, reads its own staged diff, and replies with just
|
|
94
|
+
// the message (which the commit action consumes). No later step needs its
|
|
95
|
+
// session, so run it isolated to avoid re-feeding the dock transcript.
|
|
96
|
+
isolated: true,
|
|
85
97
|
prompt: "Stage my changes with `nomoreide_git_stage` (skip anything that looks like a secret, e.g. `.env`), inspect the staged diff once with `nomoreide_git_staged_diff`, then write one conventional-commit message — a `<type>: concise title` line (feat/fix/refactor/chore/docs/test) plus a few short bullets of what changed. Do NOT commit. Reply with ONLY the commit message you recommend.",
|
|
86
98
|
};
|
|
87
99
|
const COMMIT_ACTION_STEP = {
|
|
@@ -136,6 +148,9 @@ export const BUILTIN_WORKFLOWS = [
|
|
|
136
148
|
kind: "agent",
|
|
137
149
|
id: "open-pr",
|
|
138
150
|
title: "Open a PR",
|
|
151
|
+
// Self-contained: gathers its own commit list, so it needs no prior
|
|
152
|
+
// session — run it isolated. The merge step below finds the PR itself.
|
|
153
|
+
isolated: true,
|
|
139
154
|
prompt: "Open a PR for the current branch into `main` using the `nomoreide_github_create_pr` tool. Title = the latest commit subject; for the body, list the commits via `nomoreide_git_log`. Do NOT read file diffs. Reply with just the PR number and URL.",
|
|
140
155
|
},
|
|
141
156
|
{ kind: "gate", id: "gate-merge", title: "Approve merge", message: "Squash-merge the pull request?" },
|
|
@@ -143,7 +158,10 @@ export const BUILTIN_WORKFLOWS = [
|
|
|
143
158
|
kind: "agent",
|
|
144
159
|
id: "merge",
|
|
145
160
|
title: "Squash-merge",
|
|
146
|
-
|
|
161
|
+
// Finds the PR by branch rather than relying on the open-pr step's
|
|
162
|
+
// session, so it can run isolated too.
|
|
163
|
+
isolated: true,
|
|
164
|
+
prompt: "Squash-merge the open pull request for the current branch. First call `nomoreide_git_status` for the branch name, then `nomoreide_github_list_prs` to find its open PR, then merge it with `nomoreide_github_merge_pr`. Don't analyze anything else — just find it and merge. Reply with one line.",
|
|
147
165
|
},
|
|
148
166
|
CHECKOUT_DEFAULT_AND_PULL_STEP,
|
|
149
167
|
],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workflows.js","sourceRoot":"","sources":["../../src/core/workflows.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"workflows.js","sourceRoot":"","sources":["../../src/core/workflows.ts"],"names":[],"mappings":"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"}
|