@harness-lab/cli 0.1.3 → 0.1.4

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
@@ -66,6 +66,7 @@ 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 `/workshop reference`.
69
70
 
70
71
  Default device/browser login:
71
72
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harness-lab/cli",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
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
@@ -86,6 +86,11 @@ async function handleSkillInstall(io, deps, flags) {
86
86
  const result = await installWorkshopSkill(deps.cwd ?? process.cwd(), { force: flags.force === true });
87
87
  writeLine(io.stdout, `Installed Harness Lab workshop skill to ${result.installPath}`);
88
88
  writeLine(io.stdout, "Codex and OpenCode should now discover it from this repo via .agents/skills.");
89
+ writeLine(io.stdout, "Next steps:");
90
+ writeLine(io.stdout, " 1. Open Codex or OpenCode in this repo.");
91
+ writeLine(io.stdout, " 2. Run `/workshop reference` for the command overview.");
92
+ writeLine(io.stdout, " 3. Run `/workshop setup` if your environment is not ready yet.");
93
+ writeLine(io.stdout, " 4. Run `/workshop` to get the current phase or fallback guidance.");
89
94
  return 0;
90
95
  } catch (error) {
91
96
  if (error instanceof SkillInstallError) {
@@ -66,6 +66,7 @@ export async function installWorkshopSkill(startDir, options = {}) {
66
66
  await fs.cp(path.join(repoRoot, "workshop-skill"), path.join(installPath, "workshop-skill"), { recursive: true });
67
67
  await fs.cp(path.join(repoRoot, "content"), path.join(installPath, "content"), { recursive: true });
68
68
  await fs.cp(path.join(repoRoot, "workshop-blueprint"), path.join(installPath, "workshop-blueprint"), { recursive: true });
69
+ await fs.rm(path.join(installPath, "workshop-skill", "SKILL.md"), { force: true });
69
70
  await fs.mkdir(path.join(installPath, "docs"), { recursive: true });
70
71
  await fs.copyFile(path.join(repoRoot, "workshop-skill", "SKILL.md"), path.join(installPath, "SKILL.md"));
71
72
  await fs.copyFile(