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/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
@@ -8,7 +8,7 @@ import {
8
8
  configExists,
9
9
  loadAgents,
10
10
  loadConfig
11
- } from "./chunk-U3NGK2UZ.js";
11
+ } from "./chunk-RH4B2QFX.js";
12
12
 
13
13
  // src/index.ts
14
14
  function defineConfig(config) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aigent-team",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Cross-platform AI agent team plugin for Claude Code, Cursor, Codex, and Antigravity",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",