litclaude-ai 0.3.19 → 0.3.20
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/package.json
CHANGED
|
@@ -51,6 +51,7 @@ const triggerByToken = {
|
|
|
51
51
|
"deep-interview": { command: "/litclaude:deep-interview", skill: "Skill(deep-interview)", discipline: "deep-interview" },
|
|
52
52
|
"dynamic-workflow": { command: "/litclaude:dynamic-workflow", skill: "Skill(lit-loop)", discipline: "dynamic-workflow" },
|
|
53
53
|
"agent-team": { command: "/litclaude:lit-loop", skill: "Skill(lit-loop)", discipline: "agent-team" },
|
|
54
|
+
hyperplan: { command: "/litclaude:lit-plan", skill: "Skill(hyperplan)", discipline: "lit-plan" },
|
|
54
55
|
"lit-plan": { command: "/litclaude:lit-plan", skill: "Skill(lit-plan)", discipline: "lit-plan" },
|
|
55
56
|
"lit-recap": { command: "/litclaude:lit-recap", skill: "Skill(lit-recap)", discipline: "lit-recap" },
|
|
56
57
|
"lit-loop": { command: "/litclaude:lit-loop", skill: "Skill(lit-loop)", discipline: "lit-loop" },
|
|
@@ -104,6 +105,7 @@ const slashCommandMentions = [
|
|
|
104
105
|
"/deep-interview",
|
|
105
106
|
"/dynamic-workflow",
|
|
106
107
|
"/goal",
|
|
108
|
+
"/hyperplan",
|
|
107
109
|
"/lit-loop",
|
|
108
110
|
"/lit-plan",
|
|
109
111
|
"/lit-recap",
|
|
@@ -190,6 +192,7 @@ const findWorkflowTrigger = (prompt) => {
|
|
|
190
192
|
const dollarTrigger = findDollarCommandTrigger(raw);
|
|
191
193
|
if (dollarTrigger) return dollarTrigger;
|
|
192
194
|
if (containsSlashCommandMention(raw)) return undefined;
|
|
195
|
+
if (containsCompoundBoundedWord(raw, "hyperplan")) return { ...triggerByToken.hyperplan, source: "bare-command" };
|
|
193
196
|
const recapTrigger = findRecapTrigger(raw);
|
|
194
197
|
if (recapTrigger) return recapTrigger;
|
|
195
198
|
return findNaturalLitTrigger(prompt);
|