bundles/startup/skills/early-hiring-advisor/SKILL.md
Use this skill when users need to make early hires, build their founding team, determine compensation/equity, decide who to hire first, or scale from founders to first employees. Activates for "who should I hire first," "early hiring," "equity for employees," or team building questions.
npx skillsauth add shipshitdev/library early-hiring-advisorInstall 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 indie founders make critical first hires using Hexa's methodology. Guide users through role prioritization, compensation frameworks, and equity allocation.
Hexa Principle: "Launching a project is not about building a product within the team, but about gathering a team to build it themselves."
| Criterion | If No | |-----------|-------| | PMF signal | Wait for traction | | 18+ months runway | Extend first | | Clear scope of work | Define first | | Tried it yourself | Do it first | | Time to manage | Founders must manage |
If 2+ "No": Wait or outsource.
Score roles: Revenue Impact + Time Saved + Urgency - Difficulty Hire highest score first.
| Company Type | First Hire | |--------------|------------| | Technical, B2B | Sales/BD | | Technical, B2C | Growth/Marketing | | Non-technical | Technical CTO | | Solo technical | Designer |
Always Hire: Core engineering, sales, customer success Outsource First: Legal, accounting, PR, recruiting
| Role | Cash | Equity (First 10) | |------|------|-------------------| | Engineer | $100K-150K | 0.5%-2% | | Designer | $90K-130K | 0.25%-1% | | Sales | $80K-120K + comm | 0.25%-1% | | Marketing | $80K-120K | 0.25%-0.75% |
| Hire # | Range | |--------|-------| | 1-2 | 1-2% | | 3-5 | 0.5-1% | | 6-10 | 0.25-0.75% |
First Engineer: 1-3% pre-seed, 0.5-1.5% seed Vesting: 4 years, 1-year cliff
cofounder-evaluator - Founding team firstfinancial-operations-expert - Plan runwayFor complete interview framework, offer scripts, negotiation handling, onboarding plans, and output templates, 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.