adspecs 0.1.12 → 0.1.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,7 +10,7 @@
10
10
  {
11
11
  "name": "adspecs",
12
12
  "description": "AI Coding研发协同开发插件",
13
- "version": "0.1.12",
13
+ "version": "0.1.13",
14
14
  "source": "./",
15
15
  "author": {
16
16
  "name": "Qingwen Chen",
@@ -2,7 +2,7 @@
2
2
  "name": "adspecs",
3
3
  "displayName": "adspecs AI Plugin",
4
4
  "description": "AI first工程规范驱动开发插件",
5
- "version": "0.1.12",
5
+ "version": "0.1.13",
6
6
  "author": {
7
7
  "name": "Qingwen Chen",
8
8
  "email": "cqinwn@qq.com",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "adspecs",
3
3
  "displayName": "adspecs AI 工程规范驱动开发插件",
4
- "version": "0.1.12",
4
+ "version": "0.1.13",
5
5
  "description": "AI-first specification-driven development plugin for ECP platform full-lifecycle development",
6
6
  "descriptionZh": "AI优先的工程规范驱动开发插件,覆盖需求分析、PRD、系统设计、任务拆解、TDD、代码评审、Wiki同步全流程",
7
7
  "author": {
package/bin/adspecs.js CHANGED
@@ -114,7 +114,10 @@ program.addHelpText('after', `
114
114
  $ adspecs init --mode simple # 快速初始化(交互选择其余参数)
115
115
  $ adspecs init --non-interactive # 完全非交互(使用默认值)
116
116
  $ adspecs init --project-name "我的项目" --mode full --front-demo antd
117
- $ adspecs plugin install # 注册为 Claude Code 插件
117
+ $ adspecs plugin install # 注册为 Claude Code 插件(默认 user 范围)
118
+ $ adspecs plugin install --scope project # 仅注册到当前项目
119
+ $ adspecs plugin install --scope user # 注册到当前用户(全局可用)
120
+ $ adspecs plugin uninstall --scope project # 从当前项目卸载
118
121
  $ adspecs doctor # 检查环境依赖
119
122
  $ adspecs update # 升级到最新版本
120
123
  $ adspecs update --version 0.2.0 # 升级到指定版本
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adspecs",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "AI first 工程规范驱动开发插件 — 支持 npm 安装和 CLI 初始化",
5
5
  "bin": {
6
6
  "adspecs": "./bin/adspecs.js"