By Skarlso
Claude Code settings, agents and skills for enhanced development workflows
Comprehensive session analysis and learning capture specialist. Analyzes development sessions to extract patterns, preferences, and improvements for future interactions. Use after significant work sessions to capture learnings.
GitHub issue resolution specialist. Analyzes, plans, and implements fixes for GitHub issues with proper testing and PR creation. Use when fixing specific GitHub issues.
Technical breakthrough documentation specialist. Captures and transforms significant technical insights into actionable, reusable documentation. Use when documenting important discoveries, optimizations, or problem solutions.
Analyzes and improves Claude Code instructions in CLAUDE.md. Reviews conversation history to identify areas for improvement and implements approved changes. Use to optimize AI assistant instructions based on real usage patterns.
Expert code reviewer for GitHub pull requests. Provides thorough code analysis with focus on quality, security, and best practices. Use when reviewing PRs for code quality and potential issues.
Explore user intent, requirements, and design options through collaborative dialogue before implementation. Use before building new features, components, or systems — whenever the user describes something to build and design decisions are involved. Triggers: "brainstorm", "help me design", "think through the requirements", "头脑风暴", "设计方案", "梳理需求". Not for bug fixes, config changes, or tasks with an obvious implementation path.
Leverage OpenAI Codex/GPT models for autonomous code implementation. Triggers: "codex", "use gpt", "gpt-5", "let openai", "full-auto", "用codex", "让gpt实现". Use this skill whenever the user wants to delegate coding tasks to OpenAI models, run code reviews via codex, or execute tasks in a sandboxed environment.
Multi-agent research orchestration: split a research goal into parallel sub-goals, run each via headless `claude -p` subprocesses, aggregate results into a polished report file. Use for systematic web/document research, competitive or industry analysis, batch link/dataset processing, and long-form evidence synthesis. Triggers: "深度调研", "deep research", "wide research", "多 Agent 调研", "系统调研".
Fix GitHub issues end-to-end — analysis, branch creation, implementation, testing, and PR submission. Use whenever the user mentions fixing a GitHub issue, says "fix issue
Review GitHub pull requests with detailed, multi-perspective code analysis using parallel subagents. Use this skill whenever the user wants to review a PR, asks for code review on a pull request, mentions "review PR", "check this PR", "look at pull request", or references a PR number or GitHub PR URL. Do NOT use for local uncommitted changes — this skill only reviews pull requests on GitHub.
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Claude Code 设置、技能(Skills)和子代理(Sub-agents)合集,涵盖头脑风暴与设计审查、深度调研、GitHub 集成、翻译、图片生成等增强型开发工作流。
OpenAI Codex 的配置和自定义 prompt 请参考 feiskyer/codex-settings。
/plugin marketplace add feiskyer/claude-code-settings
# 安装主插件(包含所有技能和代理)
/plugin install claude-code-settings
主插件包含的完整技能列表:brainstorming、codex-skill、deep-research、github-fix-issue、github-review-pr、gpt-image-skill、grill-me、handoff、nanobanana-skill、skill-creator、translate、youtube-transcribe-skill,详见技能列表。单个技能也可以通过 npx skills 按需安装。
注意: ~/.claude/settings.json 不通过 Plugin 配置,需要手动设置。
npx skills 可以为你的 AI 编程工具安装技能:
# 列出可用技能
npx -y skills add -l feiskyer/claude-code-settings
# 安装全部技能
npx -y skills add --all feiskyer/claude-code-settings
# 手动选择要安装的技能
npx -y skills add feiskyer/claude-code-settings
# 备份原有配置
mv ~/.claude ~/.claude.bak
# 克隆本仓库
git clone https://github.com/feiskyer/claude-code-settings.git ~/.claude
# 启动 Copilot Gateway 代理(监听 http://localhost:4141)
npx copilot-gateway@latest start --proxy-env
# 也可以用 tmux 在后台运行
# tmux new-session -d -s copilot 'npx copilot-gateway@latest start --proxy-env'
首次启动会提示认证:
Please visit https://github.com/login/device and enter code XXXX-XXXX to authenticate.
打开链接,登录并授权你的 GitHub Copilot 账户。
注意:
仓库根目录的 settings.json 是作者的配置模板,默认指向 copilot-gateway 代理(http://localhost:4141)。如需使用 LiteLLM Proxy Server 等其他网关,把 ANTHROPIC_BASE_URL 改为对应地址(如 http://localhost:4000)即可。
确保以下模型在你的账户中可用,否则需替换为你自己的模型名(模型名以你的网关实际提供的为准):
模板中 defaultMode 为 acceptEdits(自动接受文件编辑但保留命令确认)。如需完全跳过权限确认可自行改为 bypassPermissions,但请了解其安全风险后再启用。
技能是可复用的能力模块,教会 Claude 如何完成特定任务。可通过 /skill-name [参数] 手动调用,或根据上下文自动触发。
在构建新功能、创建新组件或设计新系统之前使用。通过协作对话探索用户意图、需求和设计方案,再进入实现阶段。
触发词: 用户描述想要构建的东西且涉及设计决策
核心特性:
非交互式自动化模式,使用 OpenAI Codex 完成 Claude 设计好的功能或计划。
触发词: "codex", "use gpt", "gpt-5", "let openai", "full-auto", "用codex", "让gpt实现"
核心特性:
~/.codex/config.toml 中配置的模型references/ 目录依赖: Codex CLI(npm i -g @openai/codex 或 brew install codex)
通过 Google Gemini API 生成或编辑图片。这是默认图片技能——未指明提供商的图片请求都路由到这里。
触发词: "nanobanana", "generate image", "create image", "edit image", "图片生成", "生成图片", "AI绘图", "图片编辑"
核心特性:
依赖:
GEMINI_API_KEY(配置在 ~/.nanobanana.env)使用 OpenAI GPT Image 模型(gpt-image-2, gpt-image-1 等)生成或编辑图片。仅在用户明确指定 OpenAI/GPT 时触发;未指明提供商的图片请求由 nanobanana-skill 处理。
触发词: "gpt image", "openai image", "generate image with openai", "用 openai 画图", "用 GPT 生成图片"
核心特性:
依赖:
OPENAI_API_KEY(配置在 ~/.gpt-image.env 或环境变量)从 YouTube 视频链接提取字幕/转录文本。
核心特性:
依赖: yt-dlp(CLI 方式)或 chrome-devtools-mcp(浏览器方式)
多 Agent 编排工作流:将调研目标拆分为可并行子目标,通过 claude -p 子进程执行,聚合结果并交付精修报告。
触发词: "深度调研", "deep research", "wide research", "多Agent并行调研"
核心特性:
产出目录结构:
.research/<name>/
├── prompts/ # 子任务 prompt
├── child_outputs/ # 子进程输出
├── logs/ # 执行日志
├── raw/ # 原始数据缓存
└── final_report.md # 最终报告
npx claudepluginhub skarlso/claude-code-settingsHarness-native ECC operator layer - 67 agents, 278 skills, 94 legacy command shims, reusable hooks, rules, selective install profiles, and production-ready workflows for Claude Code, Codex, OpenCode, Cursor, and related agent harnesses
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Reliable automation, in-depth debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer
Matt Pocock's agent skills for real engineering — grilling, spec/ticket flows, TDD, code review, domain modelling and more. Plug-and-play, not vibe coding.
Plugin-safe Claude Code distribution of Agentic Awesome Skills with 1,911 supported skills.
Plugin-safe Claude Code distribution of Antigravity Awesome Skills with 1,884 supported skills.