Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions package-index.json
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
}
]
Expand Down
4 changes: 4 additions & 0 deletions runneth-default/instructions/core-creative-skills.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@ Treat these as the core creative skills:
- `analyzing`
- `creative-generation`
- `briefing`

This package installs each skill under `/agent/brain/skills/<name>/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.
18 changes: 9 additions & 9 deletions runneth-default/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
"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": [
{
"id": "analyzing",
"type": "directory",
"sourcePath": "skills/analyzing",
"target": {
"root": "agent_skills",
"path": "analyzing"
"root": "agent_brain",
"path": "skills/analyzing"
},
"executablePaths": []
},
Expand All @@ -23,8 +23,8 @@
"type": "directory",
"sourcePath": "skills/briefing",
"target": {
"root": "agent_skills",
"path": "briefing"
"root": "agent_brain",
"path": "skills/briefing"
},
"executablePaths": []
},
Expand All @@ -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": []
},
Expand Down
Loading