@harness-lab/cli 0.1.7 → 0.1.8

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.
package/README.md CHANGED
@@ -59,14 +59,14 @@ harness version
59
59
  harness --help
60
60
  ```
61
61
 
62
- Install the repo-local workshop skill bundle for Codex/OpenCode discovery:
62
+ Install the repo-local workshop skill bundle for Codex/pi discovery:
63
63
 
64
64
  ```bash
65
65
  harness skill install
66
66
  ```
67
67
 
68
68
  This creates `.agents/skills/harness-lab-workshop` in the current Harness Lab repo checkout.
69
- After install, the CLI prints the first recommended agent commands, starting with `Codex: $workshop reference` and `OpenCode: /workshop reference`.
69
+ After install, the CLI prints the first recommended agent commands, starting with `Codex: $workshop reference` and `pi: /skill:workshop`.
70
70
 
71
71
  Default device/browser login:
72
72
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harness-lab/cli",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Participant-facing Harness Lab CLI for facilitator auth and workshop operations",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",
package/src/run-cli.js CHANGED
@@ -105,11 +105,11 @@ async function handleSkillInstall(io, ui, deps, flags) {
105
105
  ui.blank();
106
106
  ui.section("Next steps");
107
107
  ui.numberedList([
108
- "Open Codex or OpenCode in this repo.",
108
+ "Open Codex or pi in this repo.",
109
109
  "Start with the workshop reference card.",
110
- "Codex: `$workshop reference`. OpenCode: `/workshop reference`.",
111
- "Need setup help? Codex: `$workshop setup`. OpenCode: `/workshop setup`.",
112
- "Other workshop commands follow the same pattern: `$workshop ...` in Codex and `/workshop ...` in OpenCode.",
110
+ "Codex: `$workshop reference`.",
111
+ "pi: `/skill:workshop`, then ask for the workshop reference card.",
112
+ "Need setup help? Codex: `$workshop setup`. pi: `/skill:workshop`, then ask for setup help.",
113
113
  ]);
114
114
  return 0;
115
115
  } catch (error) {