Onboard
Cross-project agent workflow skills — session onboarding, handoffs, PR review, and merge workflows
npx -y skills add jsirish/workflow-skills --skill onboardAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 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
Bootstrap agent context at the start of a new session. Reads project state, checks environment, and aligns on goals. Portable no-plugin fallback: if the throughline plugin is active, use throughline-onboard instead.
SKILL.md
4.2 KB, 969 tokens by cl100k_base, as published. Nobody here has run it
Skill: Onboard
Goal: Get a new or returning agent fully up to speed on a project before starting any work. This ensures no time is wasted on already-solved problems and that work follows established patterns.
Persistent handoff: <project-root>/.agent/handoff/HANDOFF.md
Relationship to throughline
This skill is the portable, no-plugin fallback for harnesses without the throughline plugin (opencode and other agent harnesses). If throughline is active in this session (the throughline-onboard skill is available, or a capture buffer exists at .claude/throughline/buffer/, or at .agent/handoff/buffer/ when THROUGHLINE_DATA_DIR=.agent/handoff is set), defer to throughline-onboard instead: it reads the same HANDOFF.md plus the hook-driven capture buffer for deeper orientation. With THROUGHLINE_DATA_DIR=.agent/handoff, both operate on the same .agent/handoff/ state, so switching between harnesses is safe.
Phase 1: Load Project Context
- Read the persistent project state document:
<project-root>/.agent/handoff/HANDOFF.md- If it doesn't exist, note this — the project has no accumulated handoff state yet.
- If the user mentions a specific recent task or problem, check the linked session logs under "Recent Session Logs" in
HANDOFF.md. - Scan available Knowledge Items (KIs) for relevant existing analysis.
Phase 2: Check Environment
- Verify the workspace structure:
ls <project-root>/ - Check for project-specific tooling (Docker, DDEV, npm, composer, etc.):
# Adapt to the project — check whatever runtime/tooling is relevant which docker git gh 2>/dev/null - Verify version control state:
git remote show origin | grep 'HEAD branch' git status --short - Check code intelligence (codegraph). A
codegraphMCP server indexes every symbol/edge/file into local SQLite — querying it (codegraph_context, then onecodegraph_explore, always passingprojectPath: <absolute root>) beats grep for "how does X work" / architecture / where-is-X questions later in the session.if [ -d .codegraph ]; then # Index exists — freshen after the branch switch / pull that started this session. codegraph sync || echo "Warning: codegraph sync failed — index may be stale" fi- If
.codegraph/is absent and this is a non-trivial code project, offer to initialize it (a file watcher then keeps it current):codegraph init && codegraph index - Don't initialize unconditionally — skip config-only, docs-only, or otherwise
non-code projects.
.codegraph/is a local artifact; ensure it's gitignored.
- If
Phase 3: Check Operational State
- List open PRs for the project:
gh pr list --state open --limit 10 - Check open issues:
gh issue list --state open --limit 10 - If production/deployment is relevant and documented in
HANDOFF.md, check service health using the methods described there.
Phase 4: Align on Goals
- Summarize what you've learned from the handoff doc and operational state.
- Ask the user: "What's the goal for this session?"
- Based on their answer and the project context, create an actionable plan.
- Present the plan for confirmation before starting work.
Important Reminders
- Don't skip Phase 1. Reading
HANDOFF.mdis the most important step — it prevents re-solving known problems. - Be concise in your summary. The user doesn't need you to recite the handoff doc back to them. Highlight only what's relevant to the session.
- Check for stale branches. If
HANDOFF.mdmentions branches pending PR or in-progress work, verify their current status before assuming they're still relevant. - Adapt to the project. Not every project has Docker, production servers, or multiple repos. Use what's documented in
HANDOFF.mdto guide which checks are relevant.