standout 0.5.33 → 0.5.35

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.
Files changed (55) hide show
  1. package/dist/cli.js +7431 -559
  2. package/package.json +9 -3
  3. package/dist/ai-usage.d.ts +0 -164
  4. package/dist/ai-usage.js +0 -1306
  5. package/dist/api.d.ts +0 -10
  6. package/dist/api.js +0 -94
  7. package/dist/browser-session.d.ts +0 -3
  8. package/dist/browser-session.js +0 -227
  9. package/dist/cli.d.ts +0 -2
  10. package/dist/cursor.d.ts +0 -57
  11. package/dist/cursor.js +0 -562
  12. package/dist/dev-env.d.ts +0 -28
  13. package/dist/dev-env.js +0 -264
  14. package/dist/gather.d.ts +0 -82
  15. package/dist/gather.js +0 -922
  16. package/dist/heap.d.ts +0 -1
  17. package/dist/heap.js +0 -25
  18. package/dist/identity.d.ts +0 -8
  19. package/dist/identity.js +0 -29
  20. package/dist/linkedin-scrape.d.ts +0 -2
  21. package/dist/linkedin-scrape.js +0 -56
  22. package/dist/mcp.d.ts +0 -1
  23. package/dist/mcp.js +0 -25
  24. package/dist/payload.d.ts +0 -8
  25. package/dist/payload.js +0 -163
  26. package/dist/prompt.d.ts +0 -1
  27. package/dist/prompt.js +0 -247
  28. package/dist/proxy.d.ts +0 -1
  29. package/dist/proxy.js +0 -27
  30. package/dist/redact.d.ts +0 -1
  31. package/dist/redact.js +0 -37
  32. package/dist/tools.d.ts +0 -4
  33. package/dist/tools.js +0 -182
  34. package/dist/twitter-scrape.d.ts +0 -1
  35. package/dist/twitter-scrape.js +0 -48
  36. package/dist/wrapped/aggregate.d.ts +0 -6
  37. package/dist/wrapped/aggregate.js +0 -811
  38. package/dist/wrapped/chrono-critters.d.ts +0 -8
  39. package/dist/wrapped/chrono-critters.js +0 -32
  40. package/dist/wrapped/index.d.ts +0 -3
  41. package/dist/wrapped/index.js +0 -2
  42. package/dist/wrapped/mascots.d.ts +0 -2
  43. package/dist/wrapped/mascots.js +0 -35
  44. package/dist/wrapped/preview.d.ts +0 -1
  45. package/dist/wrapped/preview.js +0 -97
  46. package/dist/wrapped/render.d.ts +0 -14
  47. package/dist/wrapped/render.js +0 -1025
  48. package/dist/wrapped/tiers.d.ts +0 -9
  49. package/dist/wrapped/tiers.js +0 -73
  50. package/dist/wrapped/types.d.ts +0 -189
  51. package/dist/wrapped/types.js +0 -4
  52. package/dist/wrapped-client.d.ts +0 -16
  53. package/dist/wrapped-client.js +0 -166
  54. package/dist/wrapped-share.d.ts +0 -1
  55. package/dist/wrapped-share.js +0 -6
@@ -1,8 +0,0 @@
1
- export type ChronoCritter = "morning_bird" | "daytimer" | "night_owl";
2
- export interface ChronoCritterInfo {
3
- key: ChronoCritter;
4
- label: string;
5
- art: string;
6
- }
7
- export declare const CHRONO_CRITTERS: Record<ChronoCritter, ChronoCritterInfo>;
8
- export declare function chronoCritterForHour(hour: number): ChronoCritterInfo;
@@ -1,32 +0,0 @@
1
- // Time-of-day mascots for the "WHEN YOU CODE" card. The peak coding hour maps
2
- // to one of three critters; buckets are contiguous so every hour 0-23 resolves.
3
- const MORNING_BIRD = ` __
4
- ___( o)>
5
- \\ <_. )
6
- \`---'`;
7
- const DAYTIMER = ` __ (\\_
8
- (_ \\ ( '>
9
- ) \\/_)=
10
- (_(_ )_`;
11
- const NIGHT_OWL = ` ,_,
12
- (o,o)
13
- /)_)
14
- " "`;
15
- export const CHRONO_CRITTERS = {
16
- morning_bird: {
17
- key: "morning_bird",
18
- label: "morning bird",
19
- art: MORNING_BIRD,
20
- },
21
- daytimer: { key: "daytimer", label: "daytimer", art: DAYTIMER },
22
- night_owl: { key: "night_owl", label: "night owl", art: NIGHT_OWL },
23
- };
24
- // 6-11 morning bird · 12-18 daytimer · 19-5 night owl.
25
- export function chronoCritterForHour(hour) {
26
- const h = ((Math.floor(hour) % 24) + 24) % 24;
27
- if (h >= 6 && h <= 11)
28
- return CHRONO_CRITTERS.morning_bird;
29
- if (h >= 12 && h <= 18)
30
- return CHRONO_CRITTERS.daytimer;
31
- return CHRONO_CRITTERS.night_owl;
32
- }
@@ -1,3 +0,0 @@
1
- export { renderWrapped, type RenderResult } from "./render.js";
2
- export { aggregateView } from "./aggregate.js";
3
- export type { WrappedAggregateView, MascotPose } from "./types.js";
@@ -1,2 +0,0 @@
1
- export { renderWrapped } from "./render.js";
2
- export { aggregateView } from "./aggregate.js";
@@ -1,2 +0,0 @@
1
- import type { MascotPose } from "./types.js";
2
- export declare const MASCOTS: Record<MascotPose, string>;
@@ -1,35 +0,0 @@
1
- // Small ASCII Clawdius variants. Five lines each so they render at consistent
2
- // height inside boxen. The OG image (PR 7) uses richer SVG; this is the
3
- // terminal-only fallback.
4
- export const MASCOTS = {
5
- default: ` ___
6
- /o o\\
7
- ( =^= )
8
- \`---'
9
- / | \\`,
10
- night: ` * ___ .
11
- . /o o\\ *
12
- ( =^= ) ☾
13
- * \`---' .
14
- / | \\`,
15
- caffeinated: ` ___ ___
16
- /o o\\ | |
17
- ( =O= )---|☕|
18
- \`---' |_|
19
- / | \\`,
20
- crown: ` ◇♛◇
21
- ___
22
- /o o\\
23
- ( =^= )
24
- \`---'`,
25
- circuit: ` ┌─┐___┌─┐
26
- │ /o o\\ │
27
- ├( =>= )┤
28
- │ \`---' │
29
- └─/─|─\\─┘`,
30
- ship: ` ___ ▲
31
- /o o\\ ╱│╲
32
- ( =^= )---│ │
33
- \`---' ╲│╱
34
- / | \\ ▼`,
35
- };
@@ -1 +0,0 @@
1
- export {};
@@ -1,97 +0,0 @@
1
- // Dev preview of the proficiency finale card for every score tier.
2
- // npm run preview:tiers (from packages/standout)
3
- // One representative profile per tier so you can eyeball figures, copy, and fit.
4
- import { cardProficiency } from "./render.js";
5
- import { TIERS } from "./tiers.js";
6
- const SAMPLES = [
7
- {
8
- score: 22,
9
- intensity: 18,
10
- consistency: 27,
11
- craft_bonus: 0,
12
- zinger: "rome wasn't built in one prompt",
13
- archetype: "Builder",
14
- comment: "showing up and chipping away, the loop is forming",
15
- },
16
- {
17
- score: 48,
18
- intensity: 52,
19
- consistency: 43,
20
- craft_bonus: 4,
21
- zinger: "poking at everything, afraid of nothing",
22
- archetype: "Full-Stack Generalist",
23
- comment: "curious prompts, broad reach across the stack",
24
- },
25
- {
26
- score: 68,
27
- intensity: 74,
28
- consistency: 60,
29
- craft_bonus: 7,
30
- zinger: "the trend line only goes one way",
31
- archetype: "AI-Native Engineer",
32
- comment: "you out-shipped most of the field this month",
33
- },
34
- {
35
- score: 81,
36
- intensity: 83,
37
- consistency: 71,
38
- craft_bonus: 13,
39
- zinger: "you don't prompt, you incant",
40
- archetype: "Founding Engineer",
41
- comment: "you prompt with intent and ship like it's a sport",
42
- },
43
- {
44
- score: 90,
45
- intensity: 93,
46
- consistency: 82,
47
- craft_bonus: 15,
48
- zinger: "ship like it's an olympic sport",
49
- archetype: "Founding Engineer",
50
- comment: "raw horsepower, clean prompting, relentless shipping",
51
- },
52
- {
53
- score: 97,
54
- intensity: 98,
55
- consistency: 93,
56
- craft_bonus: 18,
57
- zinger: "one with the machine, frankly unfair",
58
- archetype: "Founding Engineer",
59
- comment: "top of the field on every axis that matters",
60
- },
61
- ];
62
- function fixture(s) {
63
- return {
64
- mascot_pose: "default",
65
- archetype_label: s.archetype,
66
- zinger: s.zinger,
67
- share_url: "standout.work/w/a1b2c3",
68
- cohort_size: 4210,
69
- rank_summary: {
70
- sample_size: 4210,
71
- hours_percentile: s.intensity,
72
- sessions_percentile: s.intensity,
73
- active_days_percentile: s.consistency,
74
- tokens_percentile: s.intensity,
75
- commit_days_percentile: s.intensity,
76
- total_tokens_percentile: s.intensity,
77
- avg_agents_percentile: s.intensity,
78
- weekend_pct_percentile: s.consistency,
79
- ai_assisted_pct_percentile: s.intensity,
80
- },
81
- proficiency: {
82
- score: s.score,
83
- intensity: s.intensity,
84
- consistency: s.consistency,
85
- craft: 70,
86
- base: s.score - s.craft_bonus,
87
- craft_bonus: s.craft_bonus,
88
- top_dimension: "intensity",
89
- comment: s.comment,
90
- },
91
- };
92
- }
93
- for (let i = 0; i < SAMPLES.length; i++) {
94
- process.stdout.write(`\n ${TIERS[i].label} (${TIERS[i].min}+)\n`);
95
- process.stdout.write(cardProficiency(fixture(SAMPLES[i])));
96
- process.stdout.write("\n");
97
- }
@@ -1,14 +0,0 @@
1
- import type { WrappedAggregateView } from "./types.js";
2
- export declare function cardProficiency(view: WrappedAggregateView): string;
3
- export interface RenderResult {
4
- shared: boolean;
5
- cancelled: boolean;
6
- }
7
- type RenderMode = "preview" | "finale" | "final";
8
- export declare function buildRenderableCards(view: WrappedAggregateView, mode?: RenderMode): string[];
9
- export declare function renderWrapped(view: WrappedAggregateView): Promise<RenderResult>;
10
- export declare function renderWrappedPreview(view: WrappedAggregateView): Promise<RenderResult>;
11
- export declare function renderWrappedAll(view: WrappedAggregateView): Promise<{
12
- cancelled: boolean;
13
- }>;
14
- export {};