Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

dev开发者

Agent Skill

dev 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

563

周安装

23

GitHub Stars

44

下载量

182
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dev(开发者)
来源仓库:https://github.com/darraghh1/my-claude-setup
仓库路径:skills/dev
安装命令:
npx skills add https://github.com/darraghh1/my-claude-setup --skill dev
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/darraghh1/my-claude-setup --skill dev

简介

dev 直接实现功能而不生成计划文件,依赖任务列表跟踪进度避免重复劳动。

  • 强调参考现有实现、调用领域专用技能与运行验证测试后再报告完成。
  • 适用于快速迭代场景,跳过文档生成以提升开发效率。
  • 使用前应确认任务列表状态,防止进度丢失与上下文断裂。
  • dev 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Dev

YOUR TASK: $ARGUMENTS

Critical

  • Check TaskList FIRST before doing anything else — tasks may already exist from a previous session or compact
  • Find a reference implementation before writing code — never guess at patterns
  • Invoke the right domain skill for each piece of work — skills embed project-specific conventions
  • Run verification (tests, typecheck) before reporting done — unverified code breaks downstream work
  • Do NOT create plan files, phase files, or documentation — this skill implements directly

Task Tracking

Tasks survive context compacts — skipping this check causes lost progress and repeated work.

Before starting work, run TaskList to check if tasks already exist from a previous session or before a compact. If tasks exist:

  1. Read existing tasks with TaskGet for each task ID
  2. Find the first task with status pending or in_progress
  3. Resume from that task — do NOT recreate the task list

If no tasks exist, create them in Step 2 after scoping the work.

Mark each task in_progress when starting and completed when done.

Workflow

Step 1: Understand the Task

Read any files the user referenced or that are clearly relevant. If the task mentions an existing file, read it. If it mentions a feature area, Glob for related files.

Extract:

  • What needs to change — new files, modified files, or both
  • What domain(s) are involved — database, server actions, services, UI, forms, tests
  • What already exists — don't rebuild what's already there

Step 2: Create Task List

Break the task into concrete sub-tasks. Each task should be a single, completable unit of work.

Always include structured metadata on every task for compact recovery and progress tracking:

TaskCreate({
  subject: "Create notifications service",
  description: "Create createNotificationsService(client) at app/home/[account]/notifications/_lib/server/notifications.service.ts. Methods: list (paginated, account-scoped), markAsRead, create. Follow service pattern from existing services.",
  activeForm: "Creating notifications service",
  metadata: {
    created_by: "dev",
    agent_type: "orchestrator",
    skill: "{domain-skill-used}",
    role: "step",
    attempt: 1
  }
})

Task descriptions must be self-contained — include file paths, function signatures, and acceptance criteria. If your context gets compacted, the task description is all you'll have.

Order tasks by dependency:

  1. Schema/database changes first (if any)
  2. Service layer
  3. Server actions
  4. UI components and forms
  5. Tests (or interleave with TDD — Step 0 pattern)
  6. Verification

Step 3: Identify Domain Skills and References

For each task, determine the right domain skill and find a reference implementation:

Work TypeDomain SkillReference Glob
Database schema, migrations, RLS policies/postgres-expertsupabase/migrations/*.sql
Service layer (business logic, CRUD)/service-builderapp/home/[account]/**/*service*.ts
Server actions (mutations, auth + Zod)/server-action-builderapp/home/[account]/**/*server-actions*.ts
React forms with validation/react-form-builderapp/home/[account]/**/_components/*.tsx
React components, pages, layouts/vercel-react-best-practicesapp/home/[account]/**/_components/*.tsx
E2E tests/playwright-e2ee2e/tests/**/*.spec.ts
UI/UX review/web-design-guidelinesN/A (guideline check, not reference-based)

For each domain involved:

  1. Glob the reference pattern — read ONE file of the matching type
  2. Extract key patterns: function signatures, imports, naming, error handling
  3. Invoke the domain skill before implementing that type of work: Skill({skill: "postgres-expert"}) The skill loads project-specific conventions. Follow them.

Reference is ground truth. If the codebase does something differently from what you'd expect, match the codebase.

Step 4: Implement

Work through your task list sequentially. For each task:

  1. TaskUpdate — mark in_progress
  2. Invoke the domain skill (if not already loaded for this type)
  3. Read the reference file (if not already read for this type)
  4. Implement the change
  5. Run quick verification (tests for that area if they exist)
  6. TaskUpdate — mark completed

Key project patterns to follow:

  • Server actions: validate with Zod, verify auth before processing
  • Services: createXxxService(client) factory wrapping private class, import 'server-only'
  • Imports: path aliases, ordering: React > third-party > internal > local
  • After mutations: revalidatePath('/home/[account]/...')

Scope boundary — implement ONLY what was asked:

  • Do NOT add improvements not specified in the task
  • Do NOT refactor adjacent code
  • Do NOT create documentation files

IMPORTANT: Before using the Write tool on any existing file, you MUST Read it first or the write will silently fail. Prefer Edit for modifying existing files.

Step 5: Verify

Run the verification suite:

pnpm test
pnpm run typecheck

Both must pass. If either fails, fix the issues before proceeding.

If the project doesn't have these commands, check package.json scripts for alternatives.

Step 6: Confirm Scope with Diff

Before summarizing, run git diff --name-only (or git diff --name-only HEAD if changes are staged) to confirm exactly which files were touched. This gives an accurate, complete list rather than relying on memory — especially after context compacts.

If the diff shows files you didn't intend to modify, investigate before reporting done.

Step 7: Close Out Tasks

Before summarizing, mark ALL tasks as completed. Run TaskList to verify — every task should be completed. If the TaskCompleted hook blocks your first attempt (verification gate), immediately retry — the second attempt will go through.

This step exists because agents routinely forget to close tasks, leaving orphaned in_progress entries that confuse future sessions.

Step 8: Summary

Report what was done:

  • Files created/modified (list from git diff --name-only with brief description of each change)
  • Domain skills used (which skills were invoked)
  • Verification result (tests passing, typecheck clean)
  • Anything left for the user (manual steps, env vars to set, etc.)

Resuming After Context Compact

If you notice context was compacted or you're unsure of current progress:

  1. Run TaskList to see all tasks and their status
  2. Find the in_progress task — that's where you were
  3. Run TaskGet {id} on that task — read description AND metadata for full context (skill used, role, attempt count)
  4. Continue from that task — don't restart from the beginning

Tasks persist across compacts. The task list and metadata are your source of truth for progress, not your memory.

Pattern for every work session:

TaskList → find in_progress or first pending → TaskGet (read metadata) → continue work → TaskUpdate (completed) → next task

Troubleshooting

Domain skill not found or not relevant

Cause: The task doesn't fit neatly into one domain skill.

Fix: Skip skill invocation for that piece of work. Find a reference file of the same type in the codebase and follow its patterns directly. The reference is more important than the skill.

Tests fail but code looks correct

Cause: Reference patterns may have changed, or existing tests have assumptions your change breaks.

Fix: Re-read the failing test file. Understand what it expects. If your change intentionally alters behavior, update the test. If not, your implementation has a bug — fix it.

Task is too large for a single session

Cause: The task scope exceeds what can be done before context fills up.

Fix: This is exactly why task tracking exists. Your tasks will survive compaction. If the task is truly massive (10+ files, multiple domains), suggest the user create a plan with /create-plan instead.

Constraints

  • Do NOT create plan files, phase files, or review files — this is for direct implementation
  • Do NOT skip the reference read — guessing at patterns causes review failures
  • Do NOT skip verification — unverified code is incomplete work
  • Auto-invoke domain skills for matching work types — they embed conventions you'll miss otherwise
  • Keep task descriptions self-contained — they're your lifeline after compaction

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.93%
按下载量换算71

Claude

27.79%
按下载量换算51

Cursor

17.03%
按下载量换算31

Gemini CLI

9.22%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills