m19803261706/cx-workflow · Archived

cx-config

CX 工作流 — ? 中?

First seen Feb 10, 2026

Installation

$ npx skills add m19803261706/cx-workflow --skill cx-config

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from m19803261706/cx-workflow · top by installs.

npx skills add m19803261706/cx-workflow

Browse all from m19803261706/cx-workflow

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,533 B
  • docs SUMMARY.md 193 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 5 installs

SKILL.md

cx-config: 项目配置管理

cx:config 只管理项目级公开配置,不暴露实现细节开关。

配置来源

运行时只读取:

开发文档/CX工作流/配置.json

全局插件配置只用于 cx:init 提供默认值,不参与后续运行时决策。

公开字段

{
  "version": "3.0",
  "developer_id": "承玄",
  "github_sync": "local",
  "current_feature": "vector-memory",
  "agent_teams": true,
  "code_review": true,
  "auto_memory": true,
  "worktree_isolation": true,
  "auto_format": {
    "enabled": true,
    "formatter": "auto"
  },
  "hooks": {
    "session_start": true,
    "pre_compact": true,
    "post_edit_format": true,
    "notification": true
  }
}

配置原则

  • developer_id 每个项目单独确认
  • current_feature 只是入口指针,不承担主状态机
  • 不再公开后台代理、批量模式、简化模式这类实现策略字段
  • hook 配置只保留少量开关,不再暴露固定频率提醒

典型修改

  • 切换 github_sync
  • 开关 agent_teams
  • 开关 code_review
  • 调整 auto_format.enabled

与初始化的关系

cx:init 负责一次性问清关键项目决策; cx:config 负责后续查看和小范围修改,不再重复初始化向导。