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.
- package/dist/index.js +8 -9
- 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
|
-
**
|
|
7406
|
+
### Step 0: Check for Skills (BLOCKING)
|
|
7407
|
+
**CRITICAL: Check the \`<Skill_Routing>\` section above for trigger phrases.**
|
|
7408
7408
|
|
|
7409
|
-
|
|
7410
|
-
|
|
7411
|
-
|
|
7412
|
-
|
|
7413
|
-
|
|
7414
|
-
|
|
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.
|
|
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",
|