standout 0.1.0
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 +12 -0
- package/bin/cli.mjs +30 -0
- package/package.json +33 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# standout
|
|
2
|
+
|
|
3
|
+
Build your developer profile with AI. One command, zero friction.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npx standout
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
Discover your Claude Code, Codex, and Cursor stats, then see how you rank — and
|
|
10
|
+
get matched with roles through [Standout](https://standout.work).
|
|
11
|
+
|
|
12
|
+
> The full developer-profile experience is landing here shortly.
|
package/bin/cli.mjs
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
// Minimal launch stub: claims the `standout` name on npm and makes `npx standout`
|
|
4
|
+
// live. The full developer-profile CLI is ported in here next. Zero deps, no
|
|
5
|
+
// network, no prompts — safe to run anywhere, including a non-TTY Claude Code
|
|
6
|
+
// Bash call.
|
|
7
|
+
|
|
8
|
+
const ACCENT = "\x1b[38;2;173;92;255m";
|
|
9
|
+
const DIM = "\x1b[2m";
|
|
10
|
+
const RESET = "\x1b[0m";
|
|
11
|
+
|
|
12
|
+
function box(lines) {
|
|
13
|
+
const inner = Math.max(...lines.map((l) => l.length)) + 4;
|
|
14
|
+
const bar = "─".repeat(inner);
|
|
15
|
+
const out = [` ┌${bar}┐`];
|
|
16
|
+
for (const line of lines) {
|
|
17
|
+
out.push(` │ ${line.padEnd(inner - 4)} │`);
|
|
18
|
+
}
|
|
19
|
+
out.push(` └${bar}┘`);
|
|
20
|
+
return out.join("\n");
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
const banner = box(["are you really tokenmaxxing?", "Powered by Standout (YC P26)"]);
|
|
24
|
+
|
|
25
|
+
console.log("");
|
|
26
|
+
console.log(`${ACCENT}${banner}${RESET}`);
|
|
27
|
+
console.log("");
|
|
28
|
+
console.log(" Standout is live. The full developer-profile experience lands here shortly.");
|
|
29
|
+
console.log(` ${DIM}Learn more: https://standout.work${RESET}`);
|
|
30
|
+
console.log("");
|
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "standout",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Build your developer profile with AI. One command, zero friction.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"standout": "./bin/cli.mjs"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"bin",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://standout.work",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/Standout-Work/standout.git",
|
|
17
|
+
"directory": "packages/standout"
|
|
18
|
+
},
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"developer",
|
|
24
|
+
"profile",
|
|
25
|
+
"ai",
|
|
26
|
+
"talent",
|
|
27
|
+
"career"
|
|
28
|
+
],
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=18"
|
|
32
|
+
}
|
|
33
|
+
}
|