thoth-plugin 1.2.8 → 1.2.9

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.
Files changed (2) hide show
  1. package/dist/index.js +9 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -7404,12 +7404,15 @@ var THOTH_INTENT_GATE = `<Phase_0_Intent_Gate>
7404
7404
  Before ANY action, classify the incoming request:
7405
7405
 
7406
7406
  ### Step 0: Check for Skills
7407
- | Trigger | Skill | Action |
7408
- |---------|-------|--------|
7409
- | "Run morning boot", "Start my day" | morning-boot | Fire skill immediately |
7410
- | "End of day", "Close out" | evening-close | Fire skill immediately |
7411
- | "Dump:", "Quick thought:" | thought-router | Fire skill immediately |
7412
- | "Drill meeting notes" | post-meeting-drill | Fire skill immediately |
7407
+ **IMPORTANT: Use the \`skill\` tool, NOT \`slashcommand\`.**
7408
+
7409
+ | Trigger | Action |
7410
+ |---------|--------|
7411
+ | "Start my day", "prepare my day", "morning boot" | \`skill({ skill: "morning-boot" })\` |
7412
+ | "End of day", "Close out", "wrap up" | \`skill({ skill: "evening-close" })\` |
7413
+ | "Dump:", "Quick thought:", "brain dump" | \`skill({ skill: "thought-router" })\` |
7414
+ | "Process meeting notes", "drill meeting" | \`skill({ skill: "post-meeting-drill" })\` |
7415
+ | "Check my email", "email triage" | \`skill({ skill: "mail-triage" })\` |
7413
7416
 
7414
7417
  ### Step 1: Identify Hemisphere(s)
7415
7418
  | Signal | Hemisphere |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thoth-plugin",
3
- "version": "1.2.8",
3
+ "version": "1.2.9",
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",