bundles/startup/skills/cofounder-evaluator/SKILL.md
Use this skill when users need to evaluate potential co-founders, assess founder compatibility, design equity splits, or navigate co-founder relationships. Activates for "should I work with this person," "co-founder fit," "equity split," or founding team questions.
npx skillsauth add shipshitdev/library cofounder-evaluatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Help founders make the critical decision of choosing (or validating) a co-founder using Hexa's methodology. Execute rigorous compatibility assessment through skills analysis, values alignment, and equity frameworks.
Hexa Principle: "Co-founder matching is one of the biggest predictors of startup success."
| Favors Solo | Favors Co-founder | |-------------|-------------------| | 80%+ skills covered | Major skill gaps | | Move fast alone | Need parallel execution | | Prefer autonomy | Value debate/input | | Strong network | Need complementary network | | Bootstrapping | Raising (investors like teams) |
5+ either way: Follow that direction
Rate 1-5 for: Technical, Sales, Marketing, Finance/Ops, Leadership, Domain, Fundraising, Recruiting
Ideal: No overlaps >4, no gaps <2
| Type | Best Paired With | |------|------------------| | Builder | Seller or Operator | | Seller | Builder or Operator | | Operator | Builder or Seller | | Visionary | Executor |
Red Flag: Different answers = discuss before proceeding
Must pass: Delivered commitments, proactive communication, resolved disagreement, excited to continue
| Situation | Split | |-----------|-------| | Equal contribution | 50/50 | | Idea + domain vs. execution | 55/45 - 60/40 | | Full-time vs. part-time | 60/40 - 70/30 |
"Would I want to work closely with this person, through extreme stress, for 7-10 years?"
If not enthusiastic yes, keep looking.
early-hiring-advisor - Build team after foundingidea-validator - Validate idea togetherexecution-accelerator - Make the decisionFor complete assessment matrices, reference questions, agreement checklist, output templates, and common mistakes, see: references/full-guide.md
development
Create an isolated git worktree from the correct base branch and check it out into a clean, gitignored directory. Use when the user asks to make a worktree, spin up a parallel/isolated workspace, work on something without disturbing the current checkout, branch off the current work, or run multiple agents on the same repo at once. Picks the base branch smartly — the current feature branch when you are on one, otherwise the develop integration branch — so worktrees continue your in-progress work by default instead of forking from the wrong place.
development
Verify a release was fully promoted through develop, staging, and master/main, then prune merged local and remote branches and stale git worktrees. Squash-merge aware — uses GitHub PR merge state as the merge oracle, not commit ancestry. Use when the user asks to clean up branches after a deploy, prune worktrees, remove merged branches, tidy up after promoting develop to staging to master, or confirm nothing stale was left behind before pruning.
development
Structured "done coding, now what?" workflow: verify tests pass, detect the repository environment (normal repo vs worktree, named branch vs detached HEAD), present exactly the right merge / PR / keep / discard options, and execute the chosen path including safe worktree cleanup. Use when implementation is complete and the branch needs to be integrated, published, or abandoned.
tools
Capture a client or stakeholder feature request, turn it into a planner-ready PRD epic with scoped sub-issues, check for duplicate work, and place approved issues on a GitHub Projects kanban. Use when a user invokes feature intake, asks to turn a rough client requirement into GitHub issues, or wants an idea written as a PRD and pushed to a board.