feat(pi): implement milestone M2 - script-backed skills

This commit is contained in:
Stefano Fiorini
2026-04-23 16:04:39 -05:00
parent 7ba6f90e14
commit 51372eb420
32 changed files with 5299 additions and 1 deletions
@@ -7,7 +7,7 @@ const __dirname = path.dirname(__filename);
const SHARED_SCRIPTS_DIR = path.resolve(__dirname, "..");
const ATLASSIAN_SKILL_DIR = path.resolve(SHARED_SCRIPTS_DIR, "..", "..");
const AGENTS = ["codex", "claude-code", "cursor", "opencode"] as const;
const AGENTS = ["codex", "claude-code", "cursor", "opencode", "pi"] as const;
const ENTRIES_TO_COPY = ["pnpm-lock.yaml", "tsconfig.json", "src"] as const;
async function replaceEntry(source: string, target: string) {