Token导航 LogoToken导航TokenDH.com
AI 工具执行命令github未标认证来源可访问clear审计通过

claude-code-developmentClaude 代码开发

Agent Skill

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

总安装

374

周安装

15

GitHub Stars

2

下载量

121
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/shino369/claude-code-personal-workspace --skill claude-code-development

简介

claude-code-development 提供 .claude 目录结构的完整开发指南。

  • 涵盖 agents、skills、commands、hooks 和 MCP 集成的最佳实践。
  • 所有官方文档引用均维护在 docs/claude/README.md 中。
  • 创建新组件前应先查阅记忆管理和子代理文档确保符合规范。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Claude Code Development

Overview

This skill provides comprehensive guidance for creating and configuring Claude Code components following official best practices. Use this when working with .claude/ directory structure including agents, skills, commands, hooks, and MCP integrations.

Official Documentation

All official documentation references are maintained in docs/claude/README.md. Always consult these references for the latest standards and best practices:

When creating new components, fetch and review the relevant documentation using the WebFetch tool.

Quick Start

When to Use Which Component?

Use a Subagent when you need:

  • Task isolation in a separate context
  • Specialized model or tool restrictions
  • Repeated complex workflows

Use a Skill when you need:

  • Reusable knowledge that Claude lacks
  • Domain-specific terminology or patterns
  • Expert knowledge loaded into context

Use a Command when you need:

  • User-invocable workflows
  • Shortcuts for common tasks
  • Structured argument handling

Use a Hook when you need:

  • Automated actions on tool events
  • Validation before operations
  • Cleanup after operations

Quick Examples

Agent (specialized AI for focused tasks):

name: code-reviewer
description: Reviews code for quality and best practices
tools: Read, Grep, Glob

Skill (reusable knowledge package):

name: api-design-patterns
description: REST API design. Use when designing or reviewing APIs.

Command (user-invocable workflow):

description: Review code changes
allowed-tools: Task(code-reviewer)

See detailed guides: Agents | Skills | Commands

Component Types Overview

Subagents (.claude/agents/)

Specialized AI assistants that handle specific types of tasks in isolated contexts.

  • File Format: Markdown with YAML frontmatter
  • Location: .claude/agents/[agent-name].md
  • Key Fields: name, description, tools, model, skills, permissionMode

See Agent Creation Guide for complete details.

Skills (.claude/skills/)

Reusable knowledge packages that can be loaded into conversations or subagents.

  • File Format: Markdown with YAML frontmatter
  • Location: .claude/skills/[skill-name]/SKILL.md
  • Key Fields: name, description, allowed-tools, context

See Skills Creation Guide for complete details.

Slash Commands (.claude/commands/)

User-invocable prompts that provide reusable workflows.

  • File Format: Markdown with YAML frontmatter
  • Location: .claude/commands/[command-name].md
  • Key Fields: description, argument-hint, allowed-tools

See Commands Creation Guide for complete details.

Hooks (.claude/hooks/)

Scripts that run automatically on tool events.

  • Configuration: In .claude/settings.json or component frontmatter
  • Hook Events: PreToolUse, PostToolUse, SubagentStart, SubagentStop, Stop
  • Hook Types: command (shell), prompt (text injection)

See Hooks Reference Guide for complete details.

Directory Structure

Standard layout for a well-organized .claude/ directory:

.claude/
├── settings.json              # Project-level configuration
├── agents/
│   ├── agent-name-1.md
│   └── agent-name-2.md
├── skills/
│   ├── skill-name-1/
│   │   ├── SKILL.md
│   │   ├── reference.md       # Progressive disclosure
│   │   └── scripts/
│   │       └── helper.py
│   └── skill-name-2/
│       └── SKILL.md
├── commands/
│   ├── command-1.md
│   └── command-2.md
└── hooks/
    ├── README.md              # Hook documentation
    └── scripts/
        ├── validate.sh
        └── lint.sh

Naming Conventions

Agents: lowercase-with-hyphens

  • Good: code-reviewer, test-runner, db-analyzer
  • Avoid: CodeReviewer, test_runner, DBAnalyzer

Skills: lowercase-with-hyphens (gerund form preferred)

  • Good: processing-pdfs, analyzing-data, reviewing-code
  • Acceptable: pdf-processing, data-analysis, code-review
  • Avoid: helper, utils, tools (too vague)

Commands: lowercase-with-hyphens

  • Good: translate, deploy-staging, run-tests
  • Avoid: doTranslate, Deploy_Staging

Files: Always use .md extension for agents, skills, and commands

Quality Checklist

All Components: Valid YAML, clear description with trigger terms, follows naming conventions

Agents: Focused purpose, minimal tools, clear workflow, tested Skills: Concise (<500 lines), concrete examples, one-level references Commands: User-facing, clear arguments, examples included Hooks: Fast execution, proper error handling, appropriate scope

For detailed checklists, see component-specific guides.

Best Practices Summary

  1. Follow official documentation: Always consult official guides
  2. Be concise: Assume Claude is smart, avoid over-explaining
  3. Use progressive disclosure: Split large content into multiple files
  4. Test thoroughly: Verify components work as expected
  5. Iterate based on behavior: Watch how Claude uses components and refine
  6. Keep components focused: Each component should do one thing well
  7. Document clearly: Good descriptions and examples are essential
  8. Use appropriate tools: Restrict tool access to minimum needed
  9. Maintain consistency: Follow naming conventions and patterns
  10. Version control: Check components into git for team collaboration

References

For detailed guidance, see these companion guides:

Always refer to the official documentation (see top of this file) when:

  • Creating new component types
  • Using advanced features
  • Troubleshooting issues
  • Following best practices
  • Understanding permission models

The official documentation is the source of truth. This skill provides a practical guide, but defer to official docs for authoritative information.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.5%
按下载量换算36

Antigravity

23.3%
按下载量换算28

windsurf

19.89%
按下载量换算24

trae

13.51%
按下载量换算16

OpenCode

7.76%
按下载量换算9

Cursor

3.81%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills