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

config-export配置导出

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

449

周安装

18

GitHub Stars

公开资料未说明

下载量

145
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/fearovex/claude-config --skill config-export

简介

config-export 将项目配置导出为 Copilot、Gemini 和 Cursor 专用的指令文件。

  • 适用于多 AI 工具协作,统一代码风格和上下文提示。
  • 基于 CLAUDE.md 和 ai-context/ 生成目标平台适配内容,支持预览后写入。
  • 安装前请确认权限范围、维护状态及是否会修改本地构建流程。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

config-export

Exports CLAUDE.md and ai-context/ to tool-native instruction files for GitHub Copilot, Google Gemini, and Cursor.

Triggers: /config-export, export config, copilot instructions, gemini config, cursor rules


Purpose

config-export reads the project's Claude configuration (CLAUDE.md and any present ai-context/ files) into an in-context bundle, lets the user select one or more target AI assistants, generates tool-specific instruction files via LLM transformation, shows a dry-run preview, and writes the confirmed files to their canonical locations. It never modifies source files and never writes without explicit user confirmation.


Process

Step 1 — Source collection

Guard — no CLAUDE.md: If no CLAUDE.md exists in the current working directory, present the user with two paths:

No CLAUDE.md found in the current directory.

Choose an option:
  1. project-setup first  — run /project-setup to scaffold CLAUDE.md + ai-context/ in this project,
                            then re-run /config-export (recommended for new projects with SDD workflow)
  2. SDD bootstrap         — generate a minimal .github/copilot-instructions.md from the global SDD
                            template only (no project-specific stack or conventions)

Enter 1 or 2 (or press Enter to cancel):
  • If the user selects 1: emit Run /project-setup, then re-run /config-export and stop. No files are written.
  • If the user selects 2: proceed using the global SDD methodology as the sole source bundle (skip ai-context/ collection; note "No project CLAUDE.md — bootstrap mode" in transformation context).
  • If the user cancels: emit Export cancelled — no files written and stop.

Guard — no ai-context/: If no ai-context/ directory is present, emit:

WARNING: ai-context/ not found — export quality will be lower; only CLAUDE.md will be used as source

Continue; CLAUDE.md alone is sufficient.

Read and bundle source files in priority order:

#FileRequired?Behavior when absent
1CLAUDE.mdYesHalt (see guard above)
2ai-context/stack.mdNoSkip; note "stack.md not available" in transformation context
3ai-context/architecture.mdNoSkip; note "architecture.md not available" in transformation context
4ai-context/conventions.mdNoSkip; note "conventions.md not available" in transformation context
5ai-context/known-issues.mdNoSkip silently if absent

All present files are read into the in-context bundle before any transformation begins.


Step 2 — Target selection

If the user provided a target as a CLI argument (e.g., /config-export copilot), skip the interactive menu and proceed directly to Step 3 with that target.

Otherwise, present the target menu:

Available export targets:

  1. copilot  →  .github/copilot-instructions.md
  2. gemini   →  GEMINI.md
  3. cursor   →  .cursor/rules/conventions.mdc
               →  .cursor/rules/stack.mdc
               →  .cursor/rules/architecture.mdc

Enter targets (comma-separated numbers or names, or "all"):

Claude target rejection: If the user requests target claude or CLAUDE.md, respond with:

The Claude target is not supported in V1 — use /project-update to refresh CLAUDE.md

Do not write any files; re-present the menu or halt based on user choice.


Step 3 — Dry-run generation and confirmation

For each selected target, apply the corresponding transformation prompt (see sub-sections below). Then:

  1. Display the full generated content for each file and its destination path.
  2. If a target output file already exists at its canonical path, emit a warning before the confirmation prompt: WARNING: Overwriting existing file: <path>
  3. Prompt the user: Write these files? [y/N] Default is N.
  4. If the user responds with anything other than y, exit cleanly: Export cancelled — no files written No files are written.
  5. If the user responds y, proceed to Step 4.

These transformation prompts are self-instructions executed by the agent using its own in-context LLM reasoning. No external API call, subprocess, or tool invocation is required to apply them — the agent reads the prompt and generates the output directly.

Shared STRIP Preamble

The following items MUST be stripped from ALL target outputs. Each transformation prompt below references this block — apply it in addition to any target-specific delta listed in that prompt.

  • All slash commands used as executable triggers (any /<word> pattern that is a Claude Code meta-tool or SDD phase command)
  • Task tool references and sub-agent delegation patterns ("Task tool:", "subagent_type:", "Launch sub-agent", "Sub-agent launch pattern")
  • install.sh and sync.sh references
  • Claude Code-specific identity statements ("I am an expert development assistant…")
  • The ## Skills Registry section of CLAUDE.md (lines beginning with ~/.claude/skills/ or .claude/skills/)
  • Any section whose content is enclosed between <!-- [auto-updated] and <!-- [/auto-updated] --> comment markers in ai-context/ files

Copilot transformation prompt

Apply the following prompt to the source bundle to generate .github/copilot-instructions.md:


You are transforming a Claude Code project configuration into a GitHub Copilot instruction file.

Source bundle: CLAUDE.md + any available ai-context/ files provided above.

STRIP:

Apply the Shared STRIP Preamble above, then additionally strip:

  • Plan Mode rules section (Claude Code-specific)

ADAPT — do NOT strip; rewrite for Copilot:

  1. SDD phase DAG and workflow → Convert to a ## SDD Development Workflow section written in declarative prose:

- Describe each phase (explore, propose, spec, design, tasks, apply, verify, archive) and its artifacts - Include the artifact types (proposal, spec, design, tasks, verify-report, archive-report) and explain they are persisted to engram - Do NOT include any slash command syntax — describe the phases as steps the developer initiates

  1. SDD available commands table → Replace with a ## Active SDD Coaching Instructions section containing Copilot behavioral instructions: When a developer mentions implementing a new feature, change, or fix: - Proactively ask: "Would you like to follow the SDD workflow for this change?" - If yes, guide them step by step: propose → (spec + design in parallel) → tasks → apply → verify → archive - Before starting apply, confirm that proposal, design, and tasks artifacts exist in the project's engram - Remind the developer to run verify after implementation and archive once confirmed Adapt the phrasing to be Copilot-idiomatic (imperative instructions telling Copilot how to behave).
  2. Project memory layer (ai-context/) → Retain the table and description verbatim; it applies directly to projects using Copilot too.

RETAIN and adapt:

  • Tech stack (language, framework, key tools, versions)
  • Coding conventions (naming, style, patterns) — rephrase as direct instructions to the AI assistant in imperative voice
  • Architecture decisions and rationale
  • Known issues and gotchas relevant to a developer working in the project
  • Key working principles (clean code, no over-engineering, tests as first-class citizens, etc.)
  • SDD artifact types and engram topic key patterns

FORMAT:

  • Single flat Markdown file
  • UTF-8, no BOM
  • H2 sections (no YAML frontmatter)
  • Start with a top-level heading: # Project Instructions
  • Required H2 sections in this order:

1. ## Tech Stack (if stack data available) 2. ## Architecture (if architecture data available) 3. ## Conventions 4. ## SDD Development Workflow ← always present, even in bootstrap mode 5. ## Active SDD Coaching Instructions ← always present 6. ## Working Principles 7. ## Known Issues (if known-issues.md available) 8. ## Source Notes (only if any source file was absent)

  • Begin with the generated-file banner (verbatim, before the H1): <!-- GENERATED BY config-export — DO NOT EDIT MANUALLY --> <!-- Source: CLAUDE.md + ai-context/ | Generated: YYYY-MM-DD --> <!-- Re-generate: run /config-export in your Claude Code session --> Replace YYYY-MM-DD with today's date.
  • In bootstrap mode (no project CLAUDE.md), the ## SDD Development Workflow and ## Active SDD Coaching Instructions sections MUST still be fully generated from the global SDD methodology; all project-specific sections are omitted and noted under ## Source Notes.
  • Output path: .github/copilot-instructions.md

Gemini transformation prompt

Apply the following prompt to the source bundle to generate GEMINI.md:


You are transforming a Claude Code project configuration into a Google Gemini instruction file (GEMINI.md).

Source bundle: CLAUDE.md + any available ai-context/ files provided above.

STRIP:

Apply the Shared STRIP Preamble above, then additionally strip:

  • SDD phase DAG diagram
  • SDD artifact storage details specific to Claude Code

ADAPT (do not strip wholesale):

  • SDD command tables: remove the command table verbatim; you MAY include an adapted prose paragraph describing a structured development workflow if it adds value for Gemini users — but no slash commands
  • Claude-specific section headers (e.g., "How I Execute Commands", "SDD Orchestrator — Delegation Pattern"): rename to Gemini equivalents or remove if the content has no value outside Claude Code

RETAIN:

  • Tech stack, coding conventions, architecture decisions, known issues
  • Working principles and development philosophy
  • Project memory layer description (ai-context/ structure)

FORMAT:

  • Single Markdown file at project root
  • UTF-8, no BOM
  • Structure similar to CLAUDE.md (not flat — preserve H2/H3 hierarchy where content warrants it)
  • Start with a top-level heading (e.g., # Gemini — Project Configuration)
  • Begin with the generated-file banner (verbatim, before the H1): <!-- GENERATED BY config-export — DO NOT EDIT MANUALLY --> <!-- Source: CLAUDE.md + ai-context/ | Generated: YYYY-MM-DD --> <!-- Re-generate: run /config-export in your Claude Code session --> Replace YYYY-MM-DD with today's date.
  • Output path: GEMINI.md

Cursor transformation prompt

Apply the following prompt to the source bundle to generate .cursor/rules/*.mdc files:


You are transforming a Claude Code project configuration into Cursor MDC rule files.

Source bundle: CLAUDE.md + any available ai-context/ files provided above.

STRIP the following from all output files:

Apply the Shared STRIP Preamble above, then additionally strip:

  • SDD phase DAG diagram
  • SDD artifact storage details specific to Claude Code

OUTPUT STRUCTURE — split into exactly three domain files:

  1. conventions.mdc — coding rules, naming conventions, style guidelines, error handling patterns
  2. stack.mdc — tech stack, language versions, key frameworks and tools, package manager
  3. architecture.mdc — architecture decisions, system design patterns, data flow, inter-component contracts

If source material is insufficient to produce meaningful content for a domain (e.g., no architecture.md and no architecture content in CLAUDE.md), produce a minimal file with the frontmatter and a one-line note rather than omitting the file.

MDC FRONTMATTER CONTRACT — every file MUST have:

---
description: "[one-line description of this rules domain]"
globs: "[glob pattern or empty string]"
alwaysApply: [true|false]
---

Domain defaults:

FileglobsalwaysApply
conventions.mdc""true
stack.mdc""false
architecture.mdc""false

CRITICAL — globs field: Use "" when no meaningful file-pattern can be inferred. NEVER guess at glob patterns. The globs field MUST be a string (not YAML null).

FORMAT per file:

  • UTF-8, no BOM
  • YAML frontmatter block first (between --- delimiters)
  • Generated-file banner immediately after the closing --- of the frontmatter: <!-- GENERATED BY config-export — DO NOT EDIT MANUALLY --> <!-- Source: CLAUDE.md + ai-context/ | Generated: YYYY-MM-DD --> <!-- Re-generate: run /config-export in your Claude Code session --> Replace YYYY-MM-DD with today's date.
  • File name: lowercase slug with .mdc extension (e.g., conventions.mdc)
  • If source material was only CLAUDE.md (no ai-context/), set description to note it: e.g., "Generated from CLAUDE.md — ai-context/ not found"
  • Output paths: .cursor/rules/conventions.mdc, .cursor/rules/stack.mdc, .cursor/rules/architecture.mdc

Step 4 — File writing

For each confirmed target:

  1. Create required directories silently if they do not exist:

- Copilot: .github/ - Cursor: .cursor/rules/ - Gemini: no directory required (file at project root) - Do NOT emit any output for directory creation unless it fails.

  1. Write the generated file to its canonical path, prepending the generated-file banner: <!-- GENERATED BY config-export — DO NOT EDIT MANUALLY --> <!-- Source: CLAUDE.md + ai-context/ | Generated: YYYY-MM-DD --> <!-- Re-generate: run /config-export in your Claude Code session --> Replace YYYY-MM-DD with today's date.
  2. Overwrite any existing file at the canonical path — this is idempotent behavior. No error is raised when overwriting.

Step 5 — Summary

After all confirmed files have been written, print a summary table:

Export complete — files written:

  File                                  Status
  ──────────────────────────────────    ───────
  .github/copilot-instructions.md       written
  GEMINI.md                             written
  .cursor/rules/conventions.mdc         written
  .cursor/rules/stack.mdc               written
  .cursor/rules/architecture.mdc        written

(Only include rows for targets that were written in this run.)

Then append the snapshot reminder:

Exported files are snapshots. Re-run /config-export after significant changes to CLAUDE.md or ai-context/

Rules

  • If no CLAUDE.md is found in CWD, the skill MUST present the two-path menu (project-setup or bootstrap) before any file write; the hard ERROR path is NOT the default
  • Bootstrap mode (option 2) MUST produce a valid Copilot instructions file containing the full SDD workflow and coaching instructions even when no project CLAUDE.md exists
  • The Copilot transformation MUST NOT strip the SDD phase workflow or artifact paths — it MUST adapt them to prose and Copilot coaching instructions
  • The ## SDD Development Workflow and ## Active SDD Coaching Instructions sections MUST always be present in the Copilot output (whether from project mode or bootstrap mode)
  • Dry-run preview MUST precede any file write — there is no flag to skip dry-run
  • Overwrite warnings MUST appear in the dry-run step (before user confirmation), not after
  • The skill MUST NOT modify CLAUDE.md or any ai-context/ file — read-only with respect to all source files
  • Directory creation (.github/, .cursor/rules/) MUST be silent — no output for directory creation unless it fails
  • The Claude target (CLAUDE.md) is NOT supported in V1 — respond with the defined rejection message; do not write any files for that target
  • All generated files MUST be UTF-8, no BOM
  • Each Cursor .mdc file MUST have valid YAML frontmatter with description, globs, and alwaysApply fields
  • Cursor .mdc file names MUST be valid slugs: lowercase letters, digits, and hyphens only, with the .mdc extension
  • Copilot output MUST be a single file at .github/copilot-instructions.md — no splitting
  • Gemini output MUST be a single file at GEMINI.md at the project root — no subdirectories
  • The globs field in Cursor MDC files MUST use "" when no meaningful pattern can be inferred — never guess
  • All content in generated files MUST be free of Claude Code-specific execution syntax: no Task tool invocations, no sub-agent patterns, no ~/.claude/skills/ file paths
  • Copilot MUST adapt SDD content (workflow, phases, artifacts) — stripping rules apply only to execution-layer Claude Code syntax; SDD methodology is RETAINED and adapted for all targets
  • No target receives a verbatim copy of CLAUDE.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.54%
按下载量换算53

Claude

29.79%
按下载量换算43

Cursor

20.44%
按下载量换算30

Gemini CLI

10.82%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills