Token导航 LogoToken导航TokenDH.com
开发执行命令github未标认证来源可访问clear审计异常

developer-experience开发者经验

Agent Skill

developer-experience 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

713

周安装

30

GitHub Stars

4

下载量

250
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/89jobrien/steve --skill developer-experience

简介

developer-experience 优化开发流程,减少摩擦并自动化重复任务提升效率。

  • 涵盖环境搭建、别名配置、IDE 设置与构建测试加速等全流程改进。
  • 目标是让开发更愉悦高效,尤其关注 onboarding 速度问题。
  • 适用于新项目启动或现有流程瓶颈分析与改造场景。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Developer Experience

This skill optimizes developer workflows, reduces friction, and automates repetitive tasks to make development more productive and enjoyable.

When to Use This Skill

  • When setting up new projects or onboarding developers
  • When identifying and eliminating repetitive tasks
  • When improving build and test execution times
  • When optimizing development workflows
  • When creating helpful aliases and shortcuts
  • When setting up IDE configurations and tooling

What This Skill Does

  1. Environment Setup: Simplifies onboarding to under 5 minutes
  2. Workflow Optimization: Identifies and automates repetitive tasks
  3. Tooling Enhancement: Configures IDE settings, git hooks, and CLI commands
  4. Documentation: Creates setup guides and troubleshooting documentation
  5. Automation: Creates scripts and commands for common tasks
  6. Friction Reduction: Eliminates manual steps and improves feedback loops

How to Use

Optimize Workflow

Analyze the development workflow and suggest improvements
Set up this project for optimal developer experience

Specific Improvements

Create helpful npm scripts for common tasks
Set up git hooks for code quality checks

Optimization Areas

Environment Setup

Goals:

  • Onboarding in under 5 minutes
  • Intelligent defaults
  • Automated dependency installation
  • Helpful error messages
  • Clear setup instructions

Deliverables:

  • README with clear setup steps
  • Setup scripts (setup.sh, setup.ps1)
  • Environment validation
  • Dependency checking
  • Configuration templates

Development Workflows

Identify Repetitive Tasks:

  • Code generation
  • Database migrations
  • Test running
  • Build processes
  • Deployment steps

Create Automation:

  • npm/yarn scripts
  • Makefile commands
  • Shell aliases
  • Custom CLI tools
  • Task runners

Tooling Enhancement

IDE Configuration:

  • EditorConfig
  • ESLint/Prettier configs
  • VS Code settings
  • Debug configurations
  • Snippet libraries

Git Hooks:

  • Pre-commit hooks (linting, formatting)
  • Commit message validation
  • Pre-push hooks (tests)
  • Post-merge hooks (dependency updates)

CLI Commands:

  • Project-specific commands
  • Development shortcuts
  • Database utilities
  • Testing helpers

Examples

Example 1: Project Setup Optimization

Input: Optimize the setup process for this project

Output:

## Developer Experience Improvements

### Current Setup Issues
- Manual dependency installation
- No environment validation
- Unclear setup instructions
- Missing development tools

### Improvements

**1. Setup Script**

#!/bin/bash

setup.sh

echo "Setting up development environment..."

Check Node.js version

node_version=$(node -v | cut -d'v' -f2 | cut -d'.' -f1) if [ "$node_version" -lt 18 ]; then echo "Error: Node.js 18+ required" exit 1 fi

Install dependencies

npm install

Setup environment

cp .env.example .env

Run database migrations

npm run db:migrate

echo "Setup complete! Run 'npm run dev' to start."


**2. Enhanced package.json Scripts**

{ "scripts": { "dev": "nodemon src/index.js", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint .", "lint:fix": "eslint . --fix", "format": "prettier --write .", "db:migrate": "knex migrate:latest", "db:seed": "knex seed:run", "setup": "bash setup.sh" } }


**3. Git Hooks**

.husky/pre-commit

#!/bin/sh npm run lint npm run test


### Example 2: Workflow Automation

**Input**: Create shortcuts for common development tasks

**Output**:

Development Shortcuts

Makefile Commands

.PHONY: dev test lint format db-setup

dev:
 npm run dev

test:
 npm test

lint:
 npm run lint

format:
 npm run format

db-setup:
 npm run db:migrate
 npm run db:seed

clean:
 rm -rf node_modules dist .next

install:
 npm install

Shell Aliases

# Add to ~/.zshrc or ~/.bashrc
alias dev="npm run dev"
alias test="npm test"
alias lint="npm run lint"
alias format="npm run format"

VS Code Tasks

// .vscode/tasks.json
{
  "version": "2.0.0",
  "tasks": [
    {
      "label": "Run Tests",
      "type": "shell",
      "command": "npm test",
      "group": "test"
    },
    {
      "label": "Start Dev Server",
      "type": "shell",
      "command": "npm run dev",
      "group": "build",
      "isBackground": true
    }
  ]
}
## Best Practices

### DX Principles

1. **Invisible When Working**: Great DX is seamless when it works
2. **Obvious When Broken**: Clear error messages when something fails
3. **Fast Feedback**: Quick build/test cycles
4. **Clear Documentation**: Setup guides that actually work
5. **Helpful Defaults**: Sensible configurations out of the box

### Success Metrics

- **Time to First Success**: How long until a new developer runs the app?
- **Manual Steps**: Count of manual steps eliminated
- **Build/Test Time**: Execution time for common tasks
- **Developer Satisfaction**: Feedback on workflow improvements

### Common Improvements

**Fast Feedback:**
- Hot reload for development
- Fast test execution
- Quick build times
- Instant linting feedback

**Clear Errors:**
- Helpful error messages
- Stack traces with context
- Setup validation
- Dependency checking

**Automation:**
- One-command setup
- Automated testing
- Code generation
- Deployment automation

## Reference Files

- **`references/ONBOARDING_GUIDE.template.md`** - Developer onboarding guide template with environment setup, day-by-day tasks, and troubleshooting

## Related Use Cases

- Project setup optimization
- Workflow automation
- Tooling configuration
- Developer onboarding
- Reducing development friction
- Improving build/test times

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

29.86%
按下载量换算75

OpenCode

20.92%
按下载量换算52

Antigravity

17.23%
按下载量换算43

windsurf

12.22%
按下载量换算31

Codex

7.94%
按下载量换算20

Gemini CLI

3.65%
按下载量换算9

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/89jobrien/steve --skill developer-experience;npx skills add 89jobrien/steve --skill "developer-experience" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills