refactor: switch pi-subagents to generic subagents

This commit is contained in:
pi
2026-04-12 07:00:10 +01:00
parent c8859b626b
commit d80367037c
11 changed files with 26 additions and 204 deletions

View File

@@ -48,6 +48,9 @@ test("README documents local install, git install, and tmux PATH requirement", (
const readme = readFileSync(resolve(packageRoot, "README.md"), "utf8");
assert.match(readme, /pi install \/absolute\/path\/to\/subagents/);
assert.match(readme, /pi install https:\/\/gitea\.rwiesner\.com\/pi\/pi-subagents/);
assert.match(readme, /generic subagent/i);
assert.doesNotMatch(readme, /specialized built-in roles/i);
assert.doesNotMatch(readme, /markdown agent discovery/i);
assert.match(readme, /tmux.*PATH/i);
});