aigent-team 0.2.0 → 0.3.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/README.md +103 -7
- package/dist/{chunk-U3NGK2UZ.js → chunk-RH4B2QFX.js} +11 -1
- package/dist/cli.js +1064 -192
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -141,10 +141,13 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
141
141
|
}>>;
|
|
142
142
|
output: z.ZodOptional<z.ZodObject<{
|
|
143
143
|
directory: z.ZodOptional<z.ZodString>;
|
|
144
|
+
pluginDir: z.ZodOptional<z.ZodString>;
|
|
144
145
|
}, "strip", z.ZodTypeAny, {
|
|
145
146
|
directory?: string | undefined;
|
|
147
|
+
pluginDir?: string | undefined;
|
|
146
148
|
}, {
|
|
147
149
|
directory?: string | undefined;
|
|
150
|
+
pluginDir?: string | undefined;
|
|
148
151
|
}>>;
|
|
149
152
|
}, "strip", z.ZodTypeAny, {
|
|
150
153
|
projectName: string;
|
|
@@ -176,6 +179,7 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
176
179
|
} | undefined;
|
|
177
180
|
output?: {
|
|
178
181
|
directory?: string | undefined;
|
|
182
|
+
pluginDir?: string | undefined;
|
|
179
183
|
} | undefined;
|
|
180
184
|
}, {
|
|
181
185
|
projectName: string;
|
|
@@ -207,6 +211,7 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
207
211
|
} | undefined;
|
|
208
212
|
output?: {
|
|
209
213
|
directory?: string | undefined;
|
|
214
|
+
pluginDir?: string | undefined;
|
|
210
215
|
} | undefined;
|
|
211
216
|
}>;
|
|
212
217
|
type AigentTeamConfig = z.infer<typeof ConfigSchema>;
|
package/dist/index.js
CHANGED