agentsclimarketplace

Workflow onboard

Skill kensaurus/cursor-kenji/skills/workflow-onboard

First-contact orientation for an unfamiliar codebase. Reads package manifests, entry points, routing, data layer, auth, environment variables, and recent git history. Produces a concise briefing: what the app does, how it's structured, how to run it locally, and the top areas to understand first. Generic across web, mobile, and full-stack repos. Use when "I'm new to this repo", "orient me", "explain this codebase", "what does this do?", "onboard me", "first day on this project", or "catch me up on the codebase".From its SKILL.md

Install
npx -y skills add kensaurus/cursor-kenji --skill workflow-onboard

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 6 stars6 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 file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

2.9 KB, 625 tokens by cl100k_base, as published. Nobody here has run it

workflow-onboard — Codebase Orientation

Orient to any repo in under 5 minutes. Read first, explain second.


Step 1: Stack & entry points

Read (do not shell-grep unless necessary):

FileWhat to extract
package.json / pyproject.toml / Cargo.tomlRuntime, framework, key deps, scripts
README.mdStated purpose, setup steps, architecture notes
src/app/layout.tsx / pages/_app.tsx / App.tsxRoot component, providers, global context
src/app/**/page.tsx / src/routes/** / app/routes/**Route tree → feature map
capacitor.config.* / app.json / app.config.*Mobile targets (Expo/RN/Capacitor)
android/ / ios/ presenceNative targets

Step 2: Data & auth layer

FileWhat to extract
supabase/migrations/*.sql (latest 3)Schema, tables, relationships
prisma/schema.prisma / drizzle/*.tsORM model
src/lib/supabase.* / src/lib/db.*Client init, auth helper
.env.example / .env.local (names only, never values)Required env vars
middleware.ts / auth.ts / src/lib/auth.*Auth guard pattern

Step 3: Recent context

git log --oneline -15          # recent work direction
git diff HEAD~5 --stat         # files changed recently

Step 4: Orientation briefing

Produce a structured briefing covering:

  1. What it is — one sentence on the product's purpose
  2. Tech stack — framework + DB + auth + mobile targets
  3. Feature map — top-level routes grouped by capability
  4. Data model — key entities and relationships (3-5 tables max)
  5. Auth pattern — how sessions work and who the roles are
  6. How to run — exact commands from package.json scripts
  7. Environment — required env vars (names only) and where to find values
  8. Top 3 to understand first — the areas with the most business logic or complexity

Format as a scannable briefing, not a wall of text. Use short tables where helpful.


Guardrails

  • Never print .env values — names only
  • If the codebase is a monorepo, scope the briefing to the specific app/package the user is working in (ask if unclear)
  • If critical files are missing (no README, no schema), say so explicitly rather than guessing

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,750. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.