Skip to main content
تشغيل أي مهارة في Manus
بنقرة واحدة
مستودع GitHub

dobby

يحتوي dobby على 29 من skills المجمعة من kvnwolf، مع تغطية مهنية على مستوى المستودع وصفحات skill داخل الموقع.

skills مجمعة
29
Stars
0
محدث
2026-07-22
Forks
0
التغطية المهنية
4 فئات مهنية · 100% مصنفة
مستكشف المستودعات

Skills في هذا المستودع

release
مطوّرو البرمجيات

Cut an npm release of @kvnwolf/dobby from the main checkout — inferred bump, raw-TS tarball gate, publish, tag, GitHub release with changelog.

2026-07-22
commit
مطوّرو البرمجيات

Syncs documentation, authors the commit message + PR body, runs the gate and performs the git/gh ceremony directly (stage → `dobby check --fix` → commit → push → PR), then monitors the PR to a verdict. Use when committing code, finishing a task, pushing changes, or creating a PR.

2026-07-22
migrate-config
مطوّرو البرمجيات

One-pass migration of a consumer repo off vite-plus onto @kvnwolf/dobby — swap deps, thin `tsconfig.json` and delete the now-default tool configs (biome/vite/vitest/drizzle, kept only for real deltas), move files to canonical paths, regenerate dobby.config.json, drop .conductor, rewire CI + Vercel build, verify with `dobby check`. Run in a consumer repo, once, after updating the dobby plugin.

2026-07-22
onboard
مطوّرو البرمجيات

Set up a repo (greenfield or existing) for the work skills — interview, install @kvnwolf/dobby, scaffold the base files + thin tsconfig, write the dobby.config.json contract. Run once.

2026-07-22
diagnose
محللو ضمان جودة البرمجيات والمختبرون

Disciplined diagnosis loop for hard bugs — build a fast deterministic feedback loop, rank falsifiable hypotheses, instrument one variable at a time. Use when something is failing, a bug is intermittent or non-obvious, or there's a performance regression.

2026-07-21
dispatch
المهن الحاسوبية الأخرى

Dispatch a scoped, ad-hoc task to a worker agent (or a few in parallel) and review what comes back — without the full /dobby:execute plan-and-waves ceremony. Use for a small fix or change, or a bounded investigation, when you don't need a STATE.md spec.

2026-07-21
execute
المهن الحاسوبية الأخرى

Build an approved plan's tasks — per task, separate agents implement → code-review → verify in a loop until both pass. Use to execute a task plan, standalone or as the execute stage after /dobby:spec.

2026-07-21
finish
مطوّرو البرمجيات

Post-merge worktree teardown — use when the PR of the current goal's worktree is merged and you want to clean up and return to main.

2026-07-21
learn
المهن الحاسوبية الأخرى

Mine a marked session (a /dobby:mark indicator, or a raw path to a session .jsonl from any project) into concrete edits to dobby's skills, from how they actually behaved in the field. Use in the dobby repo when you have a session pointer to mine.

2026-07-21
mark
المهن الحاسوبية الأخرى

Emit a portable pointer ("indicator") to the CURRENT Claude Code session. Use when you hit friction with a dobby skill while working in a consumer project and want to flag this session for /dobby:learn — not fix the kit now.

2026-07-21
prototype
مطوّرو البرمجيات

Build a throwaway prototype to answer a design question before committing — an interactive terminal app for state/business-logic questions, or several UI variants on one route with a switcher. Use when the user wants to prototype something, compare UI variants, or sanity-check a data model or state machine; or when /dobby:interview or /dobby:research hits a question only answerable by playing with it.

2026-07-21
scope
المهن الحاسوبية الأخرى

Start a work session — normalize the goal (free-text prompt, or the configured tracker's issue — a GitHub `#123`/URL or a Linear `VON-123`/URL) and ground it in the codebase before interviewing or planning. Use at the start of any feature, fix, or refactor, or when handed a ticket to work on.

2026-07-21
spec
المهن الحاسوبية الأخرى

Turn an aligned task and its research into a concrete build plan with a vertical-slice task table and per-task verify recipes. Use after interviewing/researching a task, or to plan a feature and break it into tasks. No plan mode.

2026-07-21
backlog
مطوّرو البرمجيات

Quick-capture a follow-up, bug, or tech-debt item to the project tracker (GitHub Issues, Linear, or local). Use when you spot something worth tracking mid-work and want it logged, not triaged now.

2026-07-20
resolve-conflicts
مطوّرو البرمجيات

Resolve an in-progress merge, rebase, or cherry-pick conflict by recovering each side's intent from history and PRs, then reconciling every hunk without losing either side's behaviour.

2026-07-20
triage
مطوّرو البرمجيات

Triage an incoming issue or external PR — verify the claim, then write a behavioral agent brief or record the rejection in the out-of-scope KB.

2026-07-20
address-review
محللو ضمان جودة البرمجيات والمختبرون

Address external code-review findings on the current PR — triage with a human gate, delegate fixes, resolve threads, re-trigger review, report merge-readiness. Use when a review bot (Greptile, CodeRabbit) or human reviewer left comments on a PR and you want the feedback addressed and the review green, or to rebut a stale finding.

2026-07-15
create-skill
المهن الحاسوبية الأخرى

Creates or modifies agent skills, single- or multi-workflow (orchestrator). Use when the user wants a skill created, edited, or migrated between single and multi-workflow.

2026-07-15
data-fetching
مطوّرو البرمجيات

Recipe for client-side data fetching with TanStack DB — server function → Drizzle-derived query collection → LiveQuery. Use when adding data fetching, a new collection, or a list/table view.

2026-07-15
data-processing
مطوّرو البرمجيات

The write-side conventions for this app — forms (useAppForm from @/shared, Zod validation, field + dialog anatomy) and mutation UX (submit-validated dialogs, optimistic in-place toggles, type-to-confirm, toasts). Use when touching any form, input, validation, submit flow, or data mutation. Write-side partner to /dobby:data-fetching.

2026-07-15
handoff
مطوّرو البرمجيات

Compact the current session into an ephemeral fork document a fresh Claude Code session can pick up.

2026-07-15
improve-architecture
مطوّرو البرمجيات

Review the architecture of a module, subsystem, or repo and propose prioritized improvements. Use to assess structural health, find module-boundary smells, or plan a refactor — it reports opportunities, it doesn't change code.

2026-07-15
interview
مطوّرو البرمجيات

Interview the user relentlessly to reach a complete, shared understanding of a task before it's planned or built. Use before planning a feature, change, or refactor; to stress-test a design; to resolve ambiguity; or when the user says "interview me" / "grill me".

2026-07-15
map
مطوّرو البرمجيات

Turn a loose, multi-session idea into a durable decision-map of dependency-linked investigation tickets, then drive it toward a plan one ticket per cycle.

2026-07-15
module-conventions
مطوّرو البرمجيات

Per-module file-type convention for this stack (TanStack Start + Drizzle/Neon + Better Auth) — which role file each piece of code belongs in (.server.ts · functions.ts · .browser.ts · schema.gen.ts), deep-path imports (no barrels), eager instances, env as single source. Use when creating or refactoring a module or feature slice, deciding where a piece of code goes (a server function, a server-only instance, a browser client), or co-locating a Drizzle schema.

2026-07-15
research
مطوّرو البرمجيات

Gather the technical context a plan needs before building — current docs, reusable skills/modules, resolved unknowns. Use after aligning on a task and before planning it, or when asked to research the tech or approach for an upcoming change. (For a one-off doc lookup, use find-docs directly.)

2026-07-15
teach
معلمو التعليم العالي، جميع الآخرون

Learn a topic in-session — taught from trusted resources, verified with a tight feedback loop, recorded as evidence of understanding.

2026-07-15
wizard
مطوّرو البرمجيات

Generate an interactive bash wizard that guides a human through a manual procedure — opening URLs, capturing values, and writing .env files and GitHub Actions secrets.

2026-07-15
wrap
مطوّرو البرمجيات

Close out a work session — final human smoke test, doc/ADR reconciliation, optional skill packaging, then dispose the ephemeral STATE.md and hand off to /dobby:commit. Use when finishing a feature or session, or wrapping up before committing.

2026-07-15