chore: rename package to pi-subagents

This commit is contained in:
pi
2026-04-10 23:53:39 +01:00
parent d560927724
commit d0cab98f01
9 changed files with 21 additions and 14 deletions

View File

@@ -7,8 +7,8 @@ import { fileURLToPath } from "node:url";
const packageRoot = resolve(dirname(fileURLToPath(import.meta.url)), "..");
const pkg = JSON.parse(readFileSync(resolve(packageRoot, "package.json"), "utf8"));
test("package.json exposes pi-tmux-subagent as a standalone pi package", () => {
assert.equal(pkg.name, "pi-tmux-subagent");
test("package.json exposes pi-subagents as a standalone pi package", () => {
assert.equal(pkg.name, "pi-subagents");
assert.equal(pkg.type, "module");
assert.ok(Array.isArray(pkg.keywords));
assert.ok(pkg.keywords.includes("pi-package"));