正在加载视频...

视频加载失败

I built a Harvard-style resume builder Claude Skill that does it for you, and I’m giving it away free. Claude Applying for jobs without tailoring your resume should be a taboo by now. Most job seekers still treat applications like a volume game. Send the same CV everywhere. Make...

14,769 次观看 • 6 个月前 •via X (Twitter)

45 条评论

Developed by Josh 的头像
Developed by Josh6 个月前

@JudithOgar @claudeai Resume

guess who 的头像
guess who1 个月前

@claudeai Resume

Sheyi Shobayo 的头像
Sheyi Shobayo6 个月前

RESUME

My Wealth Has Come 的头像
My Wealth Has Come6 个月前

@claudeai Resume

Your Startup Bestie 的头像
Your Startup Bestie6 个月前

@claudeai Resume

Nazzyofthegoodlife😎✌🏼 的头像
Nazzyofthegoodlife😎✌🏼6 个月前

@claudeai Resume

Opeyemi Awoyemi | chat.cv 的头像
Opeyemi Awoyemi | chat.cv5 个月前

@claudeai follow so i can dm

Oluwatola Toluwani 的头像
Oluwatola Toluwani6 个月前

@claudeai RESUME

opeyemi 的头像
opeyemi6 个月前

@claudeai Resume

R.O.O 的头像
R.O.O6 个月前

@claudeai Resume

'Lai 🇳🇬 的头像
'Lai 🇳🇬6 个月前

@claudeai Resume

Opeyemi Awoyemi | chat.cv 的头像
Opeyemi Awoyemi | chat.cv5 个月前

Here is the link for everyone who missed DMs.

nnamdi okwudinma 的头像
nnamdi okwudinma6 个月前

@claudeai RESUME

Opeyemi Awoyemi | chat.cv 的头像
Opeyemi Awoyemi | chat.cv5 个月前

@claudeai follow so i can dm

nnamdi okwudinma 的头像
nnamdi okwudinma5 个月前

@claudeai Followed

Opeyemi Awoyemi | chat.cv 的头像
Opeyemi Awoyemi | chat.cv5 个月前

@claudeai Ok here you go.

Sunkanmi 的头像
Sunkanmi6 个月前

@claudeai Resume

Ayodele Olawoyin 的头像
Ayodele Olawoyin6 个月前

@claudeai RESUME

Didier Areza 的头像
Didier Areza6 个月前

@claudeai RESUME

𝗝𝗠𝗡 🤴🏾 的头像
𝗝𝗠𝗡 🤴🏾6 个月前

@claudeai Resume

tario 的头像
tario6 个月前

@claudeai Resume

EM_Yazid 的头像
EM_Yazid6 个月前

@claudeai RESUME

Isaac Aboah 的头像
Isaac Aboah6 个月前

@claudeai RESUME

Opeyemi Awoyemi | chat.cv 的头像
Opeyemi Awoyemi | chat.cv5 个月前

@claudeai follow so i can dm

Isaac Aboah 的头像
Isaac Aboah5 个月前

@claudeai done

Dr Jay 的头像
Dr Jay6 个月前

@claudeai RESUME

Mofe 的头像
Mofe6 个月前

@claudeai RESUME

Sam 的头像
Sam6 个月前

@claudeai Resume

Opeyemi Awoyemi | chat.cv 的头像
Opeyemi Awoyemi | chat.cv5 个月前

@claudeai follow so i can dm

Femi 'equity' Ayanbanjo 的头像
Femi 'equity' Ayanbanjo6 个月前

@awalathegreat @claudeai RESUME

President of the NBU 的头像
President of the NBU6 个月前

@claudeai resume

DollyPizzu 🇳🇬 🇨🇦 的头像
DollyPizzu 🇳🇬 🇨🇦6 个月前

@claudeai RESUME

Opeyemi Awoyemi | chat.cv 的头像
Opeyemi Awoyemi | chat.cv5 个月前

@claudeai follow so i can dm

askMrDeLe 的头像
askMrDeLe6 个月前

@claudeai Resume

Opeyemi Awoyemi | chat.cv 的头像
Opeyemi Awoyemi | chat.cv5 个月前

@claudeai follow so i can dm

Olufemi Olanipekun 的头像
Olufemi Olanipekun6 个月前

@claudeai RESUME

Muyiwa Obed 的头像
Muyiwa Obed6 个月前

@claudeai Resume

Opeyemi Awoyemi | chat.cv 的头像
Opeyemi Awoyemi | chat.cv5 个月前

@claudeai follow so I can dm you

Chinwe 的头像
Chinwe6 个月前

@claudeai Resume

Olufemi Olanipekun 的头像
Olufemi Olanipekun6 个月前

@claudeai Resume

HBG 的头像
HBG6 个月前

@claudeai RESUME

Toju Onaiwu 的头像
Toju Onaiwu6 个月前

@claudeai RESUME

G.S. MDK 的头像
G.S. MDK6 个月前

@claudeai RESUME

agu ⚡️ 的头像
agu ⚡️6 个月前

@claudeai RESUME

Adannaya 的头像
Adannaya6 个月前

@claudeai RESUME

相关视频

THIS MIGHT BE THE #1 OPEN-SOURCE REPO FOR CLAUDE CODE RIGHT NOW. IT GIVES CLAUDE A MEMORY AND SLASHES YOUR TOKEN COST ON EVERY QUESTION The repo is safishamsi/graphify, a free open-source skill that turns any codebase into a knowledge graph Claude Code can read instantly. Instead of grepping through your files every session, Claude gets a map of how everything connects The problem it fixes: Every time you ask Claude Code about a big repo, it does the same thing, greps through dozens of files like a brute-force Ctrl+F, blows through your context window, and sometimes still misses the answer hiding in a file nobody searched. Claude Code has no memory of how your project is structured. Every session starts from zero What it does: It maps your entire codebase into a knowledge graph, capturing not just which files exist, but which functions depend on which, which modules are central, and which files cluster around the same concern. Claude queries the map instead of scanning files How it works, three passes: 1. Code structure, free and local. Tree-sitter parses your files and pulls out classes, functions, imports and call graphs. No LLM, no tokens, just your actual code mapped deterministically 2. Audio and video, if you have them. Transcribed locally and folded into the graph 3. Docs, papers, images. Here an LLM does semantic analysis, figuring out what each document means and where it fits. Only the meaning gets sent up, never your raw source It saves you money: Normally a question about a big repo makes Claude spawn explore agents that scan file after file, eating your context window and your token budget before you get an answer. With the graph already built, Claude queries the map instead of re-reading the codebase every time. Same answer, a fraction of the tokens. The graph only gets built once, then a hook rebuilds it after each commit for free, so you never pay that scanning cost again. The bigger the repo, the bigger the gap The best parts: it's a skill, so once installed Claude knows when to use it without you memorizing commands. It works on non-code folders too, point it at docs or notes and it can spin up an Obsidian vault How to add it to your Claude: 1. Install Claude Code if you haven't: npm install -g Paul Jankura-ai/claude-code 2. Add the skill: claude skill add safishamsi/graphify 3. Open your project folder and run /graphify . to build the graph 4. Optional, make it automatic: graphify hook install so the graph rebuilds after every commit That's it. Ask Claude about your repo and it reads the map instead of burning tokens on a file hunt Bookmark this

Yarchi

56,177 次观看 • 3 个月前