standout 0.5.15 → 0.5.16

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/dist/cli.js CHANGED
@@ -200,9 +200,6 @@ async function runAgent(jobId) {
200
200
  process.stderr.write(" (couldn't generate wrapped right now — continuing profile setup.)\n\n");
201
201
  }
202
202
  if (!profileChatEnabled()) {
203
- if (wrappedId) {
204
- process.stderr.write(" Profile chat disabled — run with --chat (or STANDOUT_PROFILE_CHAT=1) to build a full profile.\n\n");
205
- }
206
203
  return;
207
204
  }
208
205
  const jobInstruction = jobId
@@ -843,8 +843,6 @@ export function cardProficiency(view) {
843
843
  ` ${archetype}`,
844
844
  "",
845
845
  ` ${chalk.italic.white(`"${view.zinger}"`)}`,
846
- "",
847
- chalk.dim(" " + view.share_url),
848
846
  ].join("\n"), { borderColor: "yellow" });
849
847
  }
850
848
  const scoreTop = topPercentNumber(p.score_percentile ?? null);
@@ -890,8 +888,6 @@ export function cardProficiency(view) {
890
888
  "",
891
889
  ...bars,
892
890
  ...commentLines,
893
- "",
894
- centerText(view.share_url, chalk.dim),
895
891
  ].filter((l) => l !== null);
896
892
  return box(lines.join("\n"), { borderColor: "yellow" });
897
893
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "standout",
3
- "version": "0.5.15",
3
+ "version": "0.5.16",
4
4
  "description": "Build your developer profile with AI. One command, zero friction.",
5
5
  "type": "module",
6
6
  "main": "./dist/cli.js",