@fre4x/jules 1.0.65-beta.0 → 1.0.65
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/index.js +6 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -42137,11 +42137,11 @@ var CreateSessionInputSchema = z3.object({
|
|
|
42137
42137
|
),
|
|
42138
42138
|
startingBranch: z3.string().default("main").describe("The starting branch for the repository."),
|
|
42139
42139
|
automationMode: z3.enum(["AUTO_CREATE_PR", "NONE"]).optional().describe(
|
|
42140
|
-
"Whether
|
|
42140
|
+
"Whether Jules should auto-open a PR after the session ('AUTO_CREATE_PR' or 'NONE', default: 'NONE')."
|
|
42141
42141
|
),
|
|
42142
42142
|
title: z3.string().describe("The title of the session."),
|
|
42143
42143
|
requirePlanApproval: z3.boolean().default(false).describe(
|
|
42144
|
-
"If true,
|
|
42144
|
+
"If true, the session pauses after planning until jules_approve_plan is called."
|
|
42145
42145
|
)
|
|
42146
42146
|
});
|
|
42147
42147
|
var CreateSessionOutputSchema = z3.object({
|
|
@@ -42167,7 +42167,9 @@ var ListSessionsOutputSchema = z3.object({
|
|
|
42167
42167
|
nextPageToken: z3.string().optional()
|
|
42168
42168
|
});
|
|
42169
42169
|
var ApprovePlanInputSchema = z3.object({
|
|
42170
|
-
sessionId: z3.string().describe(
|
|
42170
|
+
sessionId: z3.string().describe(
|
|
42171
|
+
"The paused session ID or resource name to unblock (e.g., 'sessions/12345')."
|
|
42172
|
+
)
|
|
42171
42173
|
});
|
|
42172
42174
|
var ApprovePlanOutputSchema = z3.object({
|
|
42173
42175
|
success: z3.boolean(),
|
|
@@ -46047,7 +46049,7 @@ function handleApiError(error48) {
|
|
|
46047
46049
|
function registerApprovePlanTool(server2) {
|
|
46048
46050
|
server2.tool(
|
|
46049
46051
|
"jules_approve_plan",
|
|
46050
|
-
"Approve a
|
|
46052
|
+
"Approve a plan-gated Jules session so execution can continue.",
|
|
46051
46053
|
ApprovePlanInputSchema.shape,
|
|
46052
46054
|
async (params) => {
|
|
46053
46055
|
try {
|