Skip to content
Merged
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
1 change: 1 addition & 0 deletions lib/skills/__tests__/defaultGlobalSkillRefs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ describe("DEFAULT_GLOBAL_SKILL_REFS", () => {
it("ships the current recoupable/skills slugs (post-rename) as platform defaults", () => {
const sourceNames = DEFAULT_GLOBAL_SKILL_REFS.map(r => `${r.source}::${r.skillName}`);
expect(sourceNames).toContain("recoupable/skills::recoup-platform-api-access");
expect(sourceNames).toContain("recoupable/skills::recoup-platform-email-helper");
expect(sourceNames).toContain("recoupable/skills::recoup-platform-build-workspace");
expect(sourceNames).toContain("recoupable/skills::recoup-roster-add-artist");
expect(sourceNames).toContain("recoupable/skills::recoup-roster-list-artists");
Expand Down
2 changes: 2 additions & 0 deletions lib/skills/defaultGlobalSkillRefs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ import type { GlobalSkillRef } from "@/lib/skills/globalSkillRef";
export const DEFAULT_GLOBAL_SKILL_REFS: readonly GlobalSkillRef[] = [
// API access + live data + send-email (was `recoup-api`).
{ source: "recoupable/skills", skillName: "recoup-platform-api-access" },
// Reliable email send (Node helper) — pairs with the api-access skill.
{ source: "recoupable/skills", skillName: "recoup-platform-email-helper" },
Comment thread
cubic-dev-ai[bot] marked this conversation as resolved.
// Folder-tree / RECOUP.md scaffolding + roster ops (was `artist-workspace`).
{ source: "recoupable/skills", skillName: "recoup-platform-build-workspace" },
{ source: "recoupable/skills", skillName: "recoup-roster-add-artist" },
Expand Down
Loading