thoth-plugin 1.1.0 → 1.1.2

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.
@@ -5,6 +5,7 @@ export declare const SkillFrontmatterSchema: z.ZodObject<{
5
5
  description: z.ZodString;
6
6
  license: z.ZodOptional<z.ZodString>;
7
7
  "allowed-tools": z.ZodOptional<z.ZodArray<z.ZodString>>;
8
+ triggers: z.ZodOptional<z.ZodArray<z.ZodString>>;
8
9
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
9
10
  }, z.core.$strip>;
10
11
  export type SkillFrontmatter = z.infer<typeof SkillFrontmatterSchema>;
@@ -13,6 +14,7 @@ export interface SkillMetadata {
13
14
  description: string;
14
15
  license?: string;
15
16
  allowedTools?: string[];
17
+ triggers?: string[];
16
18
  metadata?: Record<string, string>;
17
19
  }
18
20
  export interface SkillInfo {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thoth-plugin",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "Thoth - Root-level life orchestrator for OpenCode. Unified AI chief of staff combining Sisyphus execution quality, Personal-OS rhythms, and Thoth relationship model.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",