agentsmesh 0.28.0 → 0.29.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.
@@ -267,6 +267,11 @@ declare const configSchema: z.ZodObject<{
267
267
  rules: z.ZodOptional<z.ZodArray<z.ZodString>>;
268
268
  agents: z.ZodOptional<z.ZodArray<z.ZodString>>;
269
269
  }, z.core.$strict>>;
270
+ accept: z.ZodOptional<z.ZodArray<z.ZodEnum<{
271
+ mcp: "mcp";
272
+ hooks: "hooks";
273
+ permissions: "permissions";
274
+ }>>>;
270
275
  }, z.core.$strip>>>;
271
276
  overrides: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
272
277
  collaboration: z.ZodDefault<z.ZodObject<{
@@ -1,4 +1,4 @@
1
- import { b as CanonicalFiles, c as CanonicalRule, V as ValidatedConfig, E as ExtendPick } from './schema-CzaoYJlG.js';
1
+ import { b as CanonicalFiles, c as CanonicalRule, V as ValidatedConfig, E as ExtendPick } from './schema-CH_JJep8.js';
2
2
 
3
3
  /** Result of generating files for a target */
4
4
  interface GenerateResult {
package/dist/targets.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- import { e as TargetDescriptor, h as TargetLayoutScope, C as ContentNormalizer, d as ImportResult } from './target-descriptor-ItDY3NR0.js';
2
- export { E as ExtraRuleOutputContext, a as ExtraRuleOutputResolver, F as FeatureLinter, b as GeneratedOutputMerger, c as GlobalTargetSupport, I as ImportPathBuilder, R as RuleLinter, S as ScopeExtrasFn, T as TargetCapabilities, f as TargetGenerators, g as TargetLayout, i as TargetLintHooks, j as TargetManagedOutputs, k as TargetOutputFamily, l as TargetPathResolvers } from './target-descriptor-ItDY3NR0.js';
3
- import './schema-CzaoYJlG.js';
1
+ import { e as TargetDescriptor, h as TargetLayoutScope, C as ContentNormalizer, d as ImportResult } from './target-descriptor-CaLUz7SR.js';
2
+ export { E as ExtraRuleOutputContext, a as ExtraRuleOutputResolver, F as FeatureLinter, b as GeneratedOutputMerger, c as GlobalTargetSupport, I as ImportPathBuilder, R as RuleLinter, S as ScopeExtrasFn, T as TargetCapabilities, f as TargetGenerators, g as TargetLayout, i as TargetLintHooks, j as TargetManagedOutputs, k as TargetOutputFamily, l as TargetPathResolvers } from './target-descriptor-CaLUz7SR.js';
3
+ import './schema-CH_JJep8.js';
4
4
  import 'zod';
5
5
 
6
6
  /** Register a full target descriptor (for plugins). */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentsmesh",
3
- "version": "0.28.0",
3
+ "version": "0.29.0",
4
4
  "description": "One canonical source for AI coding agent rules, commands, skills, MCP, hooks, and permissions — synced across every major AI coding tool.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -209,6 +209,17 @@
209
209
  }
210
210
  },
211
211
  "additionalProperties": false
212
+ },
213
+ "accept": {
214
+ "type": "array",
215
+ "items": {
216
+ "type": "string",
217
+ "enum": [
218
+ "hooks",
219
+ "permissions",
220
+ "mcp"
221
+ ]
222
+ }
212
223
  }
213
224
  },
214
225
  "required": [