@jiggai/recipes 0.4.36 → 0.4.37

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/README.md CHANGED
@@ -4,6 +4,19 @@
4
4
  <img src="https://github.com/JIGGAI/ClawRecipes/blob/main/clawcipes_cook.jpg" alt="ClawRecipes logo" width="240" />
5
5
  </p>
6
6
 
7
+ <p align="center">
8
+ <img src="https://img.shields.io/github/v/release/JIGGAI/ClawRecipes?color=green&label=Latest%20Release" alt="Latest Release">
9
+ <img src="https://img.shields.io/github/license/JIGGAI/ClawRecipes?color=orange" alt="License Apache 2.0">
10
+ <img src="https://img.shields.io/github/actions/workflow/status/JIGGAI/ClawRecipes/release.yml?label=Build" alt="Build Status">
11
+ <img src="https://img.shields.io/badge/TypeScript-007ACC?logo=typescript&logoColor=white" alt="TypeScript">
12
+ <img src="https://img.shields.io/badge/Node.js-18+-339933?logo=node.js&logoColor=white" alt="Node.js 18+">
13
+ <br>
14
+ <img src="https://img.shields.io/badge/OpenClaw-Plugin-6366f1" alt="OpenClaw Plugin">
15
+ <img src="https://img.shields.io/badge/CLI-Tool-blue" alt="CLI Tool">
16
+ <img src="https://img.shields.io/badge/Team-Automation-8b5cf6" alt="Team Automation">
17
+ <img src="https://img.shields.io/badge/Workflow-Engine-0891b2" alt="Workflow Engine">
18
+ </p>
19
+
7
20
  ClawRecipes is an **OpenClaw plugin** for scaffolding agents, teams, and file-first workflows from Markdown recipes.
8
21
 
9
22
  If you want the short version:
@@ -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.4.36",
5
+ "version": "0.4.37",
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.4.36",
3
+ "version": "0.4.37",
4
4
  "description": "ClawRecipes plugin for OpenClaw (markdown recipes -> scaffold agents/teams)",
5
5
  "main": "index.ts",
6
6
  "type": "commonjs",
@@ -3,7 +3,7 @@ import { MediaDriver, MediaDriverInvokeOpts, MediaDriverResult, DurationConstrai
3
3
  import { findSkillDir, findVenvPython, runScript, parseMediaOutput } from './utils';
4
4
 
5
5
  export class LumaVideo implements MediaDriver {
6
- slug = 'skill-luma-video';
6
+ slug = 'luma-video';
7
7
  mediaType = 'video' as const;
8
8
  displayName = 'Luma Video Generation';
9
9
  requiredEnvVars = ['LUMAAI_API_KEY'];
@@ -3,7 +3,7 @@ import { MediaDriver, MediaDriverInvokeOpts, MediaDriverResult, DurationConstrai
3
3
  import { findSkillDir, findVenvPython, runScript, parseMediaOutput } from './utils';
4
4
 
5
5
  export class RunwayVideo implements MediaDriver {
6
- slug = 'skill-runway-video';
6
+ slug = 'runway-video';
7
7
  mediaType = 'video' as const;
8
8
  displayName = 'Runway Video Generation';
9
9
  requiredEnvVars = ['RUNWAYML_API_SECRET'];
@@ -1117,7 +1117,7 @@ export async function runWorkflowWorkerTick(api: OpenClawPluginApi, opts: {
1117
1117
  }
1118
1118
 
1119
1119
  // ── Step 2: Invoke the media driver to generate actual media ─────
1120
- const providerSlug = provider.startsWith('skill-') ? provider.replace(/^skill-/, '') : provider;
1120
+ const providerSlug = provider;
1121
1121
  const configEnv = await loadConfigEnv();
1122
1122
  const mergedEnv = { ...process.env, ...configEnv } as Record<string, string>;
1123
1123