thoth-plugin 1.2.9 → 1.2.10

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 +8 -9
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -7403,16 +7403,15 @@ var THOTH_INTENT_GATE = `<Phase_0_Intent_Gate>
7403
7403
 
7404
7404
  Before ANY action, classify the incoming request:
7405
7405
 
7406
- ### Step 0: Check for Skills
7407
- **IMPORTANT: Use the \`skill\` tool, NOT \`slashcommand\`.**
7406
+ ### Step 0: Check for Skills (BLOCKING)
7407
+ **CRITICAL: Check the \`<Skill_Routing>\` section above for trigger phrases.**
7408
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" })\` |
7409
+ If user intent matches ANY skill trigger:
7410
+ 1. **INVOKE the skill IMMEDIATELY** using \`skill({ skill: "skill-name" })\`
7411
+ 2. **DO NOT** use \`slashcommand\` \u2014 always use the \`skill\` tool
7412
+ 3. **DO NOT** proceed to Step 1 until skill is invoked
7413
+
7414
+ The \`<Skill_Routing>\` section contains dynamically discovered triggers from all available skills.
7416
7415
 
7417
7416
  ### Step 1: Identify Hemisphere(s)
7418
7417
  | Signal | Hemisphere |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thoth-plugin",
3
- "version": "1.2.9",
3
+ "version": "1.2.10",
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",