@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 +2 -2
- package/package.json +1 -1
- package/src/run-cli.js +4 -4
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/
|
|
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 `
|
|
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
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
|
|
108
|
+
"Open Codex or pi in this repo.",
|
|
109
109
|
"Start with the workshop reference card.",
|
|
110
|
-
"Codex: `$workshop reference`.
|
|
111
|
-
"
|
|
112
|
-
"
|
|
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) {
|