@jiggai/recipes 0.2.21 → 0.2.22

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/index.ts CHANGED
@@ -782,7 +782,9 @@ const recipesPlugin = {
782
782
  console.error("[recipes] ensured agents.list includes main as first/default");
783
783
  }
784
784
  } catch (e) {
785
- console.error(`[recipes] warning: failed to ensure main agent in agents.list: ${(e as Error).message}`);
785
+ // Keep install/scaffold warning-free; this is non-critical and can fail on locked-down configs.
786
+ // (If needed, diagnose via debug logs instead of emitting warnings.)
787
+ console.error(`[recipes] note: failed to ensure main agent in agents.list: ${(e as Error).message}`);
786
788
  }
787
789
  })();
788
790
 
@@ -2,7 +2,7 @@
2
2
  "id": "recipes",
3
3
  "name": "Recipes",
4
4
  "description": "Markdown recipes that scaffold agents and teams (workspace-local).",
5
- "version": "0.2.21",
5
+ "version": "0.2.22",
6
6
  "configSchema": {
7
7
  "type": "object",
8
8
  "additionalProperties": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jiggai/recipes",
3
- "version": "0.2.21",
3
+ "version": "0.2.22",
4
4
  "description": "ClawRecipes plugin for OpenClaw (markdown recipes -> scaffold agents/teams)",
5
5
  "main": "index.ts",
6
6
  "type": "commonjs",
@@ -9,7 +9,7 @@ cronJobs:
9
9
  name: "Lead triage loop"
10
10
  schedule: "*/30 7-23 * * 1-5"
11
11
  timezone: "America/New_York"
12
- message: "Automated lead triage loop: triage inbox/tickets, assign work, and update notes/status.md."
12
+ message: "Automated lead triage loop: triage inbox/tickets, assign work, and update notes/status.md. Anti-stuck: if lowest in-progress is HARD BLOCKED, advance the next unblocked ticket (or pull from backlog). If in-progress is stale (>12h no dated update), comment or move it back."
13
13
  enabledByDefault: true
14
14
  - id: execution-loop
15
15
  name: "Execution loop"