agent-afk 5.104.2 → 5.105.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/agent/plugins/command-files.d.ts +2 -0
- package/dist/agent/plugins/source-guard.d.ts +3 -0
- package/dist/agent/plugins/tool-injector.d.ts +3 -0
- package/dist/agent/provider.d.ts +1 -0
- package/dist/agent/tools/skill-bridge.d.ts +1 -1
- package/dist/agent/types/sdk-types.d.ts +1 -0
- package/dist/cli/slash/plugin-skills/state.d.ts +3 -0
- package/dist/cli/slash/preflight/types.d.ts +1 -1
- package/dist/cli.mjs +548 -539
- package/dist/index.mjs +200 -191
- package/dist/skills/audit-fit/index.d.ts +3 -3
- package/dist/telegram.mjs +265 -256
- package/package.json +1 -1
|
@@ -6,8 +6,8 @@ export declare const VerdictSchema: z.ZodObject<{
|
|
|
6
6
|
path: z.ZodString;
|
|
7
7
|
type: z.ZodEnum<{
|
|
8
8
|
agent: "agent";
|
|
9
|
-
skill: "skill";
|
|
10
9
|
command: "command";
|
|
10
|
+
skill: "skill";
|
|
11
11
|
hook: "hook";
|
|
12
12
|
}>;
|
|
13
13
|
source: z.ZodEnum<{
|
|
@@ -40,8 +40,8 @@ export declare const AuditFitResultSchema: z.ZodObject<{
|
|
|
40
40
|
path: z.ZodString;
|
|
41
41
|
type: z.ZodEnum<{
|
|
42
42
|
agent: "agent";
|
|
43
|
-
skill: "skill";
|
|
44
43
|
command: "command";
|
|
44
|
+
skill: "skill";
|
|
45
45
|
hook: "hook";
|
|
46
46
|
}>;
|
|
47
47
|
source: z.ZodEnum<{
|
|
@@ -70,8 +70,8 @@ export declare const AuditFitInputSchema: z.ZodObject<{
|
|
|
70
70
|
writeBriefs: z.ZodOptional<z.ZodBoolean>;
|
|
71
71
|
scope: z.ZodOptional<z.ZodEnum<{
|
|
72
72
|
user: "user";
|
|
73
|
-
all: "all";
|
|
74
73
|
plugin: "plugin";
|
|
74
|
+
all: "all";
|
|
75
75
|
}>>;
|
|
76
76
|
}, z.core.$strip>;
|
|
77
77
|
export type AuditFitInput = z.infer<typeof AuditFitInputSchema>;
|