auriga-cli 1.7.0 → 1.9.2
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 +38 -7
- package/README.zh-CN.md +39 -8
- package/dist/catalog.d.ts +12 -0
- package/dist/catalog.js +9 -0
- package/dist/catalog.json +87 -0
- package/dist/cli.d.ts +23 -1
- package/dist/cli.js +526 -46
- package/dist/guide.d.ts +12 -0
- package/dist/guide.js +120 -0
- package/dist/help.d.ts +14 -0
- package/dist/help.js +152 -0
- package/dist/hooks.d.ts +45 -1
- package/dist/hooks.js +124 -23
- package/dist/plugins.d.ts +3 -1
- package/dist/plugins.js +101 -28
- package/dist/skills.d.ts +10 -2
- package/dist/skills.js +102 -33
- package/dist/types.d.ts +8 -0
- package/dist/types.js +13 -0
- package/dist/utils.d.ts +40 -0
- package/dist/utils.js +76 -7
- package/dist/workflow.d.ts +2 -1
- package/dist/workflow.js +21 -13
- package/package.json +21 -6
package/README.md
CHANGED
|
@@ -11,13 +11,38 @@ This repo itself is a fully configured harness project. You can clone it to see
|
|
|
11
11
|
| Module | Description |
|
|
12
12
|
|---|---|
|
|
13
13
|
| **Workflow** | `CLAUDE.md` auriga workflow: requirement clarification -> TDD -> Review, Harness principles, Subagent usage guide |
|
|
14
|
-
| **Skills** | Development process skills — brainstorming, systematic-debugging, TDD, verification, planning, playwright |
|
|
15
|
-
| **Recommended Skills** | Optional utility skills (e.g. `
|
|
16
|
-
| **Plugins** | Recommended Claude Code plugins — skill-creator, claude-md-management, codex |
|
|
17
|
-
| **Hooks** | Claude Code hooks: `notify` (macOS notification, focus-aware sound-only when terminal is frontmost), `pr-create-guard` (PostToolUse body snapshot after `gh pr create`), `pr-ready-guard` (PreToolUse block on stray planning docs / active specs in `docs/specs/` / unpushed commits before `gh pr ready`) |
|
|
14
|
+
| **Skills** | Development process + orchestration skills — brainstorming, systematic-debugging, TDD, verification, planning, playwright, deep-review, test-designer, parallel-implementation, ui-ux-pro-max |
|
|
15
|
+
| **Recommended Skills** | Optional utility skills (e.g. `codex-agent`, `claude-code-agent`) you can add on top of the workflow skills |
|
|
16
|
+
| **Plugins** | Recommended Claude Code plugins — skill-creator, claude-md-management, codex, auriga-go |
|
|
17
|
+
| **Hooks** | Claude Code hooks: `notify` (macOS notification, focus-aware sound-only when terminal is frontmost — **opt-in**: not installed by `install --all`, requires `install hooks --hook notify`), `pr-create-guard` (PostToolUse body snapshot after `gh pr create`), `pr-ready-guard` (PreToolUse block on stray planning docs / active specs in `docs/specs/` / unpushed commits before `gh pr ready`) |
|
|
18
18
|
|
|
19
19
|
## Quick Start
|
|
20
20
|
|
|
21
|
+
### Agent Bootstrap (non-TTY)
|
|
22
|
+
|
|
23
|
+
Running inside `claude -p`, `claude -p --worktree`, or any non-interactive Agent session? Start here:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
npx -y auriga-cli guide
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
This prints a 5-step SOP (prerequisite check → `install --all` → optional recommended skills → session reload → verify). Follow it top-to-bottom and the Agent can install the full harness without any human prompt.
|
|
30
|
+
|
|
31
|
+
The leading `-y` belongs to `npx` (it auto-confirms package installation), **not** to `auriga-cli`.
|
|
32
|
+
|
|
33
|
+
Non-interactive install commands:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npx -y auriga-cli install --all # workflow + skills + plugins + hooks (atomic)
|
|
37
|
+
npx -y auriga-cli install recommended # opt-in utility skills (not in --all)
|
|
38
|
+
npx -y auriga-cli install <type> [--flags] # one of: workflow | skills | recommended | plugins | hooks
|
|
39
|
+
npx -y auriga-cli --help # full catalog + flags
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Exit codes: `0` success, `1` fatal (precheck / parse / fetch), `2` partial success — `stderr` lists per-category `[OK]/[FAIL]` and a `Retry:` hint. After install, reload the Claude Code session so the new `CLAUDE.md` / skills / plugins / hook registrations are picked up.
|
|
43
|
+
|
|
44
|
+
### Interactive menu
|
|
45
|
+
|
|
21
46
|
```bash
|
|
22
47
|
npx auriga-cli
|
|
23
48
|
```
|
|
@@ -60,7 +85,6 @@ Installs selected skills via `npx skills add`, targeting both Claude Code and Co
|
|
|
60
85
|
| 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
86
|
| test-designer | [Ben2pc/g-claude-code-plugins](https://github.com/Ben2pc/g-claude-code-plugins) | Independent-Evaluation test designer for TDD red phase |
|
|
62
87
|
| parallel-implementation | [Ben2pc/g-claude-code-plugins](https://github.com/Ben2pc/g-claude-code-plugins) | Slice planner for parallel multi-subagent code writing |
|
|
63
|
-
| auriga-go | [Ben2pc/auriga-cli](https://github.com/Ben2pc/auriga-cli) | Workflow autopilot for the auriga workflow; reminder-based navigation across the 12 steps with an Experimental hook-backed `ship` mode |
|
|
64
88
|
|
|
65
89
|
Supports both project and global installation scopes.
|
|
66
90
|
|
|
@@ -73,6 +97,7 @@ Installs selected plugins via `claude plugins install`, automatically adding req
|
|
|
73
97
|
| skill-creator | Create and manage custom skills |
|
|
74
98
|
| claude-md-management | Audit and improve CLAUDE.md |
|
|
75
99
|
| codex | Codex cross-model collaboration |
|
|
100
|
+
| auriga-go | Workflow autopilot for the auriga workflow. Reminder-based navigation across the 12 `CLAUDE.md` phases with an Experimental hook-backed `ship` mode. Bundles a skill (description-based NL trigger + `/auriga-go`) plus a plugin-level Stop hook for ship mode. |
|
|
76
101
|
|
|
77
102
|
### Hooks
|
|
78
103
|
|
|
@@ -80,8 +105,8 @@ Installs Claude Code hooks into a chosen scope. Each hook is self-contained unde
|
|
|
80
105
|
|
|
81
106
|
| Hook | Description |
|
|
82
107
|
|---|---|
|
|
83
|
-
| notify | Native macOS notification when Claude needs your attention. Shows the brand mark in the small app-icon position; click brings the originating terminal back to focus. **Focus-aware**: when the launching terminal is already frontmost, drops the banner and plays the sound only (toggle via `soundOnlyWhenFocused` in `config.json`). **Per-project group ID**: new notifications cleanly replace older ones in Notification Center, no process accumulation, no cross-project interference. Auto-installs `alerter` via Homebrew (`vjeantet/tap/alerter`). Customize sound and icon by editing `.claude/hooks/notify/config.json` and `.claude/hooks/notify/icon.png`. macOS-only at runtime; silent no-op on other platforms. |
|
|
84
|
-
| pr-create-guard | PostToolUse hook for `gh pr create`. Queries the newly-created PR via `gh pr view` and injects a body snapshot (headings found + TODO-checkbox counts) as `additionalContext` for the Agent to self-verify against the
|
|
108
|
+
| notify *(opt-in)* | Native macOS notification when Claude needs your attention. Shows the brand mark in the small app-icon position; click brings the originating terminal back to focus. **Focus-aware**: when the launching terminal is already frontmost, drops the banner and plays the sound only (toggle via `soundOnlyWhenFocused` in `config.json`). **Per-project group ID**: new notifications cleanly replace older ones in Notification Center, no process accumulation, no cross-project interference. Auto-installs `alerter` via Homebrew (`vjeantet/tap/alerter`). Customize sound and icon by editing `.claude/hooks/notify/config.json` and `.claude/hooks/notify/icon.png`. macOS-only at runtime; silent no-op on other platforms. |
|
|
109
|
+
| pr-create-guard | PostToolUse hook for `gh pr create`. Queries the newly-created PR via `gh pr view` and injects a body snapshot (headings found + TODO-checkbox counts) as `additionalContext` for the Agent to self-verify against the PR-readiness scope / acceptance / risks / TODO contract. Never blocks — PostToolUse runs after the fact. Graceful degradation when gh is unavailable. |
|
|
85
110
|
| pr-ready-guard | PreToolUse hook for `gh pr ready`. Blocks on structural signals only: (1) stray planning docs at `findings.md` / `progress.md` / `task_plan.md` / `docs/superpowers/specs/*.md` — must be archived to `docs/worklog/worklog-<date>-<branch>/` (or deleted) per CLAUDE.md `Document Conventions`; (2) unfinalized active specs at `docs/specs/*.md` — must be promoted to `docs/architecture/`, archived, or deleted; (3) unpushed commits on the current branch. No text regex of PR content is ever used as a block signal. On pass, injects a PR body snapshot as `additionalContext`. |
|
|
86
111
|
|
|
87
112
|
Scope choices:
|
|
@@ -98,6 +123,12 @@ Re-running the installer preserves your customized `config.json` and `icon.png`,
|
|
|
98
123
|
- [Claude Code](https://docs.anthropic.com/en/docs/claude-code) (required for Plugins and Hooks modules)
|
|
99
124
|
- [Homebrew](https://brew.sh) (recommended for the `notify` hook to install `alerter`)
|
|
100
125
|
|
|
126
|
+
## Development
|
|
127
|
+
|
|
128
|
+
- `npm test` — unit/integration tests (sub-second)
|
|
129
|
+
- `bash tests/ship-loop.test.sh` — ship-loop Stop hook tests (bash)
|
|
130
|
+
- `npm run test:e2e` — full tarball install e2e suite (~90-120s). Packs the actual npm tarball, installs it into a scratch project, and runs `auriga-cli install` against GitHub content pinned to the current HEAD SHA. The preflight uses `git branch -r --contains HEAD` — purely local, no network — so **HEAD must be reachable from a local remote ref** (a successful `git push` updates local remote refs synchronously; if someone else pushed, run `git fetch` first). The `plugins` and `--all` scenarios additionally require the `claude` CLI on PATH; they skip gracefully otherwise.
|
|
131
|
+
|
|
101
132
|
## License
|
|
102
133
|
|
|
103
134
|
MIT
|
package/README.zh-CN.md
CHANGED
|
@@ -11,13 +11,38 @@
|
|
|
11
11
|
| 模块 | 说明 |
|
|
12
12
|
|---|---|
|
|
13
13
|
| **Workflow** | `CLAUDE.md` 里的 auriga 工作流:需求澄清 → TDD → Review,Harness 原则,Subagent 使用指南 |
|
|
14
|
-
| **Skills** | 开发流程 skills —— brainstorming、systematic-debugging、TDD、verification、planning、playwright |
|
|
15
|
-
| **Recommended Skills** | 可选的工具类 skills(如 `
|
|
16
|
-
| **Plugins** | 推荐的 Claude Code 插件 —— skill-creator、claude-md-management、codex |
|
|
17
|
-
| **Hooks** | Claude Code hooks:`notify`(macOS
|
|
14
|
+
| **Skills** | 开发流程 + 编排类 skills —— brainstorming、systematic-debugging、TDD、verification、planning、playwright、deep-review、test-designer、parallel-implementation、ui-ux-pro-max |
|
|
15
|
+
| **Recommended Skills** | 可选的工具类 skills(如 `codex-agent`、`claude-code-agent`),在 workflow skills 之外按需追加 |
|
|
16
|
+
| **Plugins** | 推荐的 Claude Code 插件 —— skill-creator、claude-md-management、codex、auriga-go |
|
|
17
|
+
| **Hooks** | Claude Code hooks:`notify`(macOS 通知,终端在焦点时仅放声不弹横幅 —— **opt-in**:`install --all` 不装,需要 `install hooks --hook notify`)、`pr-create-guard`(`gh pr create` 后注入 PR body 快照的 PostToolUse)、`pr-ready-guard`(`gh pr ready` 前按游离 planning 文档 / `docs/specs/` 内未清理的 spec / 未 push commits 拦截的 PreToolUse) |
|
|
18
18
|
|
|
19
19
|
## 快速开始
|
|
20
20
|
|
|
21
|
+
### Agent Bootstrap(非交互)
|
|
22
|
+
|
|
23
|
+
在 `claude -p`、`claude -p --worktree` 或任何非交互 Agent 会话里想装整套 harness?从这里开始:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
npx -y auriga-cli guide
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
会打印一份 5 步 SOP(前置检查 → `install --all` → 可选 recommended skills → 重启 session → 验证)。Agent 照着顺序往下跑就能装完整套 harness,全程不需要人按键。
|
|
30
|
+
|
|
31
|
+
开头的 `-y` 是 **npx 自己的 flag**(用来跳过"是否要装这个包"的确认),**不是** auriga-cli 的参数。
|
|
32
|
+
|
|
33
|
+
非交互安装命令:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npx -y auriga-cli install --all # workflow + skills + plugins + hooks(原子)
|
|
37
|
+
npx -y auriga-cli install recommended # 可选工具 skills(不在 --all 内)
|
|
38
|
+
npx -y auriga-cli install <type> [--flags] # 单类:workflow | skills | recommended | plugins | hooks
|
|
39
|
+
npx -y auriga-cli --help # 完整 catalog + flag 说明
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
退出码:`0` 成功;`1` 致命错误(前置检查 / 解析 / 拉取失败);`2` 部分成功——`stderr` 会列出逐类 `[OK]/[FAIL]` 和 `Retry:` 提示。装完后请重启 Claude Code session,让新的 `CLAUDE.md` / skills / plugins / hook 注册 生效。
|
|
43
|
+
|
|
44
|
+
### 交互式菜单
|
|
45
|
+
|
|
21
46
|
```bash
|
|
22
47
|
npx auriga-cli
|
|
23
48
|
```
|
|
@@ -46,7 +71,7 @@ npx auriga-cli
|
|
|
46
71
|
|
|
47
72
|
### Skills
|
|
48
73
|
|
|
49
|
-
通过 `npx skills add`
|
|
74
|
+
通过 `npx skills add` 安装选中的 skills,同时安装到 Claude Code 和 Codex。
|
|
50
75
|
|
|
51
76
|
| Skill | 来源 | 说明 |
|
|
52
77
|
|---|---|---|
|
|
@@ -60,7 +85,6 @@ npx auriga-cli
|
|
|
60
85
|
| deep-review | [Ben2pc/g-claude-code-plugins](https://github.com/Ben2pc/g-claude-code-plugins) | 多维度 PR review 编排器(必选 + 条件 + punch list 汇总) |
|
|
61
86
|
| test-designer | [Ben2pc/g-claude-code-plugins](https://github.com/Ben2pc/g-claude-code-plugins) | TDD 红灯阶段的 Independent Evaluation 测试设计器 |
|
|
62
87
|
| parallel-implementation | [Ben2pc/g-claude-code-plugins](https://github.com/Ben2pc/g-claude-code-plugins) | 多 subagent 并行写代码时的切片计划器 |
|
|
63
|
-
| auriga-go | [Ben2pc/auriga-cli](https://github.com/Ben2pc/auriga-cli) | auriga 工作流的自动驾驶:在 12 步内做 reminder-based 导航;包含 Experimental 的 hook-backed `ship` 模式 |
|
|
64
88
|
|
|
65
89
|
支持 project 和 global 两种安装范围。
|
|
66
90
|
|
|
@@ -73,6 +97,7 @@ npx auriga-cli
|
|
|
73
97
|
| skill-creator | 创建和管理自定义 skills |
|
|
74
98
|
| claude-md-management | 审计和改进 CLAUDE.md |
|
|
75
99
|
| codex | Codex 跨模型协作 |
|
|
100
|
+
| auriga-go | auriga 工作流的自动驾驶:在 12 步内做 reminder-based 导航;包含 Experimental 的 hook-backed `ship` 模式。内置一个 skill(按 description 的自然语言触发 + `/auriga-go` slash command)和一个 plugin 层面的 Stop hook。 |
|
|
76
101
|
|
|
77
102
|
### Hooks
|
|
78
103
|
|
|
@@ -80,8 +105,8 @@ npx auriga-cli
|
|
|
80
105
|
|
|
81
106
|
| Hook | 说明 |
|
|
82
107
|
|---|---|
|
|
83
|
-
| notify | 当 Claude 需要你关注时弹一条原生 macOS 通知。在通知小图标位显示品牌图,点击通知可把发起 Claude 的终端拉回前台。**焦点感知**:发起 Claude 的终端正处于前台时,仅放提示音不弹横幅(通过 `config.json` 的 `soundOnlyWhenFocused` 切换)。**按项目分组**:新通知会干净地替换通知中心里的旧条目,不会进程堆积,也不会跨项目互相覆盖。会自动通过 Homebrew 安装 `alerter`(`vjeantet/tap/alerter`)。改 `.claude/hooks/notify/config.json` 即可换提示音、替换 `.claude/hooks/notify/icon.png` 即可换图标。仅 macOS 运行时生效,其它平台静默 no-op。 |
|
|
84
|
-
| pr-create-guard | `gh pr create` 的 PostToolUse hook。创建成功后通过 `gh pr view` 拉真实 PR body,扫 `^##` / `^###` headings 并统计 `- [ ]` / `- [x]`,通过 `additionalContext` 注入快照让 Agent 对照
|
|
108
|
+
| notify *(opt-in)* | 当 Claude 需要你关注时弹一条原生 macOS 通知。在通知小图标位显示品牌图,点击通知可把发起 Claude 的终端拉回前台。**焦点感知**:发起 Claude 的终端正处于前台时,仅放提示音不弹横幅(通过 `config.json` 的 `soundOnlyWhenFocused` 切换)。**按项目分组**:新通知会干净地替换通知中心里的旧条目,不会进程堆积,也不会跨项目互相覆盖。会自动通过 Homebrew 安装 `alerter`(`vjeantet/tap/alerter`)。改 `.claude/hooks/notify/config.json` 即可换提示音、替换 `.claude/hooks/notify/icon.png` 即可换图标。仅 macOS 运行时生效,其它平台静默 no-op。 |
|
|
109
|
+
| pr-create-guard | `gh pr create` 的 PostToolUse hook。创建成功后通过 `gh pr view` 拉真实 PR body,扫 `^##` / `^###` headings 并统计 `- [ ]` / `- [x]`,通过 `additionalContext` 注入快照让 Agent 对照 PR-readiness 阶段的"范围 / 验收标准 / 风险 / 剩余 TODO"四要素。不 block——PostToolUse 发生在动作之后。gh 不可用时静默降级。 |
|
|
85
110
|
| pr-ready-guard | `gh pr ready` 的 PreToolUse hook。**只按结构信号**拦截:(1) 仓库根存在游离 planning 文档(`findings.md` / `progress.md` / `task_plan.md`)或 `docs/superpowers/specs/*.md` 未归档——按 CLAUDE.md 的"文档规范"迁到 `docs/worklog/worklog-<date>-<branch>/` 或删除;(2) `docs/specs/*.md` 内有未结案的活跃 spec——晋升到 `docs/architecture/`、归档或删除;(3) 本地有未 push commits。**不做 PR 正文文本 regex 匹配**。放行时注入 PR body 快照。 |
|
|
86
111
|
|
|
87
112
|
作用域选择:
|
|
@@ -98,6 +123,12 @@ npx auriga-cli
|
|
|
98
123
|
- [Claude Code](https://docs.anthropic.com/en/docs/claude-code)(Plugins 和 Hooks 模块需要)
|
|
99
124
|
- [Homebrew](https://brew.sh)(`notify` hook 用来安装 `alerter`,可选)
|
|
100
125
|
|
|
126
|
+
## 开发
|
|
127
|
+
|
|
128
|
+
- `npm test` —— 单元/集成测试(亚秒)
|
|
129
|
+
- `bash tests/ship-loop.test.sh` —— ship-loop Stop hook 测试(bash)
|
|
130
|
+
- `npm run test:e2e` —— 完整的 tarball 安装 e2e 套件(~90-120s)。`npm pack` 打出真实 tarball,装到临时项目,对着 GitHub 上当前 HEAD SHA 对应的 content 跑 `auriga-cli install`。预检用 `git branch -r --contains HEAD`,纯本地、不发网络请求,因此 **HEAD 必须能被任何本地 remote ref 追溯到**(`git push` 成功时会同步更新本地 remote ref;如果是别人推的,先 `git fetch`)。`plugins` 和 `--all` 场景还要求 `claude` CLI 已在 PATH,否则这两条会优雅跳过。
|
|
131
|
+
|
|
101
132
|
## License
|
|
102
133
|
|
|
103
134
|
MIT
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export interface CatalogEntry {
|
|
2
|
+
name: string;
|
|
3
|
+
description: string;
|
|
4
|
+
}
|
|
5
|
+
export interface Catalog {
|
|
6
|
+
generatedAt: string;
|
|
7
|
+
workflowSkills: CatalogEntry[];
|
|
8
|
+
recommendedSkills: CatalogEntry[];
|
|
9
|
+
plugins: CatalogEntry[];
|
|
10
|
+
hooks: CatalogEntry[];
|
|
11
|
+
}
|
|
12
|
+
export declare function loadCatalog(packageRoot: string): Catalog;
|
package/dist/catalog.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import fs from "node:fs";
|
|
2
|
+
import path from "node:path";
|
|
3
|
+
export function loadCatalog(packageRoot) {
|
|
4
|
+
const catalogPath = path.join(packageRoot, "dist", "catalog.json");
|
|
5
|
+
if (!fs.existsSync(catalogPath)) {
|
|
6
|
+
throw new Error(`catalog missing at ${catalogPath}. Run 'npm run build' or reinstall the package.`);
|
|
7
|
+
}
|
|
8
|
+
return JSON.parse(fs.readFileSync(catalogPath, "utf-8"));
|
|
9
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"generatedAt": "2026-04-22T05:16:53.660Z",
|
|
3
|
+
"workflowSkills": [
|
|
4
|
+
{
|
|
5
|
+
"name": "brainstorming",
|
|
6
|
+
"description": "You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation."
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"name": "deep-review",
|
|
10
|
+
"description": "Run a formal, multi-dimensional code review of a pull request. Reads the PR diff, classifies change types, dispatches parallel reviewers by dimension (correctness, consistency, docs-sync, plus conditional security/edge-cases/UX/performance/structure/maintainability), and synthesizes findings into an actionable punch list. Use when the user asks to review a PR, run /deep-review, mark a PR as ready for review, or requests a formal/thorough code review."
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "parallel-implementation",
|
|
14
|
+
"description": "Plan how to slice a non-trivial coding task across parallel subagents. Returns a dispatch plan (file assignments, dependencies, output-format contracts) — the main Agent then executes it with the Agent tool + `isolation: \"worktree\"`. Invoke only when work justifies multi-agent overhead: (a) greenfield 0→1 across multiple independent modules, (b) change touches ≥3 modules, or (c) ≥5 files each with >50 lines of diff. Small changes write inline."
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "planning-with-files",
|
|
18
|
+
"description": "Implements Manus-style file-based planning to organize and track progress on complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when asked to plan out, break down, or organize a multi-step project, research task, or any work requiring >5 tool calls. Supports automatic session recovery after /clear."
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "playwright-cli",
|
|
22
|
+
"description": "Automate browser interactions, test web pages and work with Playwright tests."
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "systematic-debugging",
|
|
26
|
+
"description": "Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"name": "test-designer",
|
|
30
|
+
"description": "Design failing tests for complex features using Independent Evaluation — dispatches a context-free agent that sees only the requirement spec and code paths (not the implementation approach), then returns executable failing tests. Use when starting TDD for a non-trivial feature, when the requirement is ambiguous enough that biased tests are a risk, or when the user asks for independent test design."
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "test-driven-development",
|
|
34
|
+
"description": "Use when implementing any feature or bugfix, before writing implementation code"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "ui-ux-pro-max",
|
|
38
|
+
"description": "UI/UX design intelligence for web and mobile. Includes 50+ styles, 161 color palettes, 57 font pairings, 161 product types, 99 UX guidelines, and 25 chart types across 10 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui, and HTML/CSS). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, and check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, and mobile app. Elements: button, modal, navbar, sidebar, card, table, form, and chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, and flat design. Topics: color systems, accessibility, animation, layout, typography, font pairing, spacing, interaction states, shadow, and gradient. Integrations: shadcn/ui MCP for component search and examples."
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "verification-before-completion",
|
|
42
|
+
"description": "Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence before assertions always"
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"recommendedSkills": [
|
|
46
|
+
{
|
|
47
|
+
"name": "claude-code-agent",
|
|
48
|
+
"description": "Delegate coding, review, diagnosis, planning, and structured-output tasks to an independent Claude Code session via `claude -p` (Agent SDK)."
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "codex-agent",
|
|
52
|
+
"description": "Delegate coding, review, diagnosis, planning, and browser tasks to an independent Codex session via `codex exec` / resume / review."
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"plugins": [
|
|
56
|
+
{
|
|
57
|
+
"name": "skill-creator",
|
|
58
|
+
"description": "Create and manage custom skills"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "claude-md-management",
|
|
62
|
+
"description": "Audit and improve CLAUDE.md files"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "codex",
|
|
66
|
+
"description": "Cross-model collaboration with Codex"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"name": "auriga-go",
|
|
70
|
+
"description": "Workflow autopilot for the auriga workflow (reminder-based navigation + Experimental ship mode)"
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"hooks": [
|
|
74
|
+
{
|
|
75
|
+
"name": "notify",
|
|
76
|
+
"description": "(opt-in) Native macOS notification when Claude needs your attention (auto-installs alerter via Homebrew)"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "pr-create-guard",
|
|
80
|
+
"description": "Workflow guard: after `gh pr create`, query the new PR and inject a body snapshot (headings + TODO counts) so the Agent can verify scope / acceptance / risks / TODO"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "pr-ready-guard",
|
|
84
|
+
"description": "Workflow guard: block `gh pr ready` on unpushed commits, stray planning docs, or unfinalized active specs in docs/specs/; filter-inject PR body snapshot otherwise"
|
|
85
|
+
}
|
|
86
|
+
]
|
|
87
|
+
}
|
package/dist/cli.d.ts
CHANGED
|
@@ -1,2 +1,24 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
|
|
2
|
+
import { type CategoryName } from "./types.js";
|
|
3
|
+
export type { CategoryName } from "./types.js";
|
|
4
|
+
export interface InstallParsed {
|
|
5
|
+
all: boolean;
|
|
6
|
+
type?: CategoryName;
|
|
7
|
+
filter?: string[];
|
|
8
|
+
lang?: string;
|
|
9
|
+
cwd?: string;
|
|
10
|
+
scope?: "project" | "user";
|
|
11
|
+
}
|
|
12
|
+
export type ParsedArgs = {
|
|
13
|
+
command: "help";
|
|
14
|
+
helpType?: CategoryName;
|
|
15
|
+
} | {
|
|
16
|
+
command: "version";
|
|
17
|
+
} | {
|
|
18
|
+
command: "guide";
|
|
19
|
+
} | {
|
|
20
|
+
command: "install";
|
|
21
|
+
install: InstallParsed;
|
|
22
|
+
};
|
|
23
|
+
export declare function parseArgs(argv: string[]): ParsedArgs;
|
|
24
|
+
export declare function main(argv: string[]): Promise<number>;
|