@andrebuzeli/git-mcp 4.0.20 → 4.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/dist/config.d.ts +7 -239
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +2 -221
- package/dist/config.js.map +1 -1
- package/dist/index.d.ts +11 -9
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +18 -16
- package/dist/index.js.map +1 -1
- package/dist/server.d.ts +1 -69
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +150 -711
- package/dist/server.js.map +1 -1
- package/dist/tools/git-analytics.d.ts +1 -0
- package/dist/tools/git-analytics.d.ts.map +1 -1
- package/dist/tools/git-analytics.js +18 -7
- package/dist/tools/git-analytics.js.map +1 -1
- package/dist/tools/git-archive.d.ts +2 -149
- package/dist/tools/git-archive.d.ts.map +1 -1
- package/dist/tools/git-archive.js +5 -222
- package/dist/tools/git-archive.js.map +1 -1
- package/dist/tools/git-backup.d.ts +1 -198
- package/dist/tools/git-backup.d.ts.map +1 -1
- package/dist/tools/git-backup.js +4 -805
- package/dist/tools/git-backup.js.map +1 -1
- package/dist/tools/git-branches.d.ts +1 -158
- package/dist/tools/git-branches.d.ts.map +1 -1
- package/dist/tools/git-branches.js +4 -539
- package/dist/tools/git-branches.js.map +1 -1
- package/dist/tools/git-config.d.ts +2 -124
- package/dist/tools/git-config.d.ts.map +1 -1
- package/dist/tools/git-config.js +5 -263
- package/dist/tools/git-config.js.map +1 -1
- package/dist/tools/git-files.d.ts +2 -115
- package/dist/tools/git-files.d.ts.map +1 -1
- package/dist/tools/git-files.js +161 -407
- package/dist/tools/git-files.js.map +1 -1
- package/dist/tools/git-issues.d.ts +1 -214
- package/dist/tools/git-issues.d.ts.map +1 -1
- package/dist/tools/git-issues.js +4 -678
- package/dist/tools/git-issues.js.map +1 -1
- package/dist/tools/git-monitor.d.ts +1 -143
- package/dist/tools/git-monitor.d.ts.map +1 -1
- package/dist/tools/git-monitor.js +4 -738
- package/dist/tools/git-monitor.js.map +1 -1
- package/dist/tools/git-packages.d.ts +2 -91
- package/dist/tools/git-packages.d.ts.map +1 -1
- package/dist/tools/git-packages.js +5 -258
- package/dist/tools/git-packages.js.map +1 -1
- package/dist/tools/git-pulls.d.ts +1 -63
- package/dist/tools/git-pulls.d.ts.map +1 -1
- package/dist/tools/git-pulls.js +4 -77
- package/dist/tools/git-pulls.js.map +1 -1
- package/dist/tools/git-release.d.ts +1 -169
- package/dist/tools/git-release.d.ts.map +1 -1
- package/dist/tools/git-release.js +4 -611
- package/dist/tools/git-release.js.map +1 -1
- package/dist/tools/git-remote.d.ts +1 -153
- package/dist/tools/git-remote.d.ts.map +1 -1
- package/dist/tools/git-remote.js +4 -555
- package/dist/tools/git-remote.js.map +1 -1
- package/dist/tools/git-reset.d.ts +1 -157
- package/dist/tools/git-reset.d.ts.map +1 -1
- package/dist/tools/git-reset.js +4 -597
- package/dist/tools/git-reset.js.map +1 -1
- package/dist/tools/git-stash.d.ts +1 -161
- package/dist/tools/git-stash.d.ts.map +1 -1
- package/dist/tools/git-stash.js +4 -640
- package/dist/tools/git-stash.js.map +1 -1
- package/dist/tools/git-sync.d.ts +1 -0
- package/dist/tools/git-sync.d.ts.map +1 -1
- package/dist/tools/git-sync.js +13 -7
- package/dist/tools/git-sync.js.map +1 -1
- package/dist/tools/git-tags.d.ts +1 -162
- package/dist/tools/git-tags.d.ts.map +1 -1
- package/dist/tools/git-tags.js +4 -549
- package/dist/tools/git-tags.js.map +1 -1
- package/dist/tools/git-workflow.d.ts +3 -96
- package/dist/tools/git-workflow.d.ts.map +1 -1
- package/dist/tools/git-workflow.js +287 -314
- package/dist/tools/git-workflow.js.map +1 -1
- package/package.json +3 -3
- package/dist/server-minimal.d.ts +0 -8
- package/dist/server-minimal.d.ts.map +0 -1
- package/dist/server-minimal.js +0 -218
- package/dist/server-minimal.js.map +0 -1
|
@@ -1,124 +1,4 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
1
|
import { UniversalResponse } from '../utils/auto-detection.js';
|
|
3
|
-
/**
|
|
4
|
-
* Tool: git-stash
|
|
5
|
-
*
|
|
6
|
-
* GERENCIAMENTO DE STASH UNIFICADO
|
|
7
|
-
* Stash inteligente com auto-naming, categorização e recuperação automática
|
|
8
|
-
*
|
|
9
|
-
* DESIGNED FOR: Programador individual autônomo
|
|
10
|
-
* PHILOSOPHY: Stash transparente e inteligente
|
|
11
|
-
*/
|
|
12
|
-
declare const GitStashInputSchema: z.ZodDiscriminatedUnion<"action", [z.ZodObject<{
|
|
13
|
-
action: z.ZodLiteral<"save">;
|
|
14
|
-
projectPath: z.ZodString;
|
|
15
|
-
message: z.ZodOptional<z.ZodString>;
|
|
16
|
-
includeUntracked: z.ZodDefault<z.ZodBoolean>;
|
|
17
|
-
keepIndex: z.ZodDefault<z.ZodBoolean>;
|
|
18
|
-
}, "strip", z.ZodTypeAny, {
|
|
19
|
-
action: "save";
|
|
20
|
-
projectPath: string;
|
|
21
|
-
includeUntracked: boolean;
|
|
22
|
-
keepIndex: boolean;
|
|
23
|
-
message?: string | undefined;
|
|
24
|
-
}, {
|
|
25
|
-
action: "save";
|
|
26
|
-
projectPath: string;
|
|
27
|
-
message?: string | undefined;
|
|
28
|
-
includeUntracked?: boolean | undefined;
|
|
29
|
-
keepIndex?: boolean | undefined;
|
|
30
|
-
}>, z.ZodObject<{
|
|
31
|
-
action: z.ZodLiteral<"pop">;
|
|
32
|
-
projectPath: z.ZodString;
|
|
33
|
-
index: z.ZodDefault<z.ZodString>;
|
|
34
|
-
force: z.ZodDefault<z.ZodBoolean>;
|
|
35
|
-
}, "strip", z.ZodTypeAny, {
|
|
36
|
-
action: "pop";
|
|
37
|
-
projectPath: string;
|
|
38
|
-
force: boolean;
|
|
39
|
-
index: string;
|
|
40
|
-
}, {
|
|
41
|
-
action: "pop";
|
|
42
|
-
projectPath: string;
|
|
43
|
-
force?: boolean | undefined;
|
|
44
|
-
index?: string | undefined;
|
|
45
|
-
}>, z.ZodObject<{
|
|
46
|
-
action: z.ZodLiteral<"apply">;
|
|
47
|
-
projectPath: z.ZodString;
|
|
48
|
-
index: z.ZodDefault<z.ZodString>;
|
|
49
|
-
force: z.ZodDefault<z.ZodBoolean>;
|
|
50
|
-
}, "strip", z.ZodTypeAny, {
|
|
51
|
-
action: "apply";
|
|
52
|
-
projectPath: string;
|
|
53
|
-
force: boolean;
|
|
54
|
-
index: string;
|
|
55
|
-
}, {
|
|
56
|
-
action: "apply";
|
|
57
|
-
projectPath: string;
|
|
58
|
-
force?: boolean | undefined;
|
|
59
|
-
index?: string | undefined;
|
|
60
|
-
}>, z.ZodObject<{
|
|
61
|
-
action: z.ZodLiteral<"list">;
|
|
62
|
-
projectPath: z.ZodString;
|
|
63
|
-
detailed: z.ZodDefault<z.ZodBoolean>;
|
|
64
|
-
filter: z.ZodOptional<z.ZodString>;
|
|
65
|
-
}, "strip", z.ZodTypeAny, {
|
|
66
|
-
action: "list";
|
|
67
|
-
projectPath: string;
|
|
68
|
-
detailed: boolean;
|
|
69
|
-
filter?: string | undefined;
|
|
70
|
-
}, {
|
|
71
|
-
action: "list";
|
|
72
|
-
projectPath: string;
|
|
73
|
-
filter?: string | undefined;
|
|
74
|
-
detailed?: boolean | undefined;
|
|
75
|
-
}>, z.ZodObject<{
|
|
76
|
-
action: z.ZodLiteral<"show">;
|
|
77
|
-
projectPath: z.ZodString;
|
|
78
|
-
index: z.ZodDefault<z.ZodString>;
|
|
79
|
-
patch: z.ZodDefault<z.ZodBoolean>;
|
|
80
|
-
}, "strip", z.ZodTypeAny, {
|
|
81
|
-
patch: boolean;
|
|
82
|
-
action: "show";
|
|
83
|
-
projectPath: string;
|
|
84
|
-
index: string;
|
|
85
|
-
}, {
|
|
86
|
-
action: "show";
|
|
87
|
-
projectPath: string;
|
|
88
|
-
patch?: boolean | undefined;
|
|
89
|
-
index?: string | undefined;
|
|
90
|
-
}>, z.ZodObject<{
|
|
91
|
-
action: z.ZodLiteral<"drop">;
|
|
92
|
-
projectPath: z.ZodString;
|
|
93
|
-
index: z.ZodDefault<z.ZodString>;
|
|
94
|
-
force: z.ZodDefault<z.ZodBoolean>;
|
|
95
|
-
}, "strip", z.ZodTypeAny, {
|
|
96
|
-
action: "drop";
|
|
97
|
-
projectPath: string;
|
|
98
|
-
force: boolean;
|
|
99
|
-
index: string;
|
|
100
|
-
}, {
|
|
101
|
-
action: "drop";
|
|
102
|
-
projectPath: string;
|
|
103
|
-
force?: boolean | undefined;
|
|
104
|
-
index?: string | undefined;
|
|
105
|
-
}>, z.ZodObject<{
|
|
106
|
-
action: z.ZodLiteral<"clear">;
|
|
107
|
-
projectPath: z.ZodString;
|
|
108
|
-
confirm: z.ZodDefault<z.ZodBoolean>;
|
|
109
|
-
}, "strip", z.ZodTypeAny, {
|
|
110
|
-
action: "clear";
|
|
111
|
-
projectPath: string;
|
|
112
|
-
confirm: boolean;
|
|
113
|
-
}, {
|
|
114
|
-
action: "clear";
|
|
115
|
-
projectPath: string;
|
|
116
|
-
confirm?: boolean | undefined;
|
|
117
|
-
}>]>;
|
|
118
|
-
export type GitStashInput = z.infer<typeof GitStashInputSchema>;
|
|
119
|
-
/**
|
|
120
|
-
* Tool principal git-stash
|
|
121
|
-
*/
|
|
122
2
|
export declare const gitStashTool: {
|
|
123
3
|
name: string;
|
|
124
4
|
description: string;
|
|
@@ -127,53 +7,13 @@ export declare const gitStashTool: {
|
|
|
127
7
|
properties: {
|
|
128
8
|
action: {
|
|
129
9
|
type: string;
|
|
130
|
-
enum: string[];
|
|
131
|
-
description: string;
|
|
132
10
|
};
|
|
133
11
|
projectPath: {
|
|
134
12
|
type: string;
|
|
135
|
-
description: string;
|
|
136
|
-
};
|
|
137
|
-
message: {
|
|
138
|
-
type: string;
|
|
139
|
-
description: string;
|
|
140
|
-
};
|
|
141
|
-
includeUntracked: {
|
|
142
|
-
type: string;
|
|
143
|
-
description: string;
|
|
144
|
-
};
|
|
145
|
-
keepIndex: {
|
|
146
|
-
type: string;
|
|
147
|
-
description: string;
|
|
148
|
-
};
|
|
149
|
-
index: {
|
|
150
|
-
type: string;
|
|
151
|
-
description: string;
|
|
152
|
-
};
|
|
153
|
-
force: {
|
|
154
|
-
type: string;
|
|
155
|
-
description: string;
|
|
156
|
-
};
|
|
157
|
-
detailed: {
|
|
158
|
-
type: string;
|
|
159
|
-
description: string;
|
|
160
|
-
};
|
|
161
|
-
filter: {
|
|
162
|
-
type: string;
|
|
163
|
-
description: string;
|
|
164
|
-
};
|
|
165
|
-
patch: {
|
|
166
|
-
type: string;
|
|
167
|
-
description: string;
|
|
168
|
-
};
|
|
169
|
-
confirm: {
|
|
170
|
-
type: string;
|
|
171
|
-
description: string;
|
|
172
13
|
};
|
|
173
14
|
};
|
|
174
15
|
required: string[];
|
|
175
16
|
};
|
|
176
|
-
handler(input:
|
|
17
|
+
handler(input: any): Promise<UniversalResponse>;
|
|
177
18
|
};
|
|
178
|
-
export {};
|
|
179
19
|
//# sourceMappingURL=git-stash.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"git-stash.d.ts","sourceRoot":"","sources":["../../src/tools/git-stash.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"git-stash.d.ts","sourceRoot":"","sources":["../../src/tools/git-stash.ts"],"names":[],"mappings":"AAAA,OAAO,EAA2B,iBAAiB,EAAc,MAAM,4BAA4B,CAAC;AAEpG,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;mBAIF,GAAG,GAAG,OAAO,CAAC,iBAAiB,CAAC;CAItD,CAAC"}
|