standout 0.5.17 → 0.5.19

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
@@ -105,7 +105,7 @@ async function maybeShareWrapped(wrapped) {
105
105
  process.stderr.write(` your wrapped: ${wrapped.share_url}\n\n`);
106
106
  return;
107
107
  }
108
- const ans = await askLine(chalk.white(" share your ai wrapped? [Y/n] "));
108
+ const ans = await askLine(chalk.white(" press enter to see your ai wrapped "));
109
109
  process.stderr.write("\n");
110
110
  const shared = !ans || ans.toLowerCase() !== "n";
111
111
  if (!shared) {
@@ -7,10 +7,10 @@ const TOOL_LABELS = {
7
7
  const RETAIL_RATES = [
8
8
  {
9
9
  match: /claude.*opus/i,
10
- input: 15,
11
- output: 75,
12
- cacheRead: 1.5,
13
- cacheWrite: 18.75,
10
+ input: 7.5,
11
+ output: 37.5,
12
+ cacheRead: 0.75,
13
+ cacheWrite: 9.375,
14
14
  },
15
15
  {
16
16
  match: /claude.*sonnet/i,
@@ -28,10 +28,10 @@ const RETAIL_RATES = [
28
28
  },
29
29
  {
30
30
  match: /gpt-?5(-mini|-nano)?/i,
31
- input: 1.25,
32
- output: 10,
33
- cacheRead: 0.125,
34
- cacheWrite: 1.25,
31
+ input: 7.5,
32
+ output: 37.5,
33
+ cacheRead: 0.75,
34
+ cacheWrite: 9.375,
35
35
  },
36
36
  {
37
37
  match: /gpt-?4/i,
@@ -985,7 +985,7 @@ async function renderWrappedCards(view, mode) {
985
985
  }
986
986
  // Share prompt
987
987
  process.stdout.write("\n");
988
- const ans = await askLine(chalk.white(" share your ai wrapped? [Y/n] "));
988
+ const ans = await askLine(chalk.white(" press enter to see your ai wrapped "));
989
989
  process.stdout.write("\n");
990
990
  const shared = !ans || ans.toLowerCase() !== "n";
991
991
  return { shared, cancelled: false };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "standout",
3
- "version": "0.5.17",
3
+ "version": "0.5.19",
4
4
  "description": "Build your developer profile with AI. One command, zero friction.",
5
5
  "type": "module",
6
6
  "main": "./dist/cli.js",