Save your work
Skill lexthirteen-ai/founder-survival-kit/skills/save-your-work
Claude skills for the hard parts of building, now that ai made the building easy
npx -y skills add lexthirteen-ai/founder-survival-kit --skill save-your-workAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 28 days oldThe repository was created 28 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
A fifteen-minute safety net for anyone building with ai, so a bad afternoon never costs a project. Walks a founder through setting up version control, a known-good restore point, and a backup habit, in plain language for people who did not come from a software background. Use when someone is vibe coding without git, has lost work or is afraid of losing it, asks "do I need version control," or is about to build something they cannot afford to lose. Sets up the net, it does not lecture.
SKILL.md
3.3 KB, as published. Nobody here has run it
Save Your Work
The scariest founder threads are not about bugs. They are about someone watching weeks of work disappear overnight with no way back. This skill is the fifteen-minute fix, written for people who did not grow up with git.
When to use
- You are building with an ai tool and have no version control.
- You lost work, or you are one bad afternoon away from it.
- You cannot answer the question: where is my last working version, and how do I get back to it.
Process
Do these in order. Stop when the net is in place; you do not need all of it on day one.
- Get the code somewhere it is not just on your laptop. Initialize version control (
git init) and make a first commit, or if that is too much today, at minimum copy the whole project folder somewhere else with today's date. The goal of step one is simply that the work exists in more than one place. - Put it in a remote you do not own the disk for. Create a private repository on a host (GitHub, GitLab, or similar) and push to it. Now a dead laptop is an inconvenience, not a catastrophe. If a founder is not ready for a remote, a cloud-synced folder is a weaker but real fallback.
- Mark a known-good version. Every time the app works, commit with a clear message, and tag or note the ones that really work. This is the "get back to here" button. Teach the one command that returns to the last good state.
- Make it a habit, not a heroic act. Commit at the end of every working session and before any big change, especially before letting an ai make sweeping edits. Small and frequent beats perfect and rare.
- Test the restore once. Actually go back to a previous version and return, so the founder has seen it work. A safety net nobody has tested is a guess.
Output
- Version control initialized and pushed to a remote the founder controls.
- At least one tagged or noted known-good version.
- A one-paragraph, plain-language routine the founder will actually follow, plus the two or three exact commands for their setup.
- Confirmation that a restore was tested once.
Guardrails
- Meet them where they are. Assume no software background. Explain what a commit is before asking for one. No jargon without a plain-language gloss.
- Smallest net first. Getting the code into a second location today beats a perfect branching workflow next week that never happens.
- Never touch their credentials. Walk them through creating the repo and authenticating themselves. Do not ask for passwords or tokens.
- Do not overbuild. This is a safety net, not a devops course. Resist teaching branching, ci, or workflows until the basics are a habit.
Related
The first thing to set up before ship-it-for-real and prelaunch-security-pass. Surfaced by founder-pain-miner whenever "lost my work" threads recur.