diff --git a/package-index.json b/package-index.json index ededdf5b..5da83c21 100644 --- a/package-index.json +++ b/package-index.json @@ -1,12 +1,12 @@ { "schemaVersion": 1, - "indexRevision": "runneth-default-0.1.0", + "indexRevision": "runneth-default-0.2.0", "packages": [ { "id": "runneth-default", "name": "Runneth Default", "description": "Baseline Runneth creative strategy skills installed outside the protected Runneth volume.", - "version": "0.1.0", + "version": "0.2.0", "packageManagerVersion": 1, "categories": [ "baseline" @@ -16,10 +16,10 @@ "owner": "Motion-Creative", "repo": "runneth-apps", "path": "runneth-default", - "ref": "main" + "ref": "staging" }, - "installPolicy": "manual", - "updatePolicy": "manual", + "installPolicy": "auto", + "updatePolicy": "auto", "uninstallPolicy": "allowed" } ] diff --git a/runneth-default/instructions/core-creative-skills.md b/runneth-default/instructions/core-creative-skills.md index cef5e6b1..ef461f29 100644 --- a/runneth-default/instructions/core-creative-skills.md +++ b/runneth-default/instructions/core-creative-skills.md @@ -3,3 +3,7 @@ Treat these as the core creative skills: - `analyzing` - `creative-generation` - `briefing` + +This package installs each skill under `/agent/brain/skills//SKILL.md` +(for example `/agent/brain/skills/analyzing/SKILL.md`). When a task calls for one +of these skills, read the matching `SKILL.md` from that path. diff --git a/runneth-default/package.json b/runneth-default/package.json index ebeb164d..75623e9f 100644 --- a/runneth-default/package.json +++ b/runneth-default/package.json @@ -2,10 +2,10 @@ "schemaVersion": 1, "id": "runneth-default", "name": "Runneth Default", - "version": "0.1.0", + "version": "0.2.0", "description": "Baseline Runneth creative strategy skills installed outside the protected Runneth volume.", - "installPolicy": "manual", - "updatePolicy": "manual", + "installPolicy": "auto", + "updatePolicy": "auto", "uninstallPolicy": "allowed", "resources": [ { @@ -13,8 +13,8 @@ "type": "directory", "sourcePath": "skills/analyzing", "target": { - "root": "agent_skills", - "path": "analyzing" + "root": "agent_brain", + "path": "skills/analyzing" }, "executablePaths": [] }, @@ -23,8 +23,8 @@ "type": "directory", "sourcePath": "skills/briefing", "target": { - "root": "agent_skills", - "path": "briefing" + "root": "agent_brain", + "path": "skills/briefing" }, "executablePaths": [] }, @@ -33,8 +33,8 @@ "type": "directory", "sourcePath": "skills/creative-generation", "target": { - "root": "agent_skills", - "path": "creative-generation" + "root": "agent_brain", + "path": "skills/creative-generation" }, "executablePaths": [] },