Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Dev Workflow

ASecurity

Development workflow commands for the Guren monorepo. Handles building packages, running tests (smart targeted or full suite), type checking, pre-PR validation, E2E tests, and dev server startup. Use when user says "build", "test", "typecheck", "type check", "run tests", "test my changes", "quick test", "pr check", "pre-PR", "ready for PR", "dev server", "start server", "e2e", "E2E", "end to end", "playwright".

29 stars
0 votes
0 copies
0 views
Added 9/23/2026
developmenttypescriptbashtestingdebugginggitapidatabase

Works with

cliapi

Security Analysis

A100/100

Scanned 9/23/2026

Install to Claude Code

$npx -y skills add gurenjs/guren --skill dev-workflow --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Dev Workflow?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Dev Workflow
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/gurenjs-dev-workflow/badge)](https://www.skillsdirectory.com/skills/gurenjs-dev-workflow)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: dev-workflow
description: Development workflow commands for the Guren monorepo. Handles building packages, running tests (smart targeted or full suite), type checking, pre-PR validation, E2E tests, and dev server startup. Use when user says "build", "test", "typecheck", "type check", "run tests", "test my changes", "quick test", "pr check", "pre-PR", "ready for PR", "dev server", "start server", "e2e", "E2E", "end to end", "playwright".
---

# Development Workflow Skill

You are a development workflow assistant for the Guren framework monorepo.

## Your Role

Help users run builds, tests, type checks, and development servers with intelligent error diagnosis.

## Commands

### Build

Build all packages in the correct dependency order.

```bash
bun run build
```

The order is derived from each package's `dependencies`/`peerDependencies`, so new
packages (plugins included) are picked up without editing any script. Print it with:

```bash
bun run build:list
```

**Single package:**
```bash
bun run build server  # @guren/server
bun run build orm     # @guren/orm
bun run build cli     # @guren/cli
```

**On failure:** Identify the failing package and show the TypeScript/build error. The issue is usually in that package's `src/` directory.

### Test

Two modes: **smart** (targeted) and **full**.

#### Smart Test (default for "test my changes", "quick test")

1. Get changed files:
```bash
git diff --name-only HEAD
git diff --name-only --cached
```

2. Map to packages:
   - `packages/server/` → `bun test packages/server`
   - `packages/orm/` → `bun test packages/orm`
   - `packages/cli/` → `bun test packages/cli`
   - `packages/testing/` → `bun test packages/testing`
   - `examples/blog/` → `bun run test:examples`
   - `examples/api/` → `bun run test:examples`

3. Decision logic:
   - < 3 files in same package → run package tests
   - Multiple packages changed → run affected packages
   - > 10 files or cross-cutting → run full suite
   - No test impact detected → skip tests

4. After smart tests pass, remind: "Consider running full suite before PR: `bun run test`"

#### Full Test Suite (default for "run tests", "test")

```bash
bun run test
```

Runs:
- `bun run test:bun` — Framework tests. The package list is discovered from `packages/*`
  (every package whose `test` script uses Bun's runner), so new packages need no wiring.
  `bun run test:bun:list` prints it; `bun run test:bun <pkg>` narrows it.
- `bun run test:examples` — Example app tests (blog, api)
- `bun run test:testing` — `@guren/testing` only (vitest, so not part of `test:bun`)

**On failure:** Identify the failing test file and test name, show the error, suggest fixes.

### Type Check

```bash
bun run typecheck
```

Runs root monorepo + blog example type checks.

**On failure:** List each error with file:line, show the message, suggest fixes for common issues (missing types, incorrect imports, type mismatches).

### Lint

```bash
bun run lint
```

oxlint with the type-aware rules (`typescript/no-floating-promises`) plus the repo's own `guren/await-async-assertion`. Warnings fail the run too. `bun run lint:fix` applies the safe auto-fixes.

**On failure:** Show each finding with file:line and the rule name. A `no-floating-promises` finding on a call whose result is dropped on purpose takes a `void` in front; an un-awaited `expect(...).rejects` / `.resolves` takes `await`.

### PR Check (pre-PR validation)

Run all checks in order. **Stop and report on first failure:**

```bash
bun run build && bun run typecheck && bun run lint && bun run test
```

On success, confirm:
- All packages built successfully
- No type errors found
- All tests passing

### E2E Tests (default for "e2e", "playwright", "end to end")

Runs Playwright E2E tests against the blog example app.

**Prerequisites:** Database running + migrated + seeded, packages built, dev server NOT already running (Playwright starts its own).

```bash
cd examples/blog && bun run e2e
```

Opens Playwright UI for debugging:
```bash
cd examples/blog && bun run e2e:ui
```

**Known flaky tests:**
- Validation tests (Inertia XHR round-trip timing) are flaky in CI. They are skipped via `test.skip(!!process.env.CI)` but may occasionally fail locally too. If only validation tests fail, it is safe to proceed.

**On failure:**
1. Check if the failure is a known flaky test (validation spec)
2. If not, check the error screenshot in `examples/blog/test-results/`
3. Ensure the database is running and seeded: `bun run db:up && bun run db:migrate && bun run db:seed`

### Dev Server

Start the blog example development server.

```bash
bun run dev
```

Available at http://localhost:3333

**Prerequisites check before starting:**
1. Database running? If not: `bun run db:up`
2. Migrations applied? If not: `bun run db:migrate`
3. Packages built? If not: `bun run build`

## Package Test Commands

| Package | Command |
|---------|---------|
| Server | `bun test packages/server` |
| ORM | `bun test packages/orm` |
| CLI | `bun test packages/cli` |
| Testing | `bun test packages/testing` |
| Core | `bun test packages/core` |
| Create App | `bun test packages/create-app` |
| Examples | `bun run test:examples` |
| All | `bun run test` |

Attribution

gurenjsgurenjs
View sourceMore from gurenjs →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284072 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2192 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →