@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 +1 -1
- package/src/player/server.mjs +1 -1
package/package.json
CHANGED
package/src/player/server.mjs
CHANGED
|
@@ -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"); }
|