@pi-stef/pair 0.1.5 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/register.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-stef/pair",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Pi extension for plan/review/implement workflows using pi-subagents for reviewer spawning.",
5
5
  "type": "module",
6
6
  "pi": {
package/src/register.ts CHANGED
@@ -136,7 +136,7 @@ export function registerSfPair(pi: ExtensionAPI): void {
136
136
  content: [
137
137
  {
138
138
  type: "text" as const,
139
- text: `Reviewer configured with model: ${reviewerModel}\n${explorerInfo}\nAgent file written to ${REVIEWER_AGENT_PATH}\n\nNow load and follow the sf-pair-plan skill.`,
139
+ text: `Reviewer configured with model: ${reviewerModel}\n${explorerInfo}\nAgent file written to ${REVIEWER_AGENT_PATH}\n\nNow load the skill named "sf-pair-plan" using the Skill tool, then follow its instructions exactly.`,
140
140
  },
141
141
  ],
142
142
  details: { configured: true, reviewerModel, explorerModel },
@@ -187,7 +187,7 @@ export function registerSfPair(pi: ExtensionAPI): void {
187
187
  content: [
188
188
  {
189
189
  type: "text" as const,
190
- text: `Reviewer configured with model: ${model}\nPlan path: ${(params as any).path}\nAgent file written to ${REVIEWER_AGENT_PATH}\n\nNow load and follow the sf-pair-implement skill.`,
190
+ text: `Reviewer configured with model: ${model}\nPlan path: ${(params as any).path}\nAgent file written to ${REVIEWER_AGENT_PATH}\n\nNow load the skill named "sf-pair-implement" using the Skill tool, then follow its instructions exactly.`,
191
191
  },
192
192
  ],
193
193
  details: { configured: true, reviewerModel: model, path: (params as any).path },
@@ -241,7 +241,7 @@ export function registerSfPair(pi: ExtensionAPI): void {
241
241
  content: [
242
242
  {
243
243
  type: "text" as const,
244
- text: `Reviewer configured with model: ${model}\nTask: ${(params as any).prompt}\nAgent file written to ${REVIEWER_AGENT_PATH}\n\nNow load and follow the sf-pair-task skill.`,
244
+ text: `Reviewer configured with model: ${model}\nTask: ${(params as any).prompt}\nAgent file written to ${REVIEWER_AGENT_PATH}\n\nNow load the skill named "sf-pair-task" using the Skill tool, then follow its instructions exactly.`,
245
245
  },
246
246
  ],
247
247
  details: { configured: true, reviewerModel: model, prompt: (params as any).prompt },