@lalalic/markcut 2.2.2 → 2.2.3

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": "@lalalic/markcut",
3
- "version": "2.2.2",
3
+ "version": "2.2.3",
4
4
  "description": "Markdown-to-video engine. Describe scenes in markdown, get a rendered video.",
5
5
  "bin": {
6
6
  "markcut": "bin/markcut"
@@ -153,7 +153,7 @@ function startAgentProcess() {
153
153
 
154
154
  const fileLabel = VIDEO_JSON.split("/").pop();
155
155
  const sessionId = VIDEO_JSON.replace(/[^a-zA-Z0-9\-_.]/g, "_").replace(/^[^a-zA-Z0-9]+/, "").replace(/[^a-zA-Z0-9]+$/, "");
156
- const promptTemplate = readFileSync(join(ROOT, "docs", "system-prompt-edit.md"), "utf-8");
156
+ const promptTemplate = readFileSync(join(ROOT, "skills/markcut/docs", "system-prompt-edit.md"), "utf-8");
157
157
  const systemPrompt = promptTemplate
158
158
  .replace(/@\{([^}]+)\}/g, (_, refPath) => {
159
159
  try { return readFileSync(resolve(ROOT, refPath.trim()), "utf-8"); }