auriga-cli 1.2.0 → 1.4.1

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.
package/README.md CHANGED
@@ -57,6 +57,9 @@ Installs selected skills via `npx skills add`, targeting both Claude Code and Co
57
57
  | planning-with-files | [OthmanAdi/planning-with-files](https://github.com/OthmanAdi/planning-with-files) | File-based task planning and progress tracking |
58
58
  | playwright-cli | [microsoft/playwright-cli](https://github.com/microsoft/playwright-cli) | Browser automation and testing |
59
59
  | ui-ux-pro-max | [nextlevelbuilder/ui-ux-pro-max-skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) | UI/UX design and development enhancement |
60
+ | deep-review | [Ben2pc/g-claude-code-plugins](https://github.com/Ben2pc/g-claude-code-plugins) | Multi-dimensional PR review orchestrator (required + conditional reviewers + punch list) |
61
+ | test-designer | [Ben2pc/g-claude-code-plugins](https://github.com/Ben2pc/g-claude-code-plugins) | Independent-Evaluation test designer for TDD red phase |
62
+ | parallel-implementation | [Ben2pc/g-claude-code-plugins](https://github.com/Ben2pc/g-claude-code-plugins) | Slice planner for parallel multi-subagent code writing |
60
63
 
61
64
  Supports both project and global installation scopes.
62
65
 
package/README.zh-CN.md CHANGED
@@ -57,6 +57,9 @@ npx auriga-cli
57
57
  | planning-with-files | [OthmanAdi/planning-with-files](https://github.com/OthmanAdi/planning-with-files) | 文件化任务计划与进度跟踪 |
58
58
  | playwright-cli | [microsoft/playwright-cli](https://github.com/microsoft/playwright-cli) | 浏览器自动化与测试 |
59
59
  | ui-ux-pro-max | [nextlevelbuilder/ui-ux-pro-max-skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) | UI/UX 设计与开发增强 |
60
+ | deep-review | [Ben2pc/g-claude-code-plugins](https://github.com/Ben2pc/g-claude-code-plugins) | 多维度 PR review 编排器(必选 + 条件 + punch list 汇总) |
61
+ | test-designer | [Ben2pc/g-claude-code-plugins](https://github.com/Ben2pc/g-claude-code-plugins) | TDD 红灯阶段的 Independent Evaluation 测试设计器 |
62
+ | parallel-implementation | [Ben2pc/g-claude-code-plugins](https://github.com/Ben2pc/g-claude-code-plugins) | 多 subagent 并行写代码时的切片计划器 |
60
63
 
61
64
  支持 project 和 global 两种安装范围。
62
65
 
package/dist/skills.js CHANGED
@@ -2,11 +2,17 @@ import fs from "node:fs";
2
2
  import path from "node:path";
3
3
  import { checkbox, select } from "@inquirer/prompts";
4
4
  import { exec, log, withEsc } from "./utils.js";
5
+ // Curated default-on set: skills that the workflow in the root CLAUDE.md
6
+ // directly references. Anything else in skills-lock.json is surfaced via
7
+ // installRecommendedSkills as an opt-in utility.
5
8
  const WORKFLOW_SKILLS = [
6
9
  "brainstorming",
10
+ "deep-review",
11
+ "parallel-implementation",
7
12
  "planning-with-files",
8
13
  "playwright-cli",
9
14
  "systematic-debugging",
15
+ "test-designer",
10
16
  "test-driven-development",
11
17
  "ui-ux-pro-max",
12
18
  "verification-before-completion",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "auriga-cli",
3
- "version": "1.2.0",
3
+ "version": "1.4.1",
4
4
  "description": "Interactive CLI to install Claude Code harness modules (Workflow, Skills, Recommended Skills, Plugins, Hooks)",
5
5
  "type": "module",
6
6
  "bin": {