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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "litclaude-ai",
3
- "version": "0.3.19",
3
+ "version": "0.3.20",
4
4
  "description": "Claude Code-native workflow distribution.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "litclaude",
3
3
  "description": "Claude Code-native workflow plugin.",
4
- "version": "0.3.19",
4
+ "version": "0.3.20",
5
5
  "author": {
6
6
  "name": "LitClaude contributors"
7
7
  },
@@ -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);
@@ -3,7 +3,7 @@
3
3
  import { readPublicSource } from "../lib/public-source-reader/reader.mjs";
4
4
 
5
5
  const protocolVersion = "2024-11-05";
6
- const serverVersion = "0.3.19";
6
+ const serverVersion = "0.3.20";
7
7
 
8
8
  const publicSourceReadTool = {
9
9
  name: "public_source_read",