Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计通过

engineer-skill-creator工程师技能创建器

Agent Skill

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

总安装

2,036

周安装

84

GitHub Stars

125

下载量

665
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:engineer-skill-creator(工程师技能创建器)
来源仓库:https://github.com/jamesrochabrun/skills
仓库路径:skills/engineer-skill-creator
安装命令:
npx skills add https://github.com/jamesrochabrun/skills --skill engineer-skill-creator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jamesrochabrun/skills --skill engineer-skill-creator

简介

工程师技能创建器将提取的专业知识转化为可操作、可查询的技能:

  • 输入:工程师简介(来自提取器)
  • 流程:分类、整理、创建查询系统
  • 输出:渐进式披露技能
  • 好处:
  • 快速找到专业知识
  • 获取特定任务的指导
  • 从真实的例子中学习
  • 保持一致性
  • 秤知识
  • 与代理一起使用:
  • “使用专家技能/[工程师]-导师/,[任务描述]”
  • 完整的工作流程:
  • 提取专业知识:extract_engineer.sh 用户名
  • 创建技能:create_expert_skill.sh 用户名
  • 与代理一起使用:参考提示中的技能
  • 获得一致的专家级结果
  • “渐进式披露:仅在需要时显示需要的内容。”
  • 每周安装量
  • 84
  • 存储库
  • 詹姆斯罗查布伦/技能
  • GitHub 之星
  • 125
  • 第一次看到
  • 2天前
  • 安全审计
  • Gen Agent Trust Hub 通行证
  • 套接字通行证
  • 斯尼克通行证

SKILL.md

Engineer Skill Creator

Transform extracted engineer profiles into ready-to-use skills with progressive disclosure, enabling AI agents to efficiently find and apply the right expertise for any coding task.

What This Skill Does

Takes the output from engineer-expertise-extractor and creates a structured, queryable skill that:

  • Organizes expertise by task type - Find relevant patterns quickly
  • Uses progressive disclosure - Show only what's needed for current task
  • Provides contextual examples - Real code samples for specific scenarios
  • Guides agents intelligently - Help find the right expertise at the right time
  • Enables task-specific queries - "How would they handle authentication?"

The Two-Step Process

Step 1: Extract (engineer-expertise-extractor)

./extract_engineer.sh senior_dev
# Output: engineer_profiles/senior_dev/

Step 2: Create Skill (THIS SKILL)

./create_expert_skill.sh senior_dev
# Output: expert-skills/senior-dev-mentor/

Result: A ready-to-use skill that agents can query for specific guidance.

Why Progressive Disclosure Matters

Without progressive disclosure:

  • Agent gets all expertise at once (overwhelming)
  • Hard to find relevant information
  • Context limits reached quickly
  • Inefficient and slow

With progressive disclosure:

  • Agent asks specific question
  • Gets only relevant expertise
  • Focused, actionable guidance
  • Efficient use of context
  • Faster, better results

Output Structure

When you create a skill from an engineer profile, you get:

expert-skills/
└── [engineer-name]-mentor/
    ├── SKILL.md (skill documentation)
    ├── query_expertise.sh (interactive query tool)
    ├── expertise/
    │   ├── by_task/
    │   │   ├── authentication.md
    │   │   ├── api_design.md
    │   │   ├── database_design.md
    │   │   ├── error_handling.md
    │   │   └── testing.md
    │   ├── by_language/
    │   │   ├── typescript.md
    │   │   ├── python.md
    │   │   └── go.md
    │   ├── by_pattern/
    │   │   ├── dependency_injection.md
    │   │   ├── repository_pattern.md
    │   │   └── factory_pattern.md
    │   └── quick_reference/
    │       ├── coding_style.md
    │       ├── naming_conventions.md
    │       └── best_practices.md
    └── examples/
        ├── authentication_service.ts
        ├── api_controller.ts
        └── test_example.spec.ts

Progressive Disclosure System

Query by Task

Agent asks: "How would they implement user authentication?"

Skill provides:

  1. Relevant patterns from by_task/authentication.md
  2. Code examples from their auth PRs
  3. Their testing approach for auth
  4. Security considerations they use
  5. Related best practices

NOT provided (yet):

  • Unrelated patterns
  • Database design details
  • Payment processing approach
  • Everything else

Query by Language

Agent asks: "Show me their TypeScript coding style"

Skill provides:

  1. TypeScript-specific conventions
  2. Type usage patterns
  3. Interface design approach
  4. Error handling in TS
  5. Real TS examples

Query by Pattern

Agent asks: "How do they implement dependency injection?"

Skill provides:

  1. DI pattern from their code
  2. Constructor injection examples
  3. IoC container setup
  4. Testing with DI
  5. When they use it vs when they don't

Skill Usage by Agents

Basic Query

"Using the skill expert-skills/senior-dev-mentor/, show me how to
implement authentication"

Skill responds with:

  • Authentication patterns they use
  • Real code examples
  • Testing approach
  • Security practices
  • Step-by-step guidance

Language-Specific Query

"Using expert-skills/senior-dev-mentor/, write a TypeScript service
following their style"

Skill provides:

  • TypeScript coding conventions
  • Class structure patterns
  • Type definitions approach
  • Import organization
  • Testing patterns for services

Pattern-Specific Query

"Using expert-skills/senior-dev-mentor/, implement the repository
pattern as they would"

Skill provides:

  • Their repository pattern implementation
  • Interface definitions
  • Concrete implementation example
  • Testing approach
  • When to use this pattern

Created Skill Features

1. Task-Based Navigation

Expertise organized by common development tasks:

  • Authentication & Authorization
  • API Design
  • Database Design
  • Error Handling
  • Testing Strategies
  • Performance Optimization
  • Security Practices
  • Code Review Guidelines

2. Language-Specific Guidance

Separate docs for each language they use:

  • Naming conventions per language
  • Language-specific patterns
  • Idiomatic code examples
  • Framework preferences

3. Pattern Library

Design patterns they commonly use:

  • When to apply each pattern
  • Implementation examples
  • Testing approach
  • Common pitfalls to avoid

4. Quick Reference

Fast access to essentials:

  • Coding style at a glance
  • Naming conventions cheat sheet
  • Common commands/snippets
  • Review checklist

5. Interactive Query Tool

Script that helps find expertise:

./query_expertise.sh

What are you working on?
1) Authentication
2) API Design
3) Database
4) Testing
5) Custom query

Select: 1

=== Authentication Expertise ===

[Shows relevant patterns, examples, best practices]

How Skills Are Created

Input

Engineer profile from extractor:

engineer_profiles/senior_dev/
├── coding_style/
├── patterns/
├── best_practices/
├── architecture/
├── code_review/
└── examples/

Process

  1. Analyze profile structure
  2. Categorize by task - Group related expertise
  3. Extract examples - Pull relevant code samples
  4. Create navigation - Build progressive disclosure system
  5. Generate queries - Create query tool
  6. Package skill - Ready-to-use skill structure

Output

Skill with progressive disclosure:

expert-skills/senior-dev-mentor/
├── SKILL.md
├── query_expertise.sh
├── expertise/
│   ├── by_task/
│   ├── by_language/
│   ├── by_pattern/
│   └── quick_reference/
└── examples/

Example Created Skill

Authentication Task Doc

File: expertise/by_task/authentication.md

# Authentication - Senior Dev's Approach

## Overview
How senior_dev implements authentication based on 15 PRs analyzed.

## Preferred Approach
- JWT-based authentication
- Refresh token rotation
- HttpOnly cookies for web
- Token in headers for mobile/API

## Implementation Pattern

### Service Structure
[Code example from their PR #1234]

### Token Generation
[Code example from their PR #5678]

### Token Validation
[Code example from their PR #9012]

## Testing Approach
- Unit tests for token generation
- Integration tests for auth flow
- Security tests for token validation

[Test examples from their code]

## Security Considerations
From their code reviews:
- Always validate token signature
- Check expiration
- Implement rate limiting
- Use secure random for secrets

## Common Pitfalls They Avoid
- Storing tokens in localStorage (XSS risk)
- Not rotating refresh tokens
- Weak secret keys
- Missing token expiration

## Related Patterns
- Error handling for auth failures
- Middleware pattern for auth checks
- Repository pattern for user lookup

## Examples
See: examples/authentication_service.ts

Use Cases

1. Consistent Code Generation

Problem: AI generates code that doesn't match team style

Solution:

"Using expert-skills/senior-dev-mentor/, write a user service"

Result: Code matching senior dev's exact style and patterns

2. Task-Specific Guidance

Problem: How would senior dev approach this specific problem?

Solution:

"Using expert-skills/tech-lead-mentor/, how do I handle rate limiting?"

Result: Their specific approach, examples, and reasoning

3. Code Review Training

Problem: Learn what experienced engineer looks for

Solution:

"Using expert-skills/architect-mentor/, review this code"

Result: Review following their standards and priorities

4. Onboarding

Problem: New engineer needs to learn team conventions

Solution: Give them access to expert-skills

Result: Learn from real examples, specific to their tasks

Skill Query Examples

Example 1: Authentication

./query_expertise.sh
> Working on: Authentication
> Language: TypeScript

Output:
=== Authentication in TypeScript ===

Preferred approach: JWT with refresh tokens

[Shows specific auth pattern]
[Provides TS code example]
[Testing strategy]
[Security checklist]

Related: error_handling.md, api_design.md

Example 2: Database Design

./query_expertise.sh
> Working on: Database design
> Database: PostgreSQL

Output:
=== Database Design - PostgreSQL ===

Schema design approach:
- Normalized tables
- Foreign keys enforced
- Indexes on lookups
- Migrations for changes

[Shows migration example]
[Query optimization patterns]
[Testing approach]

Example 3: Error Handling

./query_expertise.sh
> Working on: Error handling
> Language: Python

Output:
=== Error Handling in Python ===

Pattern: Custom exception classes + global handler

[Shows exception hierarchy]
[Handler implementation]
[Logging approach]
[User-facing messages]

Creating a Skill

Basic Usage

cd engineer-skill-creator
./scripts/create_expert_skill.sh [engineer-username]

Advanced Usage

./scripts/create_expert_skill.sh [engineer-username] --focus api,testing

Limits skill to specific focus areas.

What Gets Generated

Automatic categorization:

  • Groups related patterns
  • Organizes by common tasks
  • Separates by language
  • Highlights best practices

Query system:

  • Interactive CLI tool
  • Smart search
  • Related content linking
  • Example suggestions

Documentation:

  • Task-specific guides
  • Language references
  • Pattern library
  • Quick reference cards

Integration with Development Workflow

In Claude Code

"Load the expert-skills/senior-dev-mentor/ skill and help me
implement this feature following their approach"

In Code Review

"Using expert-skills/tech-lead-mentor/, review this PR for:
- Code style compliance
- Pattern usage
- Best practices
- Security considerations"

In Architecture Decisions

"Using expert-skills/architect-mentor/, how would they design
this microservice?"

Skill Maintenance

Updating Skills

When engineer profile is updated:

./scripts/update_expert_skill.sh senior-dev

Re-generates skill with new expertise.

Version Control

Each skill generation includes:

  • Source profile version
  • Generation date
  • Expertise count
  • Last PR analyzed

Best Practices

When Creating Skills

DO:

  • ✅ Create skills for different expertise areas
  • ✅ Update skills regularly (quarterly)
  • ✅ Test queries before deploying
  • ✅ Document what the skill covers

DON'T:

  • ❌ Create skills from insufficient data (< 20 PRs)
  • ❌ Mix multiple engineers in one skill
  • ❌ Ignore profile updates
  • ❌ Over-categorize (keep it simple)

When Using Skills

DO:

  • ✅ Ask specific questions
  • ✅ Provide context (language, task)
  • ✅ Reference examples
  • ✅ Combine with your judgment

DON'T:

  • ❌ Blindly copy patterns
  • ❌ Skip understanding reasoning
  • ❌ Ignore project context
  • ❌ Treat as inflexible rules

Limitations

What Skills Can Do:

  • ✅ Provide proven patterns
  • ✅ Show real examples
  • ✅ Guide implementation
  • ✅ Explain reasoning
  • ✅ Surface best practices

What Skills Cannot Do:

  • ❌ Make decisions for you
  • ❌ Understand your specific context
  • ❌ Replace senior engineer judgment
  • ❌ Guarantee correctness
  • ❌ Adapt to new technologies automatically

Summary

The Engineer Skill Creator transforms extracted expertise into actionable, queryable skills:

Input: Engineer profile (from extractor) Process: Categorize, organize, create query system Output: Progressive disclosure skill

Benefits:

  • Find expertise fast
  • Get task-specific guidance
  • Learn from real examples
  • Maintain consistency
  • Scale knowledge

Use with agents:

"Using expert-skills/[engineer]-mentor/, [task description]"

The complete workflow:

  1. Extract expertise: extract_engineer.sh username
  2. Create skill: create_expert_skill.sh username
  3. Use with agents: Reference skill in prompts
  4. Get consistent, expert-level results

"Progressive disclosure: Show only what's needed, when it's needed."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

30.13%
按下载量换算200

OpenCode

21.73%
按下载量换算145

windsurf

15.39%
按下载量换算102

Codex

13.37%
按下载量换算89

Gemini CLI

7.2%
按下载量换算48

Antigravity

3.64%
按下载量换算24

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills