diff --git a/.agents/plugins/marketplace.json b/.agents/plugins/marketplace.json new file mode 100644 index 00000000..a1561e41 --- /dev/null +++ b/.agents/plugins/marketplace.json @@ -0,0 +1,20 @@ +{ + "name": "everything-claude-code", + "interface": { + "displayName": "Everything Claude Code" + }, + "plugins": [ + { + "name": "everything-claude-code", + "source": { + "source": "local", + "path": "../.." + }, + "policy": { + "installation": "AVAILABLE", + "authentication": "ON_INSTALL" + }, + "category": "Productivity" + } + ] +} diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 27caf617..a68b198b 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -21,5 +21,37 @@ "workflow", "automation", "best-practices" - ] + ], + "agents": [ + "./agents/architect.md", + "./agents/build-error-resolver.md", + "./agents/chief-of-staff.md", + "./agents/code-reviewer.md", + "./agents/cpp-build-resolver.md", + "./agents/cpp-reviewer.md", + "./agents/database-reviewer.md", + "./agents/doc-updater.md", + "./agents/docs-lookup.md", + "./agents/e2e-runner.md", + "./agents/flutter-reviewer.md", + "./agents/go-build-resolver.md", + "./agents/go-reviewer.md", + "./agents/harness-optimizer.md", + "./agents/java-build-resolver.md", + "./agents/java-reviewer.md", + "./agents/kotlin-build-resolver.md", + "./agents/kotlin-reviewer.md", + "./agents/loop-operator.md", + "./agents/planner.md", + "./agents/python-reviewer.md", + "./agents/pytorch-build-resolver.md", + "./agents/refactor-cleaner.md", + "./agents/rust-build-resolver.md", + "./agents/rust-reviewer.md", + "./agents/security-reviewer.md", + "./agents/tdd-guide.md", + "./agents/typescript-reviewer.md" + ], + "skills": ["./skills/"], + "commands": ["./commands/"] } diff --git a/.claude/rules/node.md b/.claude/rules/node.md new file mode 100644 index 00000000..5cf890af --- /dev/null +++ b/.claude/rules/node.md @@ -0,0 +1,47 @@ +# Node.js Rules for everything-claude-code + +> Project-specific rules for the ECC codebase. Extends common rules. + +## Stack + +- **Runtime**: Node.js >=18 (no transpilation, plain CommonJS) +- **Test runner**: `node tests/run-all.js` — individual files via `node tests/**/*.test.js` +- **Linter**: ESLint (`@eslint/js`, flat config) +- **Coverage**: c8 +- **Lint**: markdownlint-cli for `.md` files + +## File Conventions + +- `scripts/` — Node.js utilities, hooks. CommonJS (`require`/`module.exports`) +- `agents/`, `commands/`, `skills/`, `rules/` — Markdown with YAML frontmatter +- `tests/` — Mirror the `scripts/` structure. Test files named `*.test.js` +- File naming: **lowercase with hyphens** (e.g. `session-start.js`, `post-edit-format.js`) + +## Code Style + +- CommonJS only — no ESM (`import`/`export`) unless file ends in `.mjs` +- No TypeScript — plain `.js` throughout +- Prefer `const` over `let`; never `var` +- Keep hook scripts under 200 lines — extract helpers to `scripts/lib/` +- All hooks must `exit 0` on non-critical errors (never block tool execution unexpectedly) + +## Hook Development + +- Hook scripts normally receive JSON on stdin, but hooks routed through `scripts/hooks/run-with-flags.js` can export `run(rawInput)` and let the wrapper handle parsing/gating +- Async hooks: mark `"async": true` in `settings.json` with a timeout ≤30s +- Blocking hooks (PreToolUse, stop): keep fast (<200ms) — no network calls +- Use `run-with-flags.js` wrapper for all hooks so `ECC_HOOK_PROFILE` and `ECC_DISABLED_HOOKS` runtime gating works +- Always exit 0 on parse errors; log to stderr with `[HookName]` prefix + +## Testing Requirements + +- Run `node tests/run-all.js` before committing +- New scripts in `scripts/lib/` require a matching test in `tests/lib/` +- New hooks require at least one integration test in `tests/hooks/` + +## Markdown / Agent Files + +- Agents: YAML frontmatter with `name`, `description`, `tools`, `model` +- Skills: sections — When to Use, How It Works, Examples +- Commands: `description:` frontmatter line required +- Run `npx markdownlint-cli '**/*.md' --ignore node_modules` before committing diff --git a/.codex-plugin/README.md b/.codex-plugin/README.md new file mode 100644 index 00000000..42f211db --- /dev/null +++ b/.codex-plugin/README.md @@ -0,0 +1,49 @@ +# .codex-plugin — Codex Native Plugin for ECC + +This directory contains the **Codex plugin manifest** for Everything Claude Code. + +## Structure + +``` +.codex-plugin/ +└── plugin.json — Codex plugin manifest (name, version, skills ref, MCP ref) +.mcp.json — MCP server configurations at plugin root (NOT inside .codex-plugin/) +``` + +## What This Provides + +- **125 skills** from `./skills/` — reusable Codex workflows for TDD, security, + code review, architecture, and more +- **6 MCP servers** — GitHub, Context7, Exa, Memory, Playwright, Sequential Thinking + +## Installation + +Codex plugin support is currently in preview. Once generally available: + +```bash +# Install from Codex CLI +codex plugin install affaan-m/everything-claude-code + +# Or reference locally during development +codex plugin install ./ + +Run this from the repository root so `./` points to the repo root and `.mcp.json` resolves correctly. +``` + +## MCP Servers Included + +| Server | Purpose | +|---|---| +| `github` | GitHub API access | +| `context7` | Live documentation lookup | +| `exa` | Neural web search | +| `memory` | Persistent memory across sessions | +| `playwright` | Browser automation & E2E testing | +| `sequential-thinking` | Step-by-step reasoning | + +## Notes + +- The `skills/` directory at the repo root is shared between Claude Code (`.claude-plugin/`) + and Codex (`.codex-plugin/`) — same source of truth, no duplication +- MCP server credentials are inherited from the launching environment (env vars) +- This manifest does **not** override `~/.codex/config.toml` settings diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json new file mode 100644 index 00000000..16941577 --- /dev/null +++ b/.codex-plugin/plugin.json @@ -0,0 +1,30 @@ +{ + "name": "everything-claude-code", + "version": "1.9.0", + "description": "Battle-tested Codex workflows — 125 skills, production-ready MCP configs, and agent definitions for TDD, security scanning, code review, and autonomous development.", + "author": { + "name": "Affaan Mustafa", + "email": "me@affaanmustafa.com", + "url": "https://x.com/affaanmustafa" + }, + "homepage": "https://github.com/affaan-m/everything-claude-code", + "repository": "https://github.com/affaan-m/everything-claude-code", + "license": "MIT", + "keywords": ["codex", "agents", "skills", "tdd", "code-review", "security", "workflow", "automation"], + "skills": "./skills/", + "mcpServers": "./.mcp.json", + "interface": { + "displayName": "Everything Claude Code", + "shortDescription": "125 battle-tested skills for TDD, security, code review, and autonomous development.", + "longDescription": "Everything Claude Code (ECC) is a community-maintained collection of Codex skills and MCP configs evolved over 10+ months of intensive daily use. It covers TDD workflows, security scanning, code review, architecture decisions, and more — all in one installable plugin.", + "developerName": "Affaan Mustafa", + "category": "Productivity", + "capabilities": ["Read", "Write"], + "websiteURL": "https://github.com/affaan-m/everything-claude-code", + "defaultPrompt": [ + "Use the tdd-workflow skill to write tests before implementation.", + "Use the security-review skill to scan for OWASP Top 10 vulnerabilities.", + "Use the code-review skill to review this PR for correctness and security." + ] + } +} diff --git a/.codex/AGENTS.md b/.codex/AGENTS.md index ac93fb49..52301662 100644 --- a/.codex/AGENTS.md +++ b/.codex/AGENTS.md @@ -46,12 +46,15 @@ Available skills: Treat the project-local `.codex/config.toml` as the default Codex baseline for ECC. The current ECC baseline enables GitHub, Context7, Exa, Memory, Playwright, and Sequential Thinking; add heavier extras in `~/.codex/config.toml` only when a task actually needs them. +ECC's canonical Codex section name is `[mcp_servers.context7]`. The launcher package remains `@upstash/context7-mcp`; only the TOML section name is normalized for consistency with `codex mcp list` and the reference config. + ### Automatic config.toml merging The sync script (`scripts/sync-ecc-to-codex.sh`) uses a Node-based TOML parser to safely merge ECC MCP servers into `~/.codex/config.toml`: - **Add-only by default** — missing ECC servers are appended; existing servers are never modified or removed. - **7 managed servers** — Supabase, Playwright, Context7, Exa, GitHub, Memory, Sequential Thinking. +- **Canonical naming** — ECC manages Context7 as `[mcp_servers.context7]`; legacy `[mcp_servers.context7-mcp]` entries are treated as aliases during updates. - **Package-manager aware** — uses the project's configured package manager (npm/pnpm/yarn/bun) instead of hardcoding `pnpm`. - **Drift warnings** — if an existing server's config differs from the ECC recommendation, the script logs a warning. - **`--update-mcp`** — explicitly replaces all ECC-managed servers with the latest recommended config (safely removes subtables like `[mcp_servers.supabase.env]`). diff --git a/.codex/config.toml b/.codex/config.toml index e1e1bf52..069fe076 100644 --- a/.codex/config.toml +++ b/.codex/config.toml @@ -27,7 +27,10 @@ notify = [ "-sound", "default", ] -# Prefer AGENTS.md and project-local .codex/AGENTS.md for instructions. +# Persistent instructions are appended to every prompt (additive, unlike +# model_instructions_file which replaces AGENTS.md). +persistent_instructions = "Follow project AGENTS.md guidelines. Use available MCP servers when they can help." + # model_instructions_file replaces built-in instructions instead of AGENTS.md, # so leave it unset unless you intentionally want a single override file. # model_instructions_file = "/absolute/path/to/instructions.md" @@ -38,10 +41,14 @@ notify = [ [mcp_servers.github] command = "npx" args = ["-y", "@modelcontextprotocol/server-github"] +startup_timeout_sec = 30 [mcp_servers.context7] command = "npx" +# Canonical Codex section name is `context7`; the package itself remains +# `@upstash/context7-mcp`. args = ["-y", "@upstash/context7-mcp@latest"] +startup_timeout_sec = 30 [mcp_servers.exa] url = "https://mcp.exa.ai/mcp" @@ -49,14 +56,17 @@ url = "https://mcp.exa.ai/mcp" [mcp_servers.memory] command = "npx" args = ["-y", "@modelcontextprotocol/server-memory"] +startup_timeout_sec = 30 [mcp_servers.playwright] command = "npx" args = ["-y", "@playwright/mcp@latest", "--extension"] +startup_timeout_sec = 30 [mcp_servers.sequential-thinking] command = "npx" args = ["-y", "@modelcontextprotocol/server-sequential-thinking"] +startup_timeout_sec = 30 # Additional MCP servers (uncomment as needed): # [mcp_servers.supabase] diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be6b2564..e82760b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,13 +44,20 @@ jobs: # Package manager setup - name: Setup pnpm if: matrix.pm == 'pnpm' - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4 with: version: latest + - name: Setup Yarn (via Corepack) + if: matrix.pm == 'yarn' + shell: bash + run: | + corepack enable + corepack prepare yarn@stable --activate + - name: Setup Bun if: matrix.pm == 'bun' - uses: oven-sh/setup-bun@v2 + uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2 # Cache configuration - name: Get npm cache directory @@ -114,14 +121,18 @@ jobs: ${{ runner.os }}-bun- # Install dependencies + # COREPACK_ENABLE_STRICT=0 allows pnpm to install even though + # package.json declares "packageManager": "yarn@..." - name: Install dependencies shell: bash + env: + COREPACK_ENABLE_STRICT: '0' run: | case "${{ matrix.pm }}" in npm) npm ci ;; - pnpm) pnpm install ;; - # --ignore-engines required for Node 18 compat with some devDependencies (e.g., markdownlint-cli) - yarn) yarn install --ignore-engines ;; + pnpm) pnpm install --no-frozen-lockfile ;; + # Yarn Berry (v4+) removed --ignore-engines; engine checking is no longer a core feature + yarn) yarn install ;; bun) bun install ;; *) echo "Unsupported package manager: ${{ matrix.pm }}" && exit 1 ;; esac diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 85a48c28..524880a7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,11 +20,13 @@ jobs: - name: Validate version tag run: | - if ! [[ "${{ github.ref_name }}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then + if ! [[ "${REF_NAME}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then echo "Invalid version tag format. Expected vX.Y.Z" exit 1 fi + env: + REF_NAME: ${{ github.ref_name }} - name: Verify plugin.json version matches tag env: TAG_NAME: ${{ github.ref_name }} @@ -61,7 +63,7 @@ jobs: EOF - name: Create GitHub Release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe # v2 with: body_path: release_body.md generate_release_notes: true diff --git a/.github/workflows/reusable-release.yml b/.github/workflows/reusable-release.yml index d5a121d8..c5df4136 100644 --- a/.github/workflows/reusable-release.yml +++ b/.github/workflows/reusable-release.yml @@ -49,7 +49,7 @@ jobs: EOF - name: Create GitHub Release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe # v2 with: tag_name: ${{ inputs.tag }} body_path: release_body.md diff --git a/.github/workflows/reusable-test.yml b/.github/workflows/reusable-test.yml index ff907249..2f362e2d 100644 --- a/.github/workflows/reusable-test.yml +++ b/.github/workflows/reusable-test.yml @@ -36,13 +36,20 @@ jobs: - name: Setup pnpm if: inputs.package-manager == 'pnpm' - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4 with: version: latest + - name: Setup Yarn (via Corepack) + if: inputs.package-manager == 'yarn' + shell: bash + run: | + corepack enable + corepack prepare yarn@stable --activate + - name: Setup Bun if: inputs.package-manager == 'bun' - uses: oven-sh/setup-bun@v2 + uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2 - name: Get npm cache directory if: inputs.package-manager == 'npm' @@ -104,13 +111,18 @@ jobs: restore-keys: | ${{ runner.os }}-bun- + # COREPACK_ENABLE_STRICT=0 allows pnpm to install even though + # package.json declares "packageManager": "yarn@..." - name: Install dependencies shell: bash + env: + COREPACK_ENABLE_STRICT: '0' run: | case "${{ inputs.package-manager }}" in npm) npm ci ;; - pnpm) pnpm install ;; - yarn) yarn install --ignore-engines ;; + pnpm) pnpm install --no-frozen-lockfile ;; + # Yarn Berry (v4+) removed --ignore-engines; engine checking is no longer a core feature + yarn) yarn install ;; bun) bun install ;; *) echo "Unsupported package manager: ${{ inputs.package-manager }}" && exit 1 ;; esac diff --git a/.gitignore b/.gitignore index 68de41d1..88c7755a 100644 --- a/.gitignore +++ b/.gitignore @@ -83,6 +83,9 @@ temp/ *.bak *.backup +# Observer temp files (continuous-learning-v2) +.observer-tmp/ + # Rust build artifacts ecc2/target/ diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 00000000..26886617 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,27 @@ +{ + "mcpServers": { + "github": { + "command": "npx", + "args": ["-y", "@modelcontextprotocol/server-github"] + }, + "context7": { + "command": "npx", + "args": ["-y", "@upstash/context7-mcp@2.1.4"] + }, + "exa": { + "url": "https://mcp.exa.ai/mcp" + }, + "memory": { + "command": "npx", + "args": ["-y", "@modelcontextprotocol/server-memory"] + }, + "playwright": { + "command": "npx", + "args": ["-y", "@playwright/mcp@0.0.68", "--extension"] + }, + "sequential-thinking": { + "command": "npx", + "args": ["-y", "@modelcontextprotocol/server-sequential-thinking"] + } + } +} diff --git a/.trae/README.md b/.trae/README.md new file mode 100644 index 00000000..0eca108f --- /dev/null +++ b/.trae/README.md @@ -0,0 +1,184 @@ +# Everything Claude Code for Trae + +Bring Everything Claude Code (ECC) workflows to Trae IDE. This repository provides custom commands, agents, skills, and rules that can be installed into any Trae project with a single command. + +## Quick Start + +### Option 1: Local Installation (Current Project Only) + +```bash +# Install to current project +cd /path/to/your/project +TRAE_ENV=cn .trae/install.sh +``` + +This creates `.trae-cn/` in your project directory. + +### Option 2: Global Installation (All Projects) + +```bash +# Install globally to ~/.trae-cn/ +cd /path/to/your/project +TRAE_ENV=cn .trae/install.sh ~ + +# Or from the .trae folder directly +cd /path/to/your/project/.trae +TRAE_ENV=cn ./install.sh ~ +``` + +This creates `~/.trae-cn/` which applies to all Trae projects. + +### Option 3: Quick Install to Current Directory + +```bash +# If already in project directory with .trae folder +cd .trae +./install.sh +``` + +The installer uses non-destructive copy - it will not overwrite your existing files. + +## Installation Modes + +### Local Installation + +Install to the current project's `.trae-cn` directory: + +```bash +cd /path/to/your/project +TRAE_ENV=cn .trae/install.sh +``` + +This creates `/path/to/your/project/.trae-cn/` with all ECC components. + +### Global Installation + +Install to your home directory's `.trae-cn` directory (applies to all Trae projects): + +```bash +# From project directory +TRAE_ENV=cn .trae/install.sh ~ + +# Or directly from .trae folder +cd .trae +TRAE_ENV=cn ./install.sh ~ +``` + +This creates `~/.trae-cn/` with all ECC components. All Trae projects will use these global installations. + +**Note**: Global installation is useful when you want to maintain a single copy of ECC across all your projects. + +## Environment Support + +- **Default**: Uses `.trae` directory +- **CN Environment**: Uses `.trae-cn` directory (set via `TRAE_ENV=cn`) + +### Force Environment + +```bash +# From project root, force the CN environment +TRAE_ENV=cn .trae/install.sh + +# From inside the .trae folder +cd .trae +TRAE_ENV=cn ./install.sh +``` + +**Note**: `TRAE_ENV` is a global environment variable that applies to the entire installation session. + +## Uninstall + +The uninstaller uses a manifest file (`.ecc-manifest`) to track installed files, ensuring safe removal: + +```bash +# Uninstall from current directory (if already inside .trae or .trae-cn) +cd .trae-cn +./uninstall.sh + +# Or uninstall from project root +cd /path/to/your/project +TRAE_ENV=cn .trae/uninstall.sh + +# Uninstall globally from home directory +TRAE_ENV=cn .trae/uninstall.sh ~ + +# Will ask for confirmation before uninstalling +``` + +### Uninstall Behavior + +- **Safe removal**: Only removes files tracked in the manifest (installed by ECC) +- **User files preserved**: Any files you added manually are kept +- **Non-empty directories**: Directories containing user-added files are skipped +- **Manifest-based**: Requires `.ecc-manifest` file (created during install) + +### Environment Support + +Uninstall respects the same `TRAE_ENV` environment variable as install: + +```bash +# Uninstall from .trae-cn (CN environment) +TRAE_ENV=cn ./uninstall.sh + +# Uninstall from .trae (default environment) +./uninstall.sh +``` + +**Note**: If no manifest file is found (old installation), the uninstaller will ask whether to remove the entire directory. + +## What's Included + +### Commands + +Commands are on-demand workflows invocable via the `/` menu in Trae chat. All commands are reused directly from the project root's `commands/` folder. + +### Agents + +Agents are specialized AI assistants with specific tool configurations. All agents are reused directly from the project root's `agents/` folder. + +### Skills + +Skills are on-demand workflows invocable via the `/` menu in chat. All skills are reused directly from the project's `skills/` folder. + +### Rules + +Rules provide always-on rules and context that shape how the agent works with your code. All rules are reused directly from the project root's `rules/` folder. + +## Usage + +1. Type `/` in chat to open the commands menu +2. Select a command or skill +3. The agent will guide you through the workflow with specific instructions and checklists + +## Project Structure + +``` +.trae/ (or .trae-cn/) +├── commands/ # Command files (reused from project root) +├── agents/ # Agent files (reused from project root) +├── skills/ # Skill files (reused from skills/) +├── rules/ # Rule files (reused from project root) +├── install.sh # Install script +├── uninstall.sh # Uninstall script +└── README.md # This file +``` + +## Customization + +All files are yours to modify after installation. The installer never overwrites existing files, so your customizations are safe across re-installs. + +**Note**: The `install.sh` and `uninstall.sh` scripts are automatically copied to the target directory during installation, so you can run these commands directly from your project. + +## Recommended Workflow + +1. **Start with planning**: Use `/plan` command to break down complex features +2. **Write tests first**: Invoke `/tdd` command before implementing +3. **Review your code**: Use `/code-review` after writing code +4. **Check security**: Use `/code-review` again for auth, API endpoints, or sensitive data handling +5. **Fix build errors**: Use `/build-fix` if there are build errors + +## Next Steps + +- Open your project in Trae +- Type `/` to see available commands +- Enjoy the ECC workflows! diff --git a/.trae/README.zh-CN.md b/.trae/README.zh-CN.md new file mode 100644 index 00000000..3fcc43e3 --- /dev/null +++ b/.trae/README.zh-CN.md @@ -0,0 +1,192 @@ +# Everything Claude Code for Trae + +为 Trae IDE 带来 Everything Claude Code (ECC) 工作流。此仓库提供自定义命令、智能体、技能和规则,可以通过单个命令安装到任何 Trae 项目中。 + +## 快速开始 + +### 方式一:本地安装到 `.trae` 目录(默认环境) + +```bash +# 安装到当前项目的 .trae 目录 +cd /path/to/your/project +.trae/install.sh +``` + +这将在您的项目目录中创建 `.trae/`。 + +### 方式二:本地安装到 `.trae-cn` 目录(CN 环境) + +```bash +# 安装到当前项目的 .trae-cn 目录 +cd /path/to/your/project +TRAE_ENV=cn .trae/install.sh +``` + +这将在您的项目目录中创建 `.trae-cn/`。 + +### 方式三:全局安装到 `~/.trae` 目录(默认环境) + +```bash +# 全局安装到 ~/.trae/ +cd /path/to/your/project +.trae/install.sh ~ +``` + +这将创建 `~/.trae/`,适用于所有 Trae 项目。 + +### 方式四:全局安装到 `~/.trae-cn` 目录(CN 环境) + +```bash +# 全局安装到 ~/.trae-cn/ +cd /path/to/your/project +TRAE_ENV=cn .trae/install.sh ~ +``` + +这将创建 `~/.trae-cn/`,适用于所有 Trae 项目。 + +安装程序使用非破坏性复制 - 它不会覆盖您现有的文件。 + +## 安装模式 + +### 本地安装 + +安装到当前项目的 `.trae` 或 `.trae-cn` 目录: + +```bash +# 安装到当前项目的 .trae 目录(默认) +cd /path/to/your/project +.trae/install.sh + +# 安装到当前项目的 .trae-cn 目录(CN 环境) +cd /path/to/your/project +TRAE_ENV=cn .trae/install.sh +``` + +### 全局安装 + +安装到您主目录的 `.trae` 或 `.trae-cn` 目录(适用于所有 Trae 项目): + +```bash +# 全局安装到 ~/.trae/(默认) +.trae/install.sh ~ + +# 全局安装到 ~/.trae-cn/(CN 环境) +TRAE_ENV=cn .trae/install.sh ~ +``` + +**注意**:全局安装适用于希望在所有项目之间维护单个 ECC 副本的场景。 + +## 环境支持 + +- **默认**:使用 `.trae` 目录 +- **CN 环境**:使用 `.trae-cn` 目录(通过 `TRAE_ENV=cn` 设置) + +### 强制指定环境 + +```bash +# 从项目根目录强制使用 CN 环境 +TRAE_ENV=cn .trae/install.sh + +# 进入 .trae 目录后使用默认环境 +cd .trae +./install.sh +``` + +**注意**:`TRAE_ENV` 是一个全局环境变量,适用于整个安装会话。 + +## 卸载 + +卸载程序使用清单文件(`.ecc-manifest`)跟踪已安装的文件,确保安全删除: + +```bash +# 从当前目录卸载(如果已经在 .trae 或 .trae-cn 目录中) +cd .trae-cn +./uninstall.sh + +# 或者从项目根目录卸载 +cd /path/to/your/project +TRAE_ENV=cn .trae/uninstall.sh + +# 从主目录全局卸载 +TRAE_ENV=cn .trae/uninstall.sh ~ + +# 卸载前会询问确认 +``` + +### 卸载行为 + +- **安全删除**:仅删除清单中跟踪的文件(由 ECC 安装的文件) +- **保留用户文件**:您手动添加的任何文件都会被保留 +- **非空目录**:包含用户添加文件的目录会被跳过 +- **基于清单**:需要 `.ecc-manifest` 文件(在安装时创建) + +### 环境支持 + +卸载程序遵循与安装程序相同的 `TRAE_ENV` 环境变量: + +```bash +# 从 .trae-cn 卸载(CN 环境) +TRAE_ENV=cn ./uninstall.sh + +# 从 .trae 卸载(默认环境) +./uninstall.sh +``` + +**注意**:如果找不到清单文件(旧版本安装),卸载程序将询问是否删除整个目录。 + +## 包含的内容 + +### 命令 + +命令是通过 Trae 聊天中的 `/` 菜单调用的按需工作流。所有命令都直接复用自项目根目录的 `commands/` 文件夹。 + +### 智能体 + +智能体是具有特定工具配置的专门 AI 助手。所有智能体都直接复用自项目根目录的 `agents/` 文件夹。 + +### 技能 + +技能是通过聊天中的 `/` 菜单调用的按需工作流。所有技能都直接复用自项目的 `skills/` 文件夹。 + +### 规则 + +规则提供始终适用的规则和上下文,塑造智能体处理代码的方式。所有规则都直接复用自项目根目录的 `rules/` 文件夹。 + +## 使用方法 + +1. 在聊天中输入 `/` 以打开命令菜单 +2. 选择一个命令或技能 +3. 智能体将通过具体说明和检查清单指导您完成工作流 + +## 项目结构 + +``` +.trae/ (或 .trae-cn/) +├── commands/ # 命令文件(复用自项目根目录) +├── agents/ # 智能体文件(复用自项目根目录) +├── skills/ # 技能文件(复用自 skills/) +├── rules/ # 规则文件(复用自项目根目录) +├── install.sh # 安装脚本 +├── uninstall.sh # 卸载脚本 +└── README.md # 此文件 +``` + +## 自定义 + +安装后,所有文件都归您修改。安装程序永远不会覆盖现有文件,因此您的自定义在重新安装时是安全的。 + +**注意**:安装时会自动将 `install.sh` 和 `uninstall.sh` 脚本复制到目标目录,这样您可以在项目本地直接运行这些命令。 + +## 推荐的工作流 + +1. **从计划开始**:使用 `/plan` 命令分解复杂功能 +2. **先写测试**:在实现之前调用 `/tdd` 命令 +3. **审查您的代码**:编写代码后使用 `/code-review` +4. **检查安全性**:对于身份验证、API 端点或敏感数据处理,再次使用 `/code-review` +5. **修复构建错误**:如果有构建错误,使用 `/build-fix` + +## 下一步 + +- 在 Trae 中打开您的项目 +- 输入 `/` 以查看可用命令 +- 享受 ECC 工作流! diff --git a/.trae/install.sh b/.trae/install.sh new file mode 100755 index 00000000..da0d860c --- /dev/null +++ b/.trae/install.sh @@ -0,0 +1,221 @@ +#!/bin/bash +# +# ECC Trae Installer +# Installs Everything Claude Code workflows into a Trae project. +# +# Usage: +# ./install.sh # Install to current directory +# ./install.sh ~ # Install globally to ~/.trae/ or ~/.trae-cn/ +# +# Environment: +# TRAE_ENV=cn # Force use .trae-cn directory +# + +set -euo pipefail + +# When globs match nothing, expand to empty list instead of the literal pattern +shopt -s nullglob + +# Resolve the directory where this script lives (the repo root) +SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" +REPO_ROOT="$(dirname "$SCRIPT_DIR")" + +# Get the trae directory name (.trae or .trae-cn) +get_trae_dir() { + if [ "${TRAE_ENV:-}" = "cn" ]; then + echo ".trae-cn" + else + echo ".trae" + fi +} + +ensure_manifest_entry() { + local manifest="$1" + local entry="$2" + + touch "$manifest" + if ! grep -Fqx "$entry" "$manifest"; then + echo "$entry" >> "$manifest" + fi +} + +# Install function +do_install() { + local target_dir="$PWD" + local trae_dir="$(get_trae_dir)" + + # Check if ~ was specified (or expanded to $HOME) + if [ "$#" -ge 1 ]; then + if [ "$1" = "~" ] || [ "$1" = "$HOME" ]; then + target_dir="$HOME" + fi + fi + + # Check if we're already inside a .trae or .trae-cn directory + local current_dir_name="$(basename "$target_dir")" + local trae_full_path + + if [ "$current_dir_name" = ".trae" ] || [ "$current_dir_name" = ".trae-cn" ]; then + # Already inside the trae directory, use it directly + trae_full_path="$target_dir" + else + # Normal case: append trae_dir to target_dir + trae_full_path="$target_dir/$trae_dir" + fi + + echo "ECC Trae Installer" + echo "==================" + echo "" + echo "Source: $REPO_ROOT" + echo "Target: $trae_full_path/" + echo "" + + # Subdirectories to create + SUBDIRS="commands agents skills rules" + + # Create all required trae subdirectories + for dir in $SUBDIRS; do + mkdir -p "$trae_full_path/$dir" + done + + # Manifest file to track installed files + MANIFEST="$trae_full_path/.ecc-manifest" + touch "$MANIFEST" + + # Counters for summary + commands=0 + agents=0 + skills=0 + rules=0 + other=0 + + # Copy commands from repo root + if [ -d "$REPO_ROOT/commands" ]; then + for f in "$REPO_ROOT/commands"/*.md; do + [ -f "$f" ] || continue + local_name=$(basename "$f") + target_path="$trae_full_path/commands/$local_name" + if [ ! -f "$target_path" ]; then + cp "$f" "$target_path" + ensure_manifest_entry "$MANIFEST" "commands/$local_name" + commands=$((commands + 1)) + else + ensure_manifest_entry "$MANIFEST" "commands/$local_name" + fi + done + fi + + # Copy agents from repo root + if [ -d "$REPO_ROOT/agents" ]; then + for f in "$REPO_ROOT/agents"/*.md; do + [ -f "$f" ] || continue + local_name=$(basename "$f") + target_path="$trae_full_path/agents/$local_name" + if [ ! -f "$target_path" ]; then + cp "$f" "$target_path" + ensure_manifest_entry "$MANIFEST" "agents/$local_name" + agents=$((agents + 1)) + else + ensure_manifest_entry "$MANIFEST" "agents/$local_name" + fi + done + fi + + # Copy skills from repo root (if available) + if [ -d "$REPO_ROOT/skills" ]; then + for d in "$REPO_ROOT/skills"/*/; do + [ -d "$d" ] || continue + skill_name="$(basename "$d")" + target_skill_dir="$trae_full_path/skills/$skill_name" + skill_copied=0 + + while IFS= read -r source_file; do + relative_path="${source_file#$d}" + target_path="$target_skill_dir/$relative_path" + + mkdir -p "$(dirname "$target_path")" + if [ ! -f "$target_path" ]; then + cp "$source_file" "$target_path" + skill_copied=1 + fi + ensure_manifest_entry "$MANIFEST" "skills/$skill_name/$relative_path" + done < <(find "$d" -type f | sort) + + if [ "$skill_copied" -eq 1 ]; then + skills=$((skills + 1)) + fi + done + fi + + # Copy rules from repo root + if [ -d "$REPO_ROOT/rules" ]; then + while IFS= read -r rule_file; do + relative_path="${rule_file#$REPO_ROOT/rules/}" + target_path="$trae_full_path/rules/$relative_path" + + mkdir -p "$(dirname "$target_path")" + if [ ! -f "$target_path" ]; then + cp "$rule_file" "$target_path" + rules=$((rules + 1)) + fi + ensure_manifest_entry "$MANIFEST" "rules/$relative_path" + done < <(find "$REPO_ROOT/rules" -type f | sort) + fi + + # Copy README files from this directory + for readme_file in "$SCRIPT_DIR/README.md" "$SCRIPT_DIR/README.zh-CN.md"; do + if [ -f "$readme_file" ]; then + local_name=$(basename "$readme_file") + target_path="$trae_full_path/$local_name" + if [ ! -f "$target_path" ]; then + cp "$readme_file" "$target_path" + ensure_manifest_entry "$MANIFEST" "$local_name" + other=$((other + 1)) + else + ensure_manifest_entry "$MANIFEST" "$local_name" + fi + fi + done + + # Copy install and uninstall scripts + for script_file in "$SCRIPT_DIR/install.sh" "$SCRIPT_DIR/uninstall.sh"; do + if [ -f "$script_file" ]; then + local_name=$(basename "$script_file") + target_path="$trae_full_path/$local_name" + if [ ! -f "$target_path" ]; then + cp "$script_file" "$target_path" + chmod +x "$target_path" + ensure_manifest_entry "$MANIFEST" "$local_name" + other=$((other + 1)) + else + ensure_manifest_entry "$MANIFEST" "$local_name" + fi + fi + done + + # Add manifest file itself to manifest + ensure_manifest_entry "$MANIFEST" ".ecc-manifest" + + # Installation summary + echo "Installation complete!" + echo "" + echo "Components installed:" + echo " Commands: $commands" + echo " Agents: $agents" + echo " Skills: $skills" + echo " Rules: $rules" + echo "" + echo "Directory: $(basename "$trae_full_path")" + echo "" + echo "Next steps:" + echo " 1. Open your project in Trae" + echo " 2. Type / to see available commands" + echo " 3. Enjoy the ECC workflows!" + echo "" + echo "To uninstall later:" + echo " cd $trae_full_path" + echo " ./uninstall.sh" +} + +# Main logic +do_install "$@" diff --git a/.trae/uninstall.sh b/.trae/uninstall.sh new file mode 100755 index 00000000..005216d9 --- /dev/null +++ b/.trae/uninstall.sh @@ -0,0 +1,194 @@ +#!/bin/bash +# +# ECC Trae Uninstaller +# Uninstalls Everything Claude Code workflows from a Trae project. +# +# Usage: +# ./uninstall.sh # Uninstall from current directory +# ./uninstall.sh ~ # Uninstall globally from ~/.trae/ +# +# Environment: +# TRAE_ENV=cn # Force use .trae-cn directory +# + +set -euo pipefail + +# Resolve the directory where this script lives +SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" + +# Get the trae directory name (.trae or .trae-cn) +get_trae_dir() { + # Check environment variable first + if [ "${TRAE_ENV:-}" = "cn" ]; then + echo ".trae-cn" + else + echo ".trae" + fi +} + +resolve_path() { + python3 -c 'import os, sys; print(os.path.realpath(sys.argv[1]))' "$1" +} + +is_valid_manifest_entry() { + local file_path="$1" + + case "$file_path" in + ""|/*|~*|*/../*|../*|*/..|..) + return 1 + ;; + esac + + return 0 +} + +# Main uninstall function +do_uninstall() { + local target_dir="$PWD" + local trae_dir="$(get_trae_dir)" + + # Check if ~ was specified (or expanded to $HOME) + if [ "$#" -ge 1 ]; then + if [ "$1" = "~" ] || [ "$1" = "$HOME" ]; then + target_dir="$HOME" + fi + fi + + # Check if we're already inside a .trae or .trae-cn directory + local current_dir_name="$(basename "$target_dir")" + local trae_full_path + + if [ "$current_dir_name" = ".trae" ] || [ "$current_dir_name" = ".trae-cn" ]; then + # Already inside the trae directory, use it directly + trae_full_path="$target_dir" + else + # Normal case: append trae_dir to target_dir + trae_full_path="$target_dir/$trae_dir" + fi + + echo "ECC Trae Uninstaller" + echo "====================" + echo "" + echo "Target: $trae_full_path/" + echo "" + + if [ ! -d "$trae_full_path" ]; then + echo "Error: $trae_dir directory not found at $target_dir" + exit 1 + fi + + trae_root_resolved="$(resolve_path "$trae_full_path")" + + # Manifest file path + MANIFEST="$trae_full_path/.ecc-manifest" + + if [ ! -f "$MANIFEST" ]; then + echo "Warning: No manifest file found (.ecc-manifest)" + echo "" + echo "This could mean:" + echo " 1. ECC was installed with an older version without manifest support" + echo " 2. The manifest file was manually deleted" + echo "" + read -p "Do you want to remove the entire $trae_dir directory? (y/N) " -n 1 -r + echo + if [[ ! $REPLY =~ ^[Yy]$ ]]; then + echo "Uninstall cancelled." + exit 0 + fi + rm -rf "$trae_full_path" + echo "Uninstall complete!" + echo "" + echo "Removed: $trae_full_path/" + exit 0 + fi + + echo "Found manifest file - will only remove files installed by ECC" + echo "" + read -p "Are you sure you want to uninstall ECC from $trae_dir? (y/N) " -n 1 -r + echo + if [[ ! $REPLY =~ ^[Yy]$ ]]; then + echo "Uninstall cancelled." + exit 0 + fi + + # Counters + removed=0 + skipped=0 + + # Read manifest and remove files + while IFS= read -r file_path; do + [ -z "$file_path" ] && continue + + if ! is_valid_manifest_entry "$file_path"; then + echo "Skipped: $file_path (invalid manifest entry)" + skipped=$((skipped + 1)) + continue + fi + + full_path="$trae_full_path/$file_path" + resolved_full="$(resolve_path "$full_path")" + + case "$resolved_full" in + "$trae_root_resolved"|"$trae_root_resolved"/*) + ;; + *) + echo "Skipped: $file_path (invalid manifest entry)" + skipped=$((skipped + 1)) + continue + ;; + esac + + if [ -f "$resolved_full" ]; then + rm -f "$resolved_full" + echo "Removed: $file_path" + removed=$((removed + 1)) + elif [ -d "$resolved_full" ]; then + # Only remove directory if it's empty + if [ -z "$(ls -A "$resolved_full" 2>/dev/null)" ]; then + rmdir "$resolved_full" 2>/dev/null || true + if [ ! -d "$resolved_full" ]; then + echo "Removed: $file_path/" + removed=$((removed + 1)) + fi + else + echo "Skipped: $file_path/ (not empty - contains user files)" + skipped=$((skipped + 1)) + fi + else + skipped=$((skipped + 1)) + fi + done < "$MANIFEST" + + while IFS= read -r empty_dir; do + [ "$empty_dir" = "$trae_full_path" ] && continue + relative_dir="${empty_dir#$trae_full_path/}" + rmdir "$empty_dir" 2>/dev/null || true + if [ ! -d "$empty_dir" ]; then + echo "Removed: $relative_dir/" + removed=$((removed + 1)) + fi + done < <(find "$trae_full_path" -depth -type d -empty 2>/dev/null | sort -r) + + # Try to remove the main trae directory if it's empty + if [ -d "$trae_full_path" ] && [ -z "$(ls -A "$trae_full_path" 2>/dev/null)" ]; then + rmdir "$trae_full_path" 2>/dev/null || true + if [ ! -d "$trae_full_path" ]; then + echo "Removed: $trae_dir/" + removed=$((removed + 1)) + fi + fi + + echo "" + echo "Uninstall complete!" + echo "" + echo "Summary:" + echo " Removed: $removed items" + echo " Skipped: $skipped items (not found or user-modified)" + echo "" + if [ -d "$trae_full_path" ]; then + echo "Note: $trae_dir directory still exists (contains user-added files)" + fi +} + +# Execute uninstall +do_uninstall "$@" diff --git a/.yarnrc.yml b/.yarnrc.yml new file mode 100644 index 00000000..3186f3f0 --- /dev/null +++ b/.yarnrc.yml @@ -0,0 +1 @@ +nodeLinker: node-modules diff --git a/AGENTS.md b/AGENTS.md index e195b696..7b386ce4 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,6 +1,6 @@ # Everything Claude Code (ECC) — Agent Instructions -This is a **production-ready AI coding plugin** providing 29 specialized agents, 133 skills, 60 commands, and automated hook workflows for software development. +This is a **production-ready AI coding plugin** providing 30 specialized agents, 135 skills, 60 commands, and automated hook workflows for software development. **Version:** 1.9.0 @@ -141,8 +141,8 @@ Troubleshoot failures: check test isolation → verify mocks → fix implementat ## Project Structure ``` -agents/ — 29 specialized subagents -skills/ — 125 workflow skills and domain knowledge +agents/ — 30 specialized subagents +skills/ — 135 workflow skills and domain knowledge commands/ — 60 slash commands hooks/ — Trigger-based automations rules/ — Always-follow guidelines (common + per-language) diff --git a/COMMANDS-QUICK-REF.md b/COMMANDS-QUICK-REF.md new file mode 100644 index 00000000..b1bcab69 --- /dev/null +++ b/COMMANDS-QUICK-REF.md @@ -0,0 +1,159 @@ +# Commands Quick Reference + +> 59 slash commands installed globally. Type `/` in any Claude Code session to invoke. + +--- + +## Core Workflow + +| Command | What it does | +|---------|-------------| +| `/plan` | Restate requirements, assess risks, write step-by-step implementation plan — **waits for your confirm before touching code** | +| `/tdd` | Enforce test-driven development: scaffold interface → write failing test → implement → verify 80%+ coverage | +| `/code-review` | Full code quality, security, and maintainability review of changed files | +| `/build-fix` | Detect and fix build errors — delegates to the right build-resolver agent automatically | +| `/verify` | Run the full verification loop: build → lint → test → type-check | +| `/quality-gate` | Quality gate check against project standards | + +--- + +## Testing + +| Command | What it does | +|---------|-------------| +| `/tdd` | Universal TDD workflow (any language) | +| `/e2e` | Generate + run Playwright end-to-end tests, capture screenshots/videos/traces | +| `/test-coverage` | Report test coverage, identify gaps | +| `/go-test` | TDD workflow for Go (table-driven, 80%+ coverage with `go test -cover`) | +| `/kotlin-test` | TDD for Kotlin (Kotest + Kover) | +| `/rust-test` | TDD for Rust (cargo test, integration tests) | +| `/cpp-test` | TDD for C++ (GoogleTest + gcov/lcov) | + +--- + +## Code Review + +| Command | What it does | +|---------|-------------| +| `/code-review` | Universal code review | +| `/python-review` | Python — PEP 8, type hints, security, idiomatic patterns | +| `/go-review` | Go — idiomatic patterns, concurrency safety, error handling | +| `/kotlin-review` | Kotlin — null safety, coroutine safety, clean architecture | +| `/rust-review` | Rust — ownership, lifetimes, unsafe usage | +| `/cpp-review` | C++ — memory safety, modern idioms, concurrency | + +--- + +## Build Fixers + +| Command | What it does | +|---------|-------------| +| `/build-fix` | Auto-detect language and fix build errors | +| `/go-build` | Fix Go build errors and `go vet` warnings | +| `/kotlin-build` | Fix Kotlin/Gradle compiler errors | +| `/rust-build` | Fix Rust build + borrow checker issues | +| `/cpp-build` | Fix C++ CMake and linker problems | +| `/gradle-build` | Fix Gradle errors for Android / KMP | + +--- + +## Planning & Architecture + +| Command | What it does | +|---------|-------------| +| `/plan` | Implementation plan with risk assessment | +| `/multi-plan` | Multi-model collaborative planning | +| `/multi-workflow` | Multi-model collaborative development | +| `/multi-backend` | Backend-focused multi-model development | +| `/multi-frontend` | Frontend-focused multi-model development | +| `/multi-execute` | Multi-model collaborative execution | +| `/orchestrate` | Guide for tmux/worktree multi-agent orchestration | +| `/devfleet` | Orchestrate parallel Claude Code agents via DevFleet | + +--- + +## Session Management + +| Command | What it does | +|---------|-------------| +| `/save-session` | Save current session state to `~/.claude/session-data/` | +| `/resume-session` | Load the most recent saved session from the canonical session store and resume from where you left off | +| `/sessions` | Browse, search, and manage session history with aliases from `~/.claude/session-data/` (with legacy reads from `~/.claude/sessions/`) | +| `/checkpoint` | Mark a checkpoint in the current session | +| `/aside` | Answer a quick side question without losing current task context | +| `/context-budget` | Analyse context window usage — find token overhead, optimise | + +--- + +## Learning & Improvement + +| Command | What it does | +|---------|-------------| +| `/learn` | Extract reusable patterns from the current session | +| `/learn-eval` | Extract patterns + self-evaluate quality before saving | +| `/evolve` | Analyse learned instincts, suggest evolved skill structures | +| `/promote` | Promote project-scoped instincts to global scope | +| `/instinct-status` | Show all learned instincts (project + global) with confidence scores | +| `/instinct-export` | Export instincts to a file | +| `/instinct-import` | Import instincts from a file or URL | +| `/skill-create` | Analyse local git history → generate a reusable skill | +| `/skill-health` | Skill portfolio health dashboard with analytics | +| `/rules-distill` | Scan skills, extract cross-cutting principles, distill into rules | + +--- + +## Refactoring & Cleanup + +| Command | What it does | +|---------|-------------| +| `/refactor-clean` | Remove dead code, consolidate duplicates, clean up structure | +| `/prompt-optimize` | Analyse a draft prompt and output an optimised ECC-enriched version | + +--- + +## Docs & Research + +| Command | What it does | +|---------|-------------| +| `/docs` | Look up current library/API documentation via Context7 | +| `/update-docs` | Update project documentation | +| `/update-codemaps` | Regenerate codemaps for the codebase | + +--- + +## Loops & Automation + +| Command | What it does | +|---------|-------------| +| `/loop-start` | Start a recurring agent loop on an interval | +| `/loop-status` | Check status of running loops | +| `/claw` | Start NanoClaw v2 — persistent REPL with model routing, skill hot-load, branching, and metrics | + +--- + +## Project & Infrastructure + +| Command | What it does | +|---------|-------------| +| `/projects` | List known projects and their instinct statistics | +| `/harness-audit` | Audit the agent harness configuration for reliability and cost | +| `/eval` | Run the evaluation harness | +| `/model-route` | Route a task to the right model (Haiku / Sonnet / Opus) | +| `/pm2` | PM2 process manager initialisation | +| `/setup-pm` | Configure package manager (npm / pnpm / yarn / bun) | + +--- + +## Quick Decision Guide + +``` +Starting a new feature? → /plan first, then /tdd +Code just written? → /code-review +Build broken? → /build-fix +Need live docs? → /docs +Session about to end? → /save-session or /learn-eval +Resuming next day? → /resume-session +Context getting heavy? → /context-budget then /checkpoint +Want to extract what you learned? → /learn-eval then /evolve +Running repeated tasks? → /loop-start +``` diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e7b99c3a..bf5db0a1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -73,6 +73,13 @@ git add . && git commit -m "feat: add my-skill" && git push -u origin feat/my-co Skills are knowledge modules that Claude Code loads based on context. +> **📚 Comprehensive Guide:** For detailed guidance on creating effective skills, see [Skill Development Guide](docs/SKILL-DEVELOPMENT-GUIDE.md). It covers: +> - Skill architecture and categories +> - Writing effective content with examples +> - Best practices and common patterns +> - Testing and validation +> - Complete examples gallery + ### Directory Structure ``` @@ -86,7 +93,7 @@ skills/ ```markdown --- name: your-skill-name -description: Brief description shown in skill list +description: Brief description shown in skill list and used for auto-activation origin: ECC --- @@ -94,6 +101,10 @@ origin: ECC Brief overview of what this skill covers. +## When to Activate + +Describe scenarios where Claude should use this skill. This is critical for auto-activation. + ## Core Concepts Explain key patterns and guidelines. @@ -107,33 +118,54 @@ function example() { } \`\`\` +## Anti-Patterns + +Show what NOT to do with examples. + ## Best Practices - Actionable guidelines - Do's and don'ts - Common pitfalls to avoid -## When to Use +## Related Skills -Describe scenarios where this skill applies. +Link to complementary skills (e.g., `related-skill-1`, `related-skill-2`). ``` +### Skill Categories + +| Category | Purpose | Examples | +|----------|---------|----------| +| **Language Standards** | Idioms, conventions, best practices | `python-patterns`, `golang-patterns` | +| **Framework Patterns** | Framework-specific guidance | `django-patterns`, `nextjs-patterns` | +| **Workflow** | Step-by-step processes | `tdd-workflow`, `refactoring-workflow` | +| **Domain Knowledge** | Specialized domains | `security-review`, `api-design` | +| **Tool Integration** | Tool/library usage | `docker-patterns`, `supabase-patterns` | +| **Template** | Project-specific skill templates | `project-guidelines-example` | + ### Skill Checklist -- [ ] Focused on one domain/technology -- [ ] Includes practical code examples -- [ ] Under 500 lines +- [ ] Focused on one domain/technology (not too broad) +- [ ] Includes "When to Activate" section for auto-activation +- [ ] Includes practical, copy-pasteable code examples +- [ ] Shows anti-patterns (what NOT to do) +- [ ] Under 500 lines (800 max) - [ ] Uses clear section headers - [ ] Tested with Claude Code +- [ ] Links to related skills +- [ ] No sensitive data (API keys, tokens, paths) ### Example Skills -| Skill | Purpose | -|-------|---------| -| `coding-standards/` | TypeScript/JavaScript patterns | -| `frontend-patterns/` | React and Next.js best practices | -| `backend-patterns/` | API and database patterns | -| `security-review/` | Security checklist | +| Skill | Category | Purpose | +|-------|----------|---------| +| `coding-standards/` | Language Standards | TypeScript/JavaScript patterns | +| `frontend-patterns/` | Framework Patterns | React and Next.js best practices | +| `backend-patterns/` | Framework Patterns | API and database patterns | +| `security-review/` | Domain Knowledge | Security checklist | +| `tdd-workflow/` | Workflow | Test-driven development process | +| `project-guidelines-example/` | Template | Project-specific skill template | --- diff --git a/EVALUATION.md b/EVALUATION.md new file mode 100644 index 00000000..929ddf66 --- /dev/null +++ b/EVALUATION.md @@ -0,0 +1,122 @@ +# Repo Evaluation vs Current Setup + +**Date:** 2026-03-21 +**Branch:** `claude/evaluate-repo-comparison-ASZ9Y` + +--- + +## Current Setup (`~/.claude/`) + +The active Claude Code installation is near-minimal: + +| Component | Current | +|-----------|---------| +| Agents | 0 | +| Skills | 0 installed | +| Commands | 0 | +| Hooks | 1 (Stop: git check) | +| Rules | 0 | +| MCP configs | 0 | + +**Installed hooks:** +- `Stop` → `stop-hook-git-check.sh` — blocks session end if there are uncommitted changes or unpushed commits + +**Installed permissions:** +- `Skill` — allows skill invocations + +**Plugins:** Only `blocklist.json` (no active plugins installed) + +--- + +## This Repo (`everything-claude-code` v1.9.0) + +| Component | Repo | +|-----------|------| +| Agents | 28 | +| Skills | 116 | +| Commands | 59 | +| Rules sets | 12 languages + common (60+ rule files) | +| Hooks | Comprehensive system (PreToolUse, PostToolUse, SessionStart, Stop) | +| MCP configs | 1 (Context7 + others) | +| Schemas | 9 JSON validators | +| Scripts/CLI | 46+ Node.js modules + multiple CLIs | +| Tests | 58 test files | +| Install profiles | core, developer, security, research, full | +| Supported harnesses | Claude Code, Codex, Cursor, OpenCode | + +--- + +## Gap Analysis + +### Hooks +- **Current:** 1 Stop hook (git hygiene check) +- **Repo:** Full hook matrix covering: + - Dangerous command blocking (`rm -rf`, force pushes) + - Auto-formatting on file edits + - Dev server tmux enforcement + - Cost tracking + - Session evaluation and governance capture + - MCP health monitoring + +### Agents (28 missing) +The repo provides specialized agents for every major workflow: +- Language reviewers: TypeScript, Python, Go, Java, Kotlin, Rust, C++, Flutter +- Build resolvers: Go, Java, Kotlin, Rust, C++, PyTorch +- Workflow agents: planner, tdd-guide, code-reviewer, security-reviewer, architect +- Automation: loop-operator, doc-updater, refactor-cleaner, harness-optimizer + +### Skills (116 missing) +Domain knowledge modules covering: +- Language patterns (Python, Go, Kotlin, Rust, C++, Java, Swift, Perl, Laravel, Django) +- Testing strategies (TDD, E2E, coverage) +- Architecture patterns (backend, frontend, API design, database migrations) +- AI/ML workflows (Claude API, eval harness, agent loops, cost-aware pipelines) +- Business workflows (investor materials, market research, content engine) + +### Commands (59 missing) +- `/tdd`, `/plan`, `/e2e`, `/code-review` — core dev workflows +- `/sessions`, `/save-session`, `/resume-session` — session persistence +- `/orchestrate`, `/multi-plan`, `/multi-execute` — multi-agent coordination +- `/learn`, `/skill-create`, `/evolve` — continuous improvement +- `/build-fix`, `/verify`, `/quality-gate` — build/quality automation + +### Rules (60+ files missing) +Language-specific coding style, patterns, testing, and security guidelines for: +TypeScript, Python, Go, Java, Kotlin, Rust, C++, C#, Swift, Perl, PHP, and common/cross-language rules. + +--- + +## Recommendations + +### Immediate value (core install) +Run `ecc install --profile core` to get: +- Core agents (code-reviewer, planner, tdd-guide, security-reviewer) +- Essential skills (tdd-workflow, coding-standards, security-review) +- Key commands (/tdd, /plan, /code-review, /build-fix) + +### Full install +Run `ecc install --profile full` to get all 28 agents, 116 skills, and 59 commands. + +### Hooks upgrade +The current Stop hook is solid. The repo's `hooks.json` adds: +- Dangerous command blocking (safety) +- Auto-formatting (quality) +- Cost tracking (observability) +- Session evaluation (learning) + +### Rules +Adding language rules (e.g., TypeScript, Python) provides always-on coding guidelines without relying on per-session prompts. + +--- + +## What the Current Setup Does Well + +- The `stop-hook-git-check.sh` Stop hook is production-quality and already enforces good git hygiene +- The `Skill` permission is correctly configured +- The setup is clean with no conflicts or cruft + +--- + +## Summary + +The current setup is essentially a blank slate with one well-implemented git hygiene hook. This repo provides a complete, production-tested enhancement layer covering agents, skills, commands, hooks, and rules — with a selective install system so you can add exactly what you need without bloating the configuration. diff --git a/README.md b/README.md index c28048f1..f04fd203 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,4 @@ -**Language:** English | [Português (Brasil)](docs/pt-BR/README.md) | [简体中文](README.zh-CN.md) | [繁體中文](docs/zh-TW/README.md) | [日本語](docs/ja-JP/README.md) | [한국어](docs/ko-KR/README.md) - [Türkçe](docs/tr/README.md) - +**Language:** English | [Português (Brasil)](docs/pt-BR/README.md) | [简体中文](README.zh-CN.md) | [繁體中文](docs/zh-TW/README.md) | [日本語](docs/ja-JP/README.md) | [한국어](docs/ko-KR/README.md) | [Türkçe](docs/tr/README.md) # Everything Claude Code @@ -180,6 +178,11 @@ cd everything-claude-code npm install # or: pnpm install | yarn install | bun install # macOS/Linux + +# Recommended: install everything (full profile) +./install.sh --profile full + +# Or install for specific languages only ./install.sh typescript # or python or golang or swift or php # ./install.sh typescript python golang swift php # ./install.sh --target cursor typescript @@ -188,6 +191,11 @@ npm install # or: pnpm install | yarn install | bun install ```powershell # Windows PowerShell + +# Recommended: install everything (full profile) +.\install.ps1 --profile full + +# Or install for specific languages only .\install.ps1 typescript # or python or golang or swift or php # .\install.ps1 typescript python golang swift php # .\install.ps1 --target cursor typescript @@ -197,7 +205,7 @@ npm install # or: pnpm install | yarn install | bun install npx ecc-install typescript ``` -For manual install instructions see the README in the `rules/` folder. +For manual install instructions see the README in the `rules/` folder. When copying rules manually, copy the whole language directory (for example `rules/common` or `rules/golang`), not the files inside it, so relative references keep working and filenames do not collide. ### Step 3: Start Using @@ -212,7 +220,21 @@ For manual install instructions see the README in the `rules/` folder. /plugin list everything-claude-code@everything-claude-code ``` -✨ **That's it!** You now have access to 29 agents, 133 skills, and 60 commands. +✨ **That's it!** You now have access to 30 agents, 135 skills, and 60 commands. + +### Multi-model commands require additional setup + +> ⚠️ `multi-*` commands are **not** covered by the base plugin/rules install above. +> +> To use `/multi-plan`, `/multi-execute`, `/multi-backend`, `/multi-frontend`, and `/multi-workflow`, you must also install the `ccg-workflow` runtime. +> +> Initialize it with `npx ccg-workflow`. +> +> That runtime provides the external dependencies these commands expect, including: +> - `~/.claude/bin/codeagent-wrapper` +> - `~/.claude/.ccg/prompts/*` +> +> Without `ccg-workflow`, these `multi-*` commands will not run correctly. --- @@ -614,16 +636,16 @@ This gives you instant access to all commands, agents, skills, and hooks. > > # Option A: User-level rules (applies to all projects) > mkdir -p ~/.claude/rules -> cp -r everything-claude-code/rules/common/* ~/.claude/rules/ -> cp -r everything-claude-code/rules/typescript/* ~/.claude/rules/ # pick your stack -> cp -r everything-claude-code/rules/python/* ~/.claude/rules/ -> cp -r everything-claude-code/rules/golang/* ~/.claude/rules/ -> cp -r everything-claude-code/rules/php/* ~/.claude/rules/ +> cp -r everything-claude-code/rules/common ~/.claude/rules/ +> cp -r everything-claude-code/rules/typescript ~/.claude/rules/ # pick your stack +> cp -r everything-claude-code/rules/python ~/.claude/rules/ +> cp -r everything-claude-code/rules/golang ~/.claude/rules/ +> cp -r everything-claude-code/rules/php ~/.claude/rules/ > > # Option B: Project-level rules (applies to current project only) > mkdir -p .claude/rules -> cp -r everything-claude-code/rules/common/* .claude/rules/ -> cp -r everything-claude-code/rules/typescript/* .claude/rules/ # pick your stack +> cp -r everything-claude-code/rules/common .claude/rules/ +> cp -r everything-claude-code/rules/typescript .claude/rules/ # pick your stack > ``` --- @@ -639,12 +661,13 @@ git clone https://github.com/affaan-m/everything-claude-code.git # Copy agents to your Claude config cp everything-claude-code/agents/*.md ~/.claude/agents/ -# Copy rules (common + language-specific) -cp -r everything-claude-code/rules/common/* ~/.claude/rules/ -cp -r everything-claude-code/rules/typescript/* ~/.claude/rules/ # pick your stack -cp -r everything-claude-code/rules/python/* ~/.claude/rules/ -cp -r everything-claude-code/rules/golang/* ~/.claude/rules/ -cp -r everything-claude-code/rules/php/* ~/.claude/rules/ +# Copy rules directories (common + language-specific) +mkdir -p ~/.claude/rules +cp -r everything-claude-code/rules/common ~/.claude/rules/ +cp -r everything-claude-code/rules/typescript ~/.claude/rules/ # pick your stack +cp -r everything-claude-code/rules/python ~/.claude/rules/ +cp -r everything-claude-code/rules/golang ~/.claude/rules/ +cp -r everything-claude-code/rules/php ~/.claude/rules/ # Copy commands cp everything-claude-code/commands/*.md ~/.claude/commands/ @@ -850,7 +873,8 @@ Yes. Use Option 2 (manual installation) and copy only what you need: cp everything-claude-code/agents/*.md ~/.claude/agents/ # Just rules -cp -r everything-claude-code/rules/common/* ~/.claude/rules/ +mkdir -p ~/.claude/rules/ +cp -r everything-claude-code/rules/common ~/.claude/rules/ ``` Each component is fully independent. @@ -999,6 +1023,8 @@ cp .codex/config.toml ~/.codex/config.toml The sync script safely merges ECC MCP servers into your existing `~/.codex/config.toml` using an **add-only** strategy — it never removes or modifies your existing servers. Run with `--dry-run` to preview changes, or `--update-mcp` to force-refresh ECC servers to the latest recommended config. +For Context7, ECC uses the canonical Codex section name `[mcp_servers.context7]` while still launching the `@upstash/context7-mcp` package. If you already have a legacy `[mcp_servers.context7-mcp]` entry, `--update-mcp` migrates it to the canonical section name. + Codex macOS app: - Open this repository as your workspace. - The root `AGENTS.md` is auto-detected. @@ -1083,9 +1109,9 @@ The configuration is automatically detected from `.opencode/opencode.json`. | Feature | Claude Code | OpenCode | Status | |---------|-------------|----------|--------| -| Agents | ✅ 28 agents | ✅ 12 agents | **Claude Code leads** | +| Agents | ✅ 30 agents | ✅ 12 agents | **Claude Code leads** | | Commands | ✅ 60 commands | ✅ 31 commands | **Claude Code leads** | -| Skills | ✅ 133 skills | ✅ 37 skills | **Claude Code leads** | +| Skills | ✅ 135 skills | ✅ 37 skills | **Claude Code leads** | | Hooks | ✅ 8 event types | ✅ 11 events | **OpenCode has more!** | | Rules | ✅ 29 rules | ✅ 13 instructions | **Claude Code leads** | | MCP Servers | ✅ 14 servers | ✅ Full | **Full parity** | diff --git a/README.zh-CN.md b/README.zh-CN.md index f1aba851..433ae831 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -82,14 +82,17 @@ # 首先克隆仓库 git clone https://github.com/affaan-m/everything-claude-code.git -# 复制规则(通用 + 语言特定) -cp -r everything-claude-code/rules/common/* ~/.claude/rules/ -cp -r everything-claude-code/rules/typescript/* ~/.claude/rules/ # 选择你的技术栈 -cp -r everything-claude-code/rules/python/* ~/.claude/rules/ -cp -r everything-claude-code/rules/golang/* ~/.claude/rules/ -cp -r everything-claude-code/rules/perl/* ~/.claude/rules/ +# 复制规则目录(通用 + 语言特定) +mkdir -p ~/.claude/rules +cp -r everything-claude-code/rules/common ~/.claude/rules/ +cp -r everything-claude-code/rules/typescript ~/.claude/rules/ # 选择你的技术栈 +cp -r everything-claude-code/rules/python ~/.claude/rules/ +cp -r everything-claude-code/rules/golang ~/.claude/rules/ +cp -r everything-claude-code/rules/perl ~/.claude/rules/ ``` +复制规则时,请复制整个目录(例如 `rules/common`、`rules/golang`),而不是复制目录内的文件;这样可以保留相对引用,并避免不同规则集中的同名文件互相覆盖。 + ### 第三步:开始使用 ```bash @@ -105,6 +108,20 @@ cp -r everything-claude-code/rules/perl/* ~/.claude/rules/ ✨ **完成!** 你现在可以使用 13 个代理、43 个技能和 31 个命令。 +### multi-* 命令需要额外配置 + +> ⚠️ 上面的基础插件 / rules 安装**不包含** `multi-*` 命令所需的运行时。 +> +> 如果要使用 `/multi-plan`、`/multi-execute`、`/multi-backend`、`/multi-frontend` 和 `/multi-workflow`,还需要额外安装 `ccg-workflow` 运行时。 +> +> 可通过 `npx ccg-workflow` 完成初始化安装。 +> +> 该运行时会提供这些命令依赖的关键组件,包括: +> - `~/.claude/bin/codeagent-wrapper` +> - `~/.claude/.ccg/prompts/*` +> +> 未安装 `ccg-workflow` 时,这些 `multi-*` 命令将无法正常运行。 + --- ## 🌐 跨平台支持 @@ -352,11 +369,20 @@ everything-claude-code/ > git clone https://github.com/affaan-m/everything-claude-code.git > > # 选项 A:用户级规则(应用于所有项目) -> cp -r everything-claude-code/rules/* ~/.claude/rules/ +> mkdir -p ~/.claude/rules +> cp -r everything-claude-code/rules/common ~/.claude/rules/ +> cp -r everything-claude-code/rules/typescript ~/.claude/rules/ +> cp -r everything-claude-code/rules/python ~/.claude/rules/ +> cp -r everything-claude-code/rules/golang ~/.claude/rules/ +> cp -r everything-claude-code/rules/perl ~/.claude/rules/ > > # 选项 B:项目级规则(仅应用于当前项目) > mkdir -p .claude/rules -> cp -r everything-claude-code/rules/* .claude/rules/ +> cp -r everything-claude-code/rules/common .claude/rules/ +> cp -r everything-claude-code/rules/typescript .claude/rules/ +> cp -r everything-claude-code/rules/python .claude/rules/ +> cp -r everything-claude-code/rules/golang .claude/rules/ +> cp -r everything-claude-code/rules/perl .claude/rules/ > ``` --- @@ -372,12 +398,13 @@ git clone https://github.com/affaan-m/everything-claude-code.git # 将代理复制到你的 Claude 配置 cp everything-claude-code/agents/*.md ~/.claude/agents/ -# 复制规则(通用 + 语言特定) -cp -r everything-claude-code/rules/common/* ~/.claude/rules/ -cp -r everything-claude-code/rules/typescript/* ~/.claude/rules/ # 选择你的技术栈 -cp -r everything-claude-code/rules/python/* ~/.claude/rules/ -cp -r everything-claude-code/rules/golang/* ~/.claude/rules/ -cp -r everything-claude-code/rules/perl/* ~/.claude/rules/ +# 复制规则目录(通用 + 语言特定) +mkdir -p ~/.claude/rules +cp -r everything-claude-code/rules/common ~/.claude/rules/ +cp -r everything-claude-code/rules/typescript ~/.claude/rules/ # 选择你的技术栈 +cp -r everything-claude-code/rules/python ~/.claude/rules/ +cp -r everything-claude-code/rules/golang ~/.claude/rules/ +cp -r everything-claude-code/rules/perl ~/.claude/rules/ # 复制命令 cp everything-claude-code/commands/*.md ~/.claude/commands/ diff --git a/REPO-ASSESSMENT.md b/REPO-ASSESSMENT.md new file mode 100644 index 00000000..95b2f7d1 --- /dev/null +++ b/REPO-ASSESSMENT.md @@ -0,0 +1,196 @@ +# Repo & Fork Assessment + Setup Recommendations + +**Date:** 2026-03-21 + +--- + +## What's Available + +### Repo: `Infiniteyieldai/everything-claude-code` + +This is a **fork of `affaan-m/everything-claude-code`** (the upstream project with 50K+ stars, 6K+ forks). + +| Attribute | Value | +|-----------|-------| +| Version | 1.9.0 (current) | +| Status | Clean fork — 1 commit ahead of upstream `main` (the EVALUATION.md doc added in this session) | +| Remote branches | `main`, `claude/evaluate-repo-comparison-ASZ9Y` | +| Upstream sync | Fully synced — last upstream commit merged was the zh-CN docs PR (#728) | +| License | MIT | + +**This is the right repo to work from.** It's the latest upstream version with no divergence or merge conflicts. + +--- + +### Current `~/.claude/` Installation + +| Component | Installed | Available in Repo | +|-----------|-----------|-------------------| +| Agents | 0 | 28 | +| Skills | 0 | 116 | +| Commands | 0 | 59 | +| Rules | 0 | 60+ files (12 languages) | +| Hooks | 1 (git Stop check) | Full PreToolUse/PostToolUse matrix | +| MCP configs | 0 | 1 (Context7) | + +The existing Stop hook (`stop-hook-git-check.sh`) is solid — blocks session end on uncommitted/unpushed work. Keep it. + +--- + +## Install Profile Recommendations + +The repo ships 5 install profiles. Choose based on your primary use case: + +### Profile: `core` (Minimum viable setup) +> Fastest to install. Gets you commands, core agents, hooks runtime, and quality workflow. + +**Best for:** Trying ECC out, minimal footprint, or a constrained environment. + +```bash +node scripts/install-plan.js --profile core +node scripts/install-apply.js +``` + +**Installs:** rules-core, agents-core, commands-core, hooks-runtime, platform-configs, workflow-quality + +--- + +### Profile: `developer` (Recommended for daily dev work) +> The default engineering profile for most ECC users. + +**Best for:** General software development across app codebases. + +```bash +node scripts/install-plan.js --profile developer +node scripts/install-apply.js +``` + +**Adds over core:** framework-language skills, database patterns, orchestration commands + +--- + +### Profile: `security` +> Baseline runtime + security-specific agents and rules. + +**Best for:** Security-focused workflows, code audits, vulnerability reviews. + +--- + +### Profile: `research` +> Investigation, synthesis, and publishing workflows. + +**Best for:** Content creation, investor materials, market research, cross-posting. + +--- + +### Profile: `full` +> Everything — all 18 modules. + +**Best for:** Power users who want the complete toolkit. + +```bash +node scripts/install-plan.js --profile full +node scripts/install-apply.js +``` + +--- + +## Priority Additions (High Value, Low Risk) + +Regardless of profile, these components add immediate value: + +### 1. Core Agents (highest ROI) + +| Agent | Why it matters | +|-------|----------------| +| `planner.md` | Breaks complex tasks into implementation plans | +| `code-reviewer.md` | Quality and maintainability review | +| `tdd-guide.md` | TDD workflow (RED→GREEN→IMPROVE) | +| `security-reviewer.md` | Vulnerability detection | +| `architect.md` | System design & scalability decisions | + +### 2. Key Commands + +| Command | Why it matters | +|---------|----------------| +| `/plan` | Implementation planning before coding | +| `/tdd` | Test-driven workflow | +| `/code-review` | On-demand review | +| `/build-fix` | Automated build error resolution | +| `/learn` | Extract patterns from current session | + +### 3. Hook Upgrades (from `hooks/hooks.json`) +The repo's hook system adds these over the current single Stop hook: + +| Hook | Trigger | Value | +|------|---------|-------| +| `block-no-verify` | PreToolUse: Bash | Blocks `--no-verify` git flag abuse | +| `pre-bash-git-push-reminder` | PreToolUse: Bash | Pre-push review reminder | +| `doc-file-warning` | PreToolUse: Write | Warns on non-standard doc files | +| `suggest-compact` | PreToolUse: Edit/Write | Suggests compaction at logical intervals | +| Continuous learning observer | PreToolUse: * | Captures tool use patterns for skill improvement | + +### 4. Rules (Always-on guidelines) +The `rules/common/` directory provides baseline guidelines that fire on every session: +- `security.md` — Security guardrails +- `testing.md` — 80%+ coverage requirement +- `git-workflow.md` — Conventional commits, branch strategy +- `coding-style.md` — Cross-language style standards + +--- + +## What to Do With the Fork + +### Option A: Use as upstream tracker (current state) +Keep the fork synced with `affaan-m/everything-claude-code` upstream. Periodically merge upstream changes: +```bash +git fetch upstream +git merge upstream/main +``` +Install from the local clone. This is clean and maintainable. + +### Option B: Customize the fork +Add personal skills, agents, or commands to the fork. Good for: +- Business-specific domain skills (your vertical) +- Team-specific coding conventions +- Custom hooks for your stack + +The fork already has the EVALUATION.md and REPO-ASSESSMENT.md docs — that's fine for a working fork. + +### Option C: Install from npm (simplest for fresh machines) +```bash +npx ecc-universal install --profile developer +``` +No need to clone the repo. This is the recommended install method for most users. + +--- + +## Recommended Setup Steps + +1. **Keep the existing Stop hook** — it's doing its job +2. **Run the developer profile install** from the local fork: + ```bash + cd /path/to/everything-claude-code + node scripts/install-plan.js --profile developer + node scripts/install-apply.js + ``` +3. **Add language rules** for your primary stack (TypeScript, Python, Go, etc.): + ```bash + node scripts/install-plan.js --add rules/typescript + node scripts/install-apply.js + ``` +4. **Enable MCP Context7** for live documentation lookup: + - Copy `mcp-configs/mcp-servers.json` into your project's `.claude/` dir +5. **Review hooks** — enable the `hooks/hooks.json` additions selectively, starting with `block-no-verify` and `pre-bash-git-push-reminder` + +--- + +## Summary + +| Question | Answer | +|----------|--------| +| Is the fork healthy? | Yes — fully synced with upstream v1.9.0 | +| Other forks to consider? | None visible in this environment; upstream `affaan-m/everything-claude-code` is the source of truth | +| Best install profile? | `developer` for day-to-day dev work | +| Biggest gap in current setup? | 0 agents installed — add at minimum: planner, code-reviewer, tdd-guide, security-reviewer | +| Quickest win? | Run `node scripts/install-plan.js --profile core && node scripts/install-apply.js` | diff --git a/agents/healthcare-reviewer.md b/agents/healthcare-reviewer.md new file mode 100644 index 00000000..94e84bcf --- /dev/null +++ b/agents/healthcare-reviewer.md @@ -0,0 +1,83 @@ +--- +name: healthcare-reviewer +description: Reviews healthcare application code for clinical safety, CDSS accuracy, PHI compliance, and medical data integrity. Specialized for EMR/EHR, clinical decision support, and health information systems. +tools: ["Read", "Grep", "Glob"] +model: opus +--- + +# Healthcare Reviewer — Clinical Safety & PHI Compliance + +You are a clinical informatics reviewer for healthcare software. Patient safety is your top priority. You review code for clinical accuracy, data protection, and regulatory compliance. + +## Your Responsibilities + +1. **CDSS accuracy** — Verify drug interaction logic, dose validation rules, and clinical scoring implementations match published medical standards +2. **PHI/PII protection** — Scan for patient data exposure in logs, errors, responses, URLs, and client storage +3. **Clinical data integrity** — Ensure audit trails, locked records, and cascade protection +4. **Medical data correctness** — Verify ICD-10/SNOMED mappings, lab reference ranges, and drug database entries +5. **Integration compliance** — Validate HL7/FHIR message handling and error recovery + +## Critical Checks + +### CDSS Engine + +- [ ] All drug interaction pairs produce correct alerts (both directions) +- [ ] Dose validation rules fire on out-of-range values +- [ ] Clinical scoring matches published specification (NEWS2 = Royal College of Physicians, qSOFA = Sepsis-3) +- [ ] No false negatives (missed interaction = patient safety event) +- [ ] Malformed inputs produce errors, NOT silent passes + +### PHI Protection + +- [ ] No patient data in `console.log`, `console.error`, or error messages +- [ ] No PHI in URL parameters or query strings +- [ ] No PHI in browser localStorage/sessionStorage +- [ ] No `service_role` key in client-side code +- [ ] RLS enabled on all tables with patient data +- [ ] Cross-facility data isolation verified + +### Clinical Workflow + +- [ ] Encounter lock prevents edits (addendum only) +- [ ] Audit trail entry on every create/read/update/delete of clinical data +- [ ] Critical alerts are non-dismissable (not toast notifications) +- [ ] Override reasons logged when clinician proceeds past critical alert +- [ ] Red flag symptoms trigger visible alerts + +### Data Integrity + +- [ ] No CASCADE DELETE on patient records +- [ ] Concurrent edit detection (optimistic locking or conflict resolution) +- [ ] No orphaned records across clinical tables +- [ ] Timestamps use consistent timezone + +## Output Format + +``` +## Healthcare Review: [module/feature] + +### Patient Safety Impact: [CRITICAL / HIGH / MEDIUM / LOW / NONE] + +### Clinical Accuracy +- CDSS: [checks passed/failed] +- Drug DB: [verified/issues] +- Scoring: [matches spec/deviates] + +### PHI Compliance +- Exposure vectors checked: [list] +- Issues found: [list or none] + +### Issues +1. [PATIENT SAFETY / CLINICAL / PHI / TECHNICAL] Description + - Impact: [potential harm or exposure] + - Fix: [required change] + +### Verdict: [SAFE TO DEPLOY / NEEDS FIXES / BLOCK — PATIENT SAFETY RISK] +``` + +## Rules + +- When in doubt about clinical accuracy, flag as NEEDS REVIEW — never approve uncertain clinical logic +- A single missed drug interaction is worse than a hundred false alarms +- PHI exposure is always CRITICAL severity, regardless of how small the leak +- Never approve code that silently catches CDSS errors diff --git a/agents/performance-optimizer.md b/agents/performance-optimizer.md new file mode 100644 index 00000000..914c69a9 --- /dev/null +++ b/agents/performance-optimizer.md @@ -0,0 +1,446 @@ +--- +name: performance-optimizer +description: Performance analysis and optimization specialist. Use PROACTIVELY for identifying bottlenecks, optimizing slow code, reducing bundle sizes, and improving runtime performance. Profiling, memory leaks, render optimization, and algorithmic improvements. +tools: ["Read", "Write", "Edit", "Bash", "Grep", "Glob"] +model: sonnet +--- + +# Performance Optimizer + +You are an expert performance specialist focused on identifying bottlenecks and optimizing application speed, memory usage, and efficiency. Your mission is to make code faster, lighter, and more responsive. + +## Core Responsibilities + +1. **Performance Profiling** — Identify slow code paths, memory leaks, and bottlenecks +2. **Bundle Optimization** — Reduce JavaScript bundle sizes, lazy loading, code splitting +3. **Runtime Optimization** — Improve algorithmic efficiency, reduce unnecessary computations +4. **React/Rendering Optimization** — Prevent unnecessary re-renders, optimize component trees +5. **Database & Network** — Optimize queries, reduce API calls, implement caching +6. **Memory Management** — Detect leaks, optimize memory usage, cleanup resources + +## Analysis Commands + +```bash +# Bundle analysis +npx bundle-analyzer +npx source-map-explorer build/static/js/*.js + +# Lighthouse performance audit +npx lighthouse https://your-app.com --view + +# Node.js profiling +node --prof your-app.js +node --prof-process isolate-*.log + +# Memory analysis +node --inspect your-app.js # Then use Chrome DevTools + +# React profiling (in browser) +# React DevTools > Profiler tab + +# Network analysis +npx webpack-bundle-analyzer +``` + +## Performance Review Workflow + +### 1. Identify Performance Issues + +**Critical Performance Indicators:** + +| Metric | Target | Action if Exceeded | +|--------|--------|-------------------| +| First Contentful Paint | < 1.8s | Optimize critical path, inline critical CSS | +| Largest Contentful Paint | < 2.5s | Lazy load images, optimize server response | +| Time to Interactive | < 3.8s | Code splitting, reduce JavaScript | +| Cumulative Layout Shift | < 0.1 | Reserve space for images, avoid layout thrashing | +| Total Blocking Time | < 200ms | Break up long tasks, use web workers | +| Bundle Size (gzipped) | < 200KB | Tree shaking, lazy loading, code splitting | + +### 2. Algorithmic Analysis + +Check for inefficient algorithms: + +| Pattern | Complexity | Better Alternative | +|---------|------------|-------------------| +| Nested loops on same data | O(n²) | Use Map/Set for O(1) lookups | +| Repeated array searches | O(n) per search | Convert to Map for O(1) | +| Sorting inside loop | O(n² log n) | Sort once outside loop | +| String concatenation in loop | O(n²) | Use array.join() | +| Deep cloning large objects | O(n) each time | Use shallow copy or immer | +| Recursion without memoization | O(2^n) | Add memoization | + +```typescript +// BAD: O(n²) - searching array in loop +for (const user of users) { + const posts = allPosts.filter(p => p.userId === user.id); // O(n) per user +} + +// GOOD: O(n) - group once with Map +const postsByUser = new Map(); +for (const post of allPosts) { + const userPosts = postsByUser.get(post.userId) || []; + userPosts.push(post); + postsByUser.set(post.userId, userPosts); +} +// Now O(1) lookup per user +``` + +### 3. React Performance Optimization + +**Common React Anti-patterns:** + +```tsx +// BAD: Inline function creation in render + + +// GOOD: Stable callback with useCallback +const handleButtonClick = useCallback(() => handleClick(id), [handleClick, id]); + + +// BAD: Object creation in render + + +// GOOD: Stable object reference +const style = useMemo(() => ({ color: 'red' }), []); + + +// BAD: Expensive computation on every render +const sortedItems = items.sort((a, b) => a.name.localeCompare(b.name)); + +// GOOD: Memoize expensive computations +const sortedItems = useMemo( + () => [...items].sort((a, b) => a.name.localeCompare(b.name)), + [items] +); + +// BAD: List without keys or with index +{items.map((item, index) => )} + +// GOOD: Stable unique keys +{items.map(item => )} +``` + +**React Performance Checklist:** + +- [ ] `useMemo` for expensive computations +- [ ] `useCallback` for functions passed to children +- [ ] `React.memo` for frequently re-rendered components +- [ ] Proper dependency arrays in hooks +- [ ] Virtualization for long lists (react-window, react-virtualized) +- [ ] Lazy loading for heavy components (`React.lazy`) +- [ ] Code splitting at route level + +### 4. Bundle Size Optimization + +**Bundle Analysis Checklist:** + +```bash +# Analyze bundle composition +npx webpack-bundle-analyzer build/static/js/*.js + +# Check for duplicate dependencies +npx duplicate-package-checker-analyzer + +# Find largest files +du -sh node_modules/* | sort -hr | head -20 +``` + +**Optimization Strategies:** + +| Issue | Solution | +|-------|----------| +| Large vendor bundle | Tree shaking, smaller alternatives | +| Duplicate code | Extract to shared module | +| Unused exports | Remove dead code with knip | +| Moment.js | Use date-fns or dayjs (smaller) | +| Lodash | Use lodash-es or native methods | +| Large icons library | Import only needed icons | + +```javascript +// BAD: Import entire library +import _ from 'lodash'; +import moment from 'moment'; + +// GOOD: Import only what you need +import debounce from 'lodash/debounce'; +import { format, addDays } from 'date-fns'; + +// Or use lodash-es with tree shaking +import { debounce, throttle } from 'lodash-es'; +``` + +### 5. Database & Query Optimization + +**Query Optimization Patterns:** + +```sql +-- BAD: Select all columns +SELECT * FROM users WHERE active = true; + +-- GOOD: Select only needed columns +SELECT id, name, email FROM users WHERE active = true; + +-- BAD: N+1 queries (in application loop) +-- 1 query for users, then N queries for each user's orders + +-- GOOD: Single query with JOIN or batch fetch +SELECT u.*, o.id as order_id, o.total +FROM users u +LEFT JOIN orders o ON u.id = o.user_id +WHERE u.active = true; + +-- Add index for frequently queried columns +CREATE INDEX idx_users_active ON users(active); +CREATE INDEX idx_orders_user_id ON orders(user_id); +``` + +**Database Performance Checklist:** + +- [ ] Indexes on frequently queried columns +- [ ] Composite indexes for multi-column queries +- [ ] Avoid SELECT * in production code +- [ ] Use connection pooling +- [ ] Implement query result caching +- [ ] Use pagination for large result sets +- [ ] Monitor slow query logs + +### 6. Network & API Optimization + +**Network Optimization Strategies:** + +```typescript +// BAD: Multiple sequential requests +const user = await fetchUser(id); +const posts = await fetchPosts(user.id); +const comments = await fetchComments(posts[0].id); + +// GOOD: Parallel requests when independent +const [user, posts] = await Promise.all([ + fetchUser(id), + fetchPosts(id) +]); + +// GOOD: Batch requests when possible +const results = await batchFetch(['user1', 'user2', 'user3']); + +// Implement request caching +const fetchWithCache = async (url: string, ttl = 300000) => { + const cached = cache.get(url); + if (cached) return cached; + + const data = await fetch(url).then(r => r.json()); + cache.set(url, data, ttl); + return data; +}; + +// Debounce rapid API calls +const debouncedSearch = debounce(async (query: string) => { + const results = await searchAPI(query); + setResults(results); +}, 300); +``` + +**Network Optimization Checklist:** + +- [ ] Parallel independent requests with `Promise.all` +- [ ] Implement request caching +- [ ] Debounce rapid-fire requests +- [ ] Use streaming for large responses +- [ ] Implement pagination for large datasets +- [ ] Use GraphQL or API batching to reduce requests +- [ ] Enable compression (gzip/brotli) on server + +### 7. Memory Leak Detection + +**Common Memory Leak Patterns:** + +```typescript +// BAD: Event listener without cleanup +useEffect(() => { + window.addEventListener('resize', handleResize); + // Missing cleanup! +}, []); + +// GOOD: Clean up event listeners +useEffect(() => { + window.addEventListener('resize', handleResize); + return () => window.removeEventListener('resize', handleResize); +}, []); + +// BAD: Timer without cleanup +useEffect(() => { + setInterval(() => pollData(), 1000); + // Missing cleanup! +}, []); + +// GOOD: Clean up timers +useEffect(() => { + const interval = setInterval(() => pollData(), 1000); + return () => clearInterval(interval); +}, []); + +// BAD: Holding references in closures +const Component = () => { + const largeData = useLargeData(); + useEffect(() => { + eventEmitter.on('update', () => { + console.log(largeData); // Closure keeps reference + }); + }, [largeData]); +}; + +// GOOD: Use refs or proper dependencies +const largeDataRef = useRef(largeData); +useEffect(() => { + largeDataRef.current = largeData; +}, [largeData]); + +useEffect(() => { + const handleUpdate = () => { + console.log(largeDataRef.current); + }; + eventEmitter.on('update', handleUpdate); + return () => eventEmitter.off('update', handleUpdate); +}, []); +``` + +**Memory Leak Detection:** + +```bash +# Chrome DevTools Memory tab: +# 1. Take heap snapshot +# 2. Perform action +# 3. Take another snapshot +# 4. Compare to find objects that shouldn't exist +# 5. Look for detached DOM nodes, event listeners, closures + +# Node.js memory debugging +node --inspect app.js +# Open chrome://inspect +# Take heap snapshots and compare +``` + +## Performance Testing + +### Lighthouse Audits + +```bash +# Run full lighthouse audit +npx lighthouse https://your-app.com --view --preset=desktop + +# CI mode for automated checks +npx lighthouse https://your-app.com --output=json --output-path=./lighthouse.json + +# Check specific metrics +npx lighthouse https://your-app.com --only-categories=performance +``` + +### Performance Budgets + +```json +// package.json +{ + "bundlesize": [ + { + "path": "./build/static/js/*.js", + "maxSize": "200 kB" + } + ] +} +``` + +### Web Vitals Monitoring + +```typescript +// Track Core Web Vitals +import { getCLS, getFID, getLCP, getFCP, getTTFB } from 'web-vitals'; + +getCLS(console.log); // Cumulative Layout Shift +getFID(console.log); // First Input Delay +getLCP(console.log); // Largest Contentful Paint +getFCP(console.log); // First Contentful Paint +getTTFB(console.log); // Time to First Byte +``` + +## Performance Report Template + +````markdown +# Performance Audit Report + +## Executive Summary +- **Overall Score**: X/100 +- **Critical Issues**: X +- **Recommendations**: X + +## Bundle Analysis +| Metric | Current | Target | Status | +|--------|---------|--------|--------| +| Total Size (gzip) | XXX KB | < 200 KB | ⚠️ | +| Main Bundle | XXX KB | < 100 KB | ✅ | +| Vendor Bundle | XXX KB | < 150 KB | ⚠️ | + +## Web Vitals +| Metric | Current | Target | Status | +|--------|---------|--------|--------| +| LCP | X.Xs | < 2.5s | ✅ | +| FID | XXms | < 100ms | ✅ | +| CLS | X.XX | < 0.1 | ⚠️ | + +## Critical Issues + +### 1. [Issue Title] +**File**: path/to/file.ts:42 +**Impact**: High - Causes XXXms delay +**Fix**: [Description of fix] + +```typescript +// Before (slow) +const slowCode = ...; + +// After (optimized) +const fastCode = ...; +``` + +### 2. [Issue Title] +... + +## Recommendations +1. [Priority recommendation] +2. [Priority recommendation] +3. [Priority recommendation] + +## Estimated Impact +- Bundle size reduction: XX KB (XX%) +- LCP improvement: XXms +- Time to Interactive improvement: XXms +```` + +## When to Run + +**ALWAYS:** Before major releases, after adding new features, when users report slowness, during performance regression testing. + +**IMMEDIATELY:** Lighthouse score drops, bundle size increases >10%, memory usage grows, slow page loads. + +## Red Flags - Act Immediately + +| Issue | Action | +|-------|--------| +| Bundle > 500KB gzip | Code split, lazy load, tree shake | +| LCP > 4s | Optimize critical path, preload resources | +| Memory usage growing | Check for leaks, review useEffect cleanup | +| CPU spikes | Profile with Chrome DevTools | +| Database query > 1s | Add index, optimize query, cache results | + +## Success Metrics + +- Lighthouse performance score > 90 +- All Core Web Vitals in "good" range +- Bundle size under budget +- No memory leaks detected +- Test suite still passing +- No performance regressions + +--- + +**Remember**: Performance is a feature. Users notice speed. Every 100ms of improvement matters. Optimize for the 90th percentile, not the average. diff --git a/docs/SKILL-DEVELOPMENT-GUIDE.md b/docs/SKILL-DEVELOPMENT-GUIDE.md new file mode 100644 index 00000000..cbf5e3c8 --- /dev/null +++ b/docs/SKILL-DEVELOPMENT-GUIDE.md @@ -0,0 +1,919 @@ +# Skill Development Guide + +A comprehensive guide to creating effective skills for Everything Claude Code (ECC). + +## Table of Contents + +- [What Are Skills?](#what-are-skills) +- [Skill Architecture](#skill-architecture) +- [Creating Your First Skill](#creating-your-first-skill) +- [Skill Categories](#skill-categories) +- [Writing Effective Skill Content](#writing-effective-skill-content) +- [Best Practices](#best-practices) +- [Common Patterns](#common-patterns) +- [Testing Your Skill](#testing-your-skill) +- [Submitting Your Skill](#submitting-your-skill) +- [Examples Gallery](#examples-gallery) + +--- + +## What Are Skills? + +Skills are **knowledge modules** that Claude Code loads based on context. They provide: + +- **Domain expertise**: Framework patterns, language idioms, best practices +- **Workflow definitions**: Step-by-step processes for common tasks +- **Reference material**: Code snippets, checklists, decision trees +- **Context injection**: Activate when specific conditions are met + +Unlike **agents** (specialized subassistants) or **commands** (user-triggered actions), skills are passive knowledge that Claude Code references when relevant. + +### When Skills Activate + +Skills activate when: +- The user's task matches the skill's domain +- Claude Code detects relevant context +- A command references a skill +- An agent needs domain knowledge + +### Skill vs Agent vs Command + +| Component | Purpose | Activation | +|-----------|---------|------------| +| **Skill** | Knowledge repository | Context-based (automatic) | +| **Agent** | Task executor | Explicit delegation | +| **Command** | User action | User-invoked (`/command`) | +| **Hook** | Automation | Event-triggered | +| **Rule** | Always-on guidelines | Always active | + +--- + +## Skill Architecture + +### File Structure + +``` +skills/ +└── your-skill-name/ + ├── SKILL.md # Required: Main skill definition + ├── examples/ # Optional: Code examples + │ ├── basic.ts + │ └── advanced.ts + └── references/ # Optional: External references + └── links.md +``` + +### SKILL.md Format + +```markdown +--- +name: skill-name +description: Brief description shown in skill list and used for auto-activation +origin: ECC +--- + +# Skill Title + +Brief overview of what this skill covers. + +## When to Activate + +Describe scenarios where Claude should use this skill. + +## Core Concepts + +Main patterns and guidelines. + +## Code Examples + +\`\`\`typescript +// Practical, tested examples +\`\`\` + +## Anti-Patterns + +Show what NOT to do with concrete examples. + +## Best Practices + +- Actionable guidelines +- Do's and don'ts + +## Related Skills + +Link to complementary skills. +``` + +### YAML Frontmatter Fields + +| Field | Required | Description | +|-------|----------|-------------| +| `name` | Yes | Lowercase, hyphenated identifier (e.g., `react-patterns`) | +| `description` | Yes | One-line description for skill list and auto-activation | +| `origin` | No | Source identifier (e.g., `ECC`, `community`, project name) | +| `tags` | No | Array of tags for categorization | +| `version` | No | Skill version for tracking updates | + +--- + +## Creating Your First Skill + +### Step 1: Choose a Focus + +Good skills are **focused and actionable**: + +| ✅ Good Focus | ❌ Too Broad | +|---------------|--------------| +| `react-hook-patterns` | `react` | +| `postgresql-indexing` | `databases` | +| `pytest-fixtures` | `python-testing` | +| `nextjs-app-router` | `nextjs` | + +### Step 2: Create the Directory + +```bash +mkdir -p skills/your-skill-name +``` + +### Step 3: Write SKILL.md + +Here's a minimal template: + +```markdown +--- +name: your-skill-name +description: Brief description of when to use this skill +--- + +# Your Skill Title + +Brief overview (1-2 sentences). + +## When to Activate + +- Scenario 1 +- Scenario 2 +- Scenario 3 + +## Core Concepts + +### Concept 1 + +Explanation with examples. + +### Concept 2 + +Another pattern with code. + +## Code Examples + +\`\`\`typescript +// Practical example +\`\`\` + +## Best Practices + +- Do this +- Avoid that + +## Related Skills + +- `related-skill-1` +- `related-skill-2` +``` + +### Step 4: Add Content + +Write content that Claude can **immediately use**: + +- ✅ Copy-pasteable code examples +- ✅ Clear decision trees +- ✅ Checklists for verification +- ❌ Vague explanations without examples +- ❌ Long prose without actionable guidance + +--- + +## Skill Categories + +### Language Standards + +Focus on idiomatic code, naming conventions, and language-specific patterns. + +**Examples:** `python-patterns`, `golang-patterns`, `typescript-standards` + +```markdown +--- +name: python-patterns +description: Python idioms, best practices, and patterns for clean, idiomatic code. +--- + +# Python Patterns + +## When to Activate + +- Writing Python code +- Refactoring Python modules +- Python code review + +## Core Concepts + +### Context Managers + +\`\`\`python +# Always use context managers for resources +with open('file.txt') as f: + content = f.read() +\`\`\` +``` + +### Framework Patterns + +Focus on framework-specific conventions, common patterns, and anti-patterns. + +**Examples:** `django-patterns`, `nextjs-patterns`, `springboot-patterns` + +```markdown +--- +name: django-patterns +description: Django best practices for models, views, URLs, and templates. +--- + +# Django Patterns + +## When to Activate + +- Building Django applications +- Creating models and views +- Django URL configuration +``` + +### Workflow Skills + +Define step-by-step processes for common development tasks. + +**Examples:** `tdd-workflow`, `code-review-workflow`, `deployment-checklist` + +```markdown +--- +name: code-review-workflow +description: Systematic code review process for quality and security. +--- + +# Code Review Workflow + +## Steps + +1. **Understand Context** - Read PR description and linked issues +2. **Check Tests** - Verify test coverage and quality +3. **Review Logic** - Analyze implementation for correctness +4. **Check Security** - Look for vulnerabilities +5. **Verify Style** - Ensure code follows conventions +``` + +### Domain Knowledge + +Specialized knowledge for specific domains (security, performance, etc.). + +**Examples:** `security-review`, `performance-optimization`, `api-design` + +```markdown +--- +name: api-design +description: REST and GraphQL API design patterns, versioning, and best practices. +--- + +# API Design Patterns + +## RESTful Conventions + +| Method | Endpoint | Purpose | +|--------|----------|---------| +| GET | /resources | List all | +| GET | /resources/:id | Get one | +| POST | /resources | Create | +``` + +### Tool Integration + +Guidance for using specific tools, libraries, or services. + +**Examples:** `supabase-patterns`, `docker-patterns`, `mcp-server-patterns` + +--- + +## Writing Effective Skill Content + +### 1. Start with "When to Activate" + +This section is **critical** for auto-activation. Be specific: + +```markdown +## When to Activate + +- Creating new React components +- Refactoring existing components +- Debugging React state issues +- Reviewing React code for best practices +``` + +### 2. Use "Show, Don't Tell" + +Bad: +```markdown +## Error Handling + +Always handle errors properly in async functions. +``` + +Good: +```markdown +## Error Handling + +\`\`\`typescript +async function fetchData(url: string) { + try { + const response = await fetch(url) + + if (!response.ok) { + throw new Error(\`HTTP \${response.status}: \${response.statusText}\`) + } + + return await response.json() + } catch (error) { + console.error('Fetch failed:', error) + throw new Error('Failed to fetch data') + } +} +\`\`\` + +### Key Points + +- Check \`response.ok\` before parsing +- Log errors for debugging +- Re-throw with user-friendly message +``` + +### 3. Include Anti-Patterns + +Show what NOT to do: + +```markdown +## Anti-Patterns + +### ❌ Direct State Mutation + +\`\`\`typescript +// NEVER do this +user.name = 'New Name' +items.push(newItem) +\`\`\` + +### ✅ Immutable Updates + +\`\`\`typescript +// ALWAYS do this +const updatedUser = { ...user, name: 'New Name' } +const updatedItems = [...items, newItem] +\`\`\` +``` + +### 4. Provide Checklists + +Checklists are actionable and easy to follow: + +```markdown +## Pre-Deployment Checklist + +- [ ] All tests passing +- [ ] No console.log in production code +- [ ] Environment variables documented +- [ ] Secrets not hardcoded +- [ ] Error handling complete +- [ ] Input validation in place +``` + +### 5. Use Decision Trees + +For complex decisions: + +```markdown +## Choosing the Right Approach + +\`\`\` +Need to fetch data? +├── Single request → use fetch directly +├── Multiple independent → Promise.all() +├── Multiple dependent → await sequentially +└── With caching → use SWR or React Query +\`\`\` +``` + +--- + +## Best Practices + +### DO + +| Practice | Example | +|----------|---------| +| **Be specific** | "Use \`useCallback\` for event handlers passed to child components" | +| **Show examples** | Include copy-pasteable code | +| **Explain WHY** | "Immutability prevents unexpected side effects in React state" | +| **Link related skills** | "See also: \`react-performance\`" | +| **Keep focused** | One skill = one domain/concept | +| **Use sections** | Clear headers for easy scanning | + +### DON'T + +| Practice | Why It's Bad | +|----------|--------------| +| **Be vague** | "Write good code" - not actionable | +| **Long prose** | Hard to parse, better as code | +| **Cover too much** | "Python, Django, and Flask patterns" - too broad | +| **Skip examples** | Theory without practice is less useful | +| **Ignore anti-patterns** | Learning what NOT to do is valuable | + +### Content Guidelines + +1. **Length**: 200-500 lines typical, 800 lines maximum +2. **Code blocks**: Include language identifier +3. **Headers**: Use `##` and `###` hierarchy +4. **Lists**: Use `-` for unordered, `1.` for ordered +5. **Tables**: For comparisons and references + +--- + +## Common Patterns + +### Pattern 1: Standards Skill + +```markdown +--- +name: language-standards +description: Coding standards and best practices for [language]. +--- + +# [Language] Coding Standards + +## When to Activate + +- Writing [language] code +- Code review +- Setting up linting + +## Naming Conventions + +| Element | Convention | Example | +|---------|------------|---------| +| Variables | camelCase | userName | +| Constants | SCREAMING_SNAKE | MAX_RETRY | +| Functions | camelCase | fetchUser | +| Classes | PascalCase | UserService | + +## Code Examples + +[Include practical examples] + +## Linting Setup + +[Include configuration] + +## Related Skills + +- `language-testing` +- `language-security` +``` + +### Pattern 2: Workflow Skill + +```markdown +--- +name: task-workflow +description: Step-by-step workflow for [task]. +--- + +# [Task] Workflow + +## When to Activate + +- [Trigger 1] +- [Trigger 2] + +## Prerequisites + +- [Requirement 1] +- [Requirement 2] + +## Steps + +### Step 1: [Name] + +[Description] + +\`\`\`bash +[Commands] +\`\`\` + +### Step 2: [Name] + +[Description] + +## Verification + +- [ ] [Check 1] +- [ ] [Check 2] + +## Troubleshooting + +| Problem | Solution | +|---------|----------| +| [Issue] | [Fix] | +``` + +### Pattern 3: Reference Skill + +```markdown +--- +name: api-reference +description: Quick reference for [API/Library]. +--- + +# [API/Library] Reference + +## When to Activate + +- Using [API/Library] +- Looking up [API/Library] syntax + +## Common Operations + +### Operation 1 + +\`\`\`typescript +// Basic usage +\`\`\` + +### Operation 2 + +\`\`\`typescript +// Advanced usage +\`\`\` + +## Configuration + +[Include config examples] + +## Error Handling + +[Include error patterns] +``` + +--- + +## Testing Your Skill + +### Local Testing + +1. **Copy to Claude Code skills directory**: + ```bash + cp -r skills/your-skill-name ~/.claude/skills/ + ``` + +2. **Test with Claude Code**: + ``` + You: "I need to [task that should trigger your skill]" + + Claude should reference your skill's patterns. + ``` + +3. **Verify activation**: + - Ask Claude to explain a concept from your skill + - Check if it uses your examples and patterns + - Ensure it follows your guidelines + +### Validation Checklist + +- [ ] **YAML frontmatter valid** - No syntax errors +- [ ] **Name follows convention** - lowercase-with-hyphens +- [ ] **Description is clear** - Tells when to use +- [ ] **Examples work** - Code compiles and runs +- [ ] **Links valid** - Related skills exist +- [ ] **No sensitive data** - No API keys, tokens, paths + +### Code Example Testing + +Test all code examples: + +```bash +# From the repo root +npx tsc --noEmit skills/your-skill-name/examples/*.ts + +# Or from inside the skill directory +npx tsc --noEmit examples/*.ts + +# From the repo root +python -m py_compile skills/your-skill-name/examples/*.py + +# Or from inside the skill directory +python -m py_compile examples/*.py + +# From the repo root +go build ./skills/your-skill-name/examples/... + +# Or from inside the skill directory +go build ./examples/... +``` + +--- + +## Submitting Your Skill + +### 1. Fork and Clone + +```bash +gh repo fork affaan-m/everything-claude-code --clone +cd everything-claude-code +``` + +### 2. Create Branch + +```bash +git checkout -b feat/skill-your-skill-name +``` + +### 3. Add Your Skill + +```bash +mkdir -p skills/your-skill-name +# Create SKILL.md +``` + +### 4. Validate + +```bash +# Check YAML frontmatter +head -10 skills/your-skill-name/SKILL.md + +# Verify structure +ls -la skills/your-skill-name/ + +# Run tests if available +npm test +``` + +### 5. Commit and Push + +```bash +git add skills/your-skill-name/ +git commit -m "feat(skills): add your-skill-name skill" +git push -u origin feat/skill-your-skill-name +``` + +### 6. Create Pull Request + +Use this PR template: + +```markdown +## Summary + +Brief description of the skill and why it's valuable. + +## Skill Type + +- [ ] Language standards +- [ ] Framework patterns +- [ ] Workflow +- [ ] Domain knowledge +- [ ] Tool integration + +## Testing + +How I tested this skill locally. + +## Checklist + +- [ ] YAML frontmatter valid +- [ ] Code examples tested +- [ ] Follows skill guidelines +- [ ] No sensitive data +- [ ] Clear activation triggers +``` + +--- + +## Examples Gallery + +### Example 1: Language Standards + +**File:** `skills/rust-patterns/SKILL.md` + +```markdown +--- +name: rust-patterns +description: Rust idioms, ownership patterns, and best practices for safe, idiomatic code. +origin: ECC +--- + +# Rust Patterns + +## When to Activate + +- Writing Rust code +- Handling ownership and borrowing +- Error handling with Result/Option +- Implementing traits + +## Ownership Patterns + +### Borrowing Rules + +\`\`\`rust +// ✅ CORRECT: Borrow when you don't need ownership +fn process_data(data: &str) -> usize { + data.len() +} + +// ✅ CORRECT: Take ownership when you need to modify or consume +fn consume_data(data: Vec) -> String { + String::from_utf8(data).unwrap() +} +\`\`\` + +## Error Handling + +### Result Pattern + +\`\`\`rust +use thiserror::Error; + +#[derive(Error, Debug)] +pub enum AppError { + #[error("IO error: {0}")] + Io(#[from] std::io::Error), + + #[error("Parse error: {0}")] + Parse(#[from] std::num::ParseIntError), +} + +pub type AppResult = Result; +\`\`\` + +## Related Skills + +- `rust-testing` +- `rust-security` +``` + +### Example 2: Framework Patterns + +**File:** `skills/fastapi-patterns/SKILL.md` + +```markdown +--- +name: fastapi-patterns +description: FastAPI patterns for routing, dependency injection, validation, and async operations. +origin: ECC +--- + +# FastAPI Patterns + +## When to Activate + +- Building FastAPI applications +- Creating API endpoints +- Implementing dependency injection +- Handling async database operations + +## Project Structure + +\`\`\` +app/ +├── main.py # FastAPI app entry point +├── routers/ # Route handlers +│ ├── users.py +│ └── items.py +├── models/ # Pydantic models +│ ├── user.py +│ └── item.py +├── services/ # Business logic +│ └── user_service.py +└── dependencies.py # Shared dependencies +\`\`\` + +## Dependency Injection + +\`\`\`python +from fastapi import Depends +from sqlalchemy.ext.asyncio import AsyncSession + +async def get_db() -> AsyncSession: + async with AsyncSessionLocal() as session: + yield session + +@router.get("/users/{user_id}") +async def get_user( + user_id: int, + db: AsyncSession = Depends(get_db) +): + # Use db session + pass +\`\`\` + +## Related Skills + +- `python-patterns` +- `pydantic-validation` +``` + +### Example 3: Workflow Skill + +**File:** `skills/refactoring-workflow/SKILL.md` + +```markdown +--- +name: refactoring-workflow +description: Systematic refactoring workflow for improving code quality without changing behavior. +origin: ECC +--- + +# Refactoring Workflow + +## When to Activate + +- Improving code structure +- Reducing technical debt +- Simplifying complex code +- Extracting reusable components + +## Prerequisites + +- All tests passing +- Git working directory clean +- Feature branch created + +## Workflow Steps + +### Step 1: Identify Refactoring Target + +- Look for code smells (long methods, duplicate code, large classes) +- Check test coverage for target area +- Document current behavior + +### Step 2: Ensure Tests Exist + +\`\`\`bash +# Run tests to verify current behavior +npm test + +# Check coverage for target files +npm run test:coverage +\`\`\` + +### Step 3: Make Small Changes + +- One refactoring at a time +- Run tests after each change +- Commit frequently + +### Step 4: Verify Behavior Unchanged + +\`\`\`bash +# Run full test suite +npm test + +# Run E2E tests +npm run test:e2e +\`\`\` + +## Common Refactorings + +| Smell | Refactoring | +|-------|-------------| +| Long method | Extract method | +| Duplicate code | Extract to shared function | +| Large class | Extract class | +| Long parameter list | Introduce parameter object | + +## Checklist + +- [ ] Tests exist for target code +- [ ] Made small, focused changes +- [ ] Tests pass after each change +- [ ] Behavior unchanged +- [ ] Committed with clear message +``` + +--- + +## Additional Resources + +- [CONTRIBUTING.md](../CONTRIBUTING.md) - General contribution guidelines +- [project-guidelines-example](../skills/project-guidelines-example/SKILL.md) - Project-specific skill template +- [coding-standards](../skills/coding-standards/SKILL.md) - Example of standards skill +- [tdd-workflow](../skills/tdd-workflow/SKILL.md) - Example of workflow skill +- [security-review](../skills/security-review/SKILL.md) - Example of domain knowledge skill + +--- + +**Remember**: A good skill is focused, actionable, and immediately useful. Write skills you'd want to use yourself. diff --git a/docs/ja-JP/README.md b/docs/ja-JP/README.md index e11da683..850e7ba4 100644 --- a/docs/ja-JP/README.md +++ b/docs/ja-JP/README.md @@ -409,7 +409,7 @@ claude --version Claude Code v2.1+は、インストール済みプラグインの`hooks/hooks.json`(規約)を自動読み込みします。`plugin.json`で明示的に宣言するとエラーが発生します: ``` -Duplicate hooks file detected: ./hooks/hooks.json resolves to already-loaded file +Duplicate hook file detected: ./hooks/hooks.json is already resolved to a loaded file ``` **背景:** これは本リポジトリで複数の修正/リバート循環を引き起こしました([#29](https://github.com/affaan-m/everything-claude-code/issues/29), [#52](https://github.com/affaan-m/everything-claude-code/issues/52), [#103](https://github.com/affaan-m/everything-claude-code/issues/103))。Claude Codeバージョン間で動作が変わったため混乱がありました。今後を防ぐため回帰テストがあります。 diff --git a/docs/ja-JP/agents/code-reviewer.md b/docs/ja-JP/agents/code-reviewer.md index 24586f92..a57fea12 100644 --- a/docs/ja-JP/agents/code-reviewer.md +++ b/docs/ja-JP/agents/code-reviewer.md @@ -77,9 +77,9 @@ model: opus 各問題について: ``` [CRITICAL] ハードコードされたAPIキー -File: src/api/client.ts:42 -Issue: APIキーがソースコードに公開されている -Fix: 環境変数に移動 +ファイル: src/api/client.ts:42 +問題: APIキーがソースコードに公開されている +修正: 環境変数に移動 const apiKey = "sk-abc123"; // ❌ Bad const apiKey = process.env.API_KEY; // ✓ Good diff --git a/docs/ja-JP/agents/go-build-resolver.md b/docs/ja-JP/agents/go-build-resolver.md index 69a94230..4f360fce 100644 --- a/docs/ja-JP/agents/go-build-resolver.md +++ b/docs/ja-JP/agents/go-build-resolver.md @@ -341,20 +341,20 @@ x = x // 無意味な代入を削除 各修正試行後: ```text -[FIXED] internal/handler/user.go:42 -Error: undefined: UserService -Fix: Added import "project/internal/service" +[修正済] internal/handler/user.go:42 +エラー: undefined: UserService +修正: import を追加 "project/internal/service" -Remaining errors: 3 +残りのエラー: 3 ``` 最終サマリー: ```text -Build Status: SUCCESS/FAILED -Errors Fixed: N -Vet Warnings Fixed: N -Files Modified: list -Remaining Issues: list (if any) +ビルドステータス: SUCCESS/FAILED +修正済みエラー: N +Vet 警告修正済み: N +変更ファイル: list +残りの問題: list (ある場合) ``` ## 重要な注意事項 diff --git a/docs/ja-JP/agents/go-reviewer.md b/docs/ja-JP/agents/go-reviewer.md index 951a9f70..abab6fe5 100644 --- a/docs/ja-JP/agents/go-reviewer.md +++ b/docs/ja-JP/agents/go-reviewer.md @@ -228,9 +228,9 @@ model: opus 各問題について: ```text [CRITICAL] SQLインジェクション脆弱性 -File: internal/repository/user.go:42 -Issue: ユーザー入力がSQLクエリに直接連結されている -Fix: パラメータ化クエリを使用 +ファイル: internal/repository/user.go:42 +問題: ユーザー入力がSQLクエリに直接連結されている +修正: パラメータ化クエリを使用 query := "SELECT * FROM users WHERE id = " + userID // Bad query := "SELECT * FROM users WHERE id = $1" // Good diff --git a/docs/ja-JP/agents/python-reviewer.md b/docs/ja-JP/agents/python-reviewer.md index 2e567c43..06059fea 100644 --- a/docs/ja-JP/agents/python-reviewer.md +++ b/docs/ja-JP/agents/python-reviewer.md @@ -399,9 +399,9 @@ model: opus 各問題について: ```text [CRITICAL] SQLインジェクション脆弱性 -File: app/routes/user.py:42 -Issue: ユーザー入力がSQLクエリに直接補間されている -Fix: パラメータ化クエリを使用 +ファイル: app/routes/user.py:42 +問題: ユーザー入力がSQLクエリに直接補間されている +修正: パラメータ化クエリを使用 query = f"SELECT * FROM users WHERE id = {user_id}" # Bad query = "SELECT * FROM users WHERE id = %s" # Good diff --git a/docs/ja-JP/commands/checkpoint.md b/docs/ja-JP/commands/checkpoint.md index 6c73be4c..59568616 100644 --- a/docs/ja-JP/commands/checkpoint.md +++ b/docs/ja-JP/commands/checkpoint.md @@ -35,12 +35,12 @@ echo "$(date +%Y-%m-%d-%H:%M) | $CHECKPOINT_NAME | $(git rev-parse --short HEAD) 3. レポート: ``` -CHECKPOINT COMPARISON: $NAME +チェックポイント比較: $NAME ============================ -Files changed: X -Tests: +Y passed / -Z failed -Coverage: +X% / -Y% -Build: [PASS/FAIL] +変更されたファイル: X +テスト: +Y 合格 / -Z 失敗 +カバレッジ: +X% / -Y% +ビルド: [PASS/FAIL] ``` ## チェックポイント一覧表示 @@ -57,13 +57,13 @@ Build: [PASS/FAIL] 一般的なチェックポイント流: ``` -[Start] --> /checkpoint create "feature-start" +[開始] --> /checkpoint create "feature-start" | -[Implement] --> /checkpoint create "core-done" +[実装] --> /checkpoint create "core-done" | -[Test] --> /checkpoint verify "core-done" +[テスト] --> /checkpoint verify "core-done" | -[Refactor] --> /checkpoint create "refactor-done" +[リファクタリング] --> /checkpoint create "refactor-done" | [PR] --> /checkpoint verify "feature-start" ``` diff --git a/docs/ja-JP/commands/e2e.md b/docs/ja-JP/commands/e2e.md index b59d609c..1e57b8df 100644 --- a/docs/ja-JP/commands/e2e.md +++ b/docs/ja-JP/commands/e2e.md @@ -38,24 +38,24 @@ e2e-runner エージェントは: ## 使用します示例 ```` -User: /e2e Test the market search and view flow +User: /e2e マーケット検索と表示フローをテスト Agent (e2e-runner): -# E2E Test Generation: Market Search and View Flow +# E2Eテスト生成: マーケット検索と表示フロー -## Test Scenario Identified +## 特定されたテストシナリオ -**User Journey:** Market Search → View Results → Click Market → View Details +**ユーザージャーニー:** マーケット検索 → 結果表示 → マーケットクリック → 詳細表示 -**Test Coverage:** -1. Navigate to markets page -2. Perform semantic search -3. Verify search results -4. Click on first result -5. Verify market details page loads -6. Verify chart renders +**テストカバレッジ:** +1. マーケットページに遷移 +2. セマンティック検索を実行 +3. 検索結果を検証 +4. 最初の結果をクリック +5. マーケット詳細ページの読み込みを検証 +6. チャートの描画を検証 -## Generated Test Code +## 生成されたテストコード ```typescript // tests/e2e/markets/search-and-view.spec.ts @@ -160,7 +160,7 @@ test.describe('Market Search and View Flow', () => { ## テスト実行 ```bash -# Run the generated test +# 生成されたテストを実行 npx playwright test tests/e2e/markets/search-and-view.spec.ts Running 3 tests using 3 workers @@ -181,54 +181,54 @@ Artifacts generated: ``` ╔══════════════════════════════════════════════════════════════╗ -║ E2E Test Results ║ +║ E2Eテスト結果 ║ ╠══════════════════════════════════════════════════════════════╣ -║ Status: ✅ ALL TESTS PASSED ║ -║ Total: 3 tests ║ -║ Passed: 3 (100%) ║ -║ Failed: 0 ║ -║ Flaky: 0 ║ -║ Duration: 9.1s ║ +║ ステータス: ✅ 全テスト合格 ║ +║ 合計: 3テスト ║ +║ 合格: 3 (100%) ║ +║ 失敗: 0 ║ +║ 不安定: 0 ║ +║ 所要時間: 9.1s ║ ╚══════════════════════════════════════════════════════════════╝ -Artifacts: -📸 Screenshots: 2 files -📹 Videos: 0 files (only on failure) -🔍 Traces: 0 files (only on failure) -📊 HTML Report: playwright-report/index.html +アーティファクト: +📸 スクリーンショット: 2ファイル +📹 ビデオ: 0ファイル (失敗時のみ) +🔍 トレース: 0ファイル (失敗時のみ) +📊 HTMLレポート: playwright-report/index.html -View report: npx playwright show-report +レポート表示: npx playwright show-report ``` ✅ E2E テストスイートは CI/CD 統合の準備ができました! ```` -## Test Artifacts +## テストアーティファクト -When tests run, the following artifacts are captured: +テスト実行時、以下のアーティファクトがキャプチャされます: -**On All Tests:** -- HTML Report with timeline and results -- JUnit XML for CI integration +**全テスト共通:** +- タイムラインと結果を含むHTMLレポート +- CI統合用のJUnit XML -**On Failure Only:** -- Screenshot of the failing state -- Video recording of the test -- Trace file for debugging (step-by-step replay) -- Network logs -- Console logs +**失敗時のみ:** +- 失敗状態のスクリーンショット +- テストのビデオ録画 +- デバッグ用トレースファイル (ステップバイステップ再生) +- ネットワークログ +- コンソールログ -## Viewing Artifacts +## アーティファクトの確認 ```bash -# View HTML report in browser +# ブラウザでHTMLレポートを表示 npx playwright show-report -# View specific trace file +# 特定のトレースファイルを表示 npx playwright show-trace artifacts/trace-abc123.zip -# Screenshots are saved in artifacts/ directory +# スクリーンショットはartifacts/ディレクトリに保存 open artifacts/search-results.png ```` @@ -239,18 +239,18 @@ open artifacts/search-results.png ``` ⚠️ FLAKY TEST DETECTED: tests/e2e/markets/trade.spec.ts -Test passed 7/10 runs (70% pass rate) +テストは10回中7回合格 (合格率70%) -Common failure: +よくある失敗: "Timeout waiting for element '[data-testid="confirm-btn"]'" -Recommended fixes: -1. Add explicit wait: await page.waitForSelector('[data-testid="confirm-btn"]') -2. Increase timeout: { timeout: 10000 } -3. Check for race conditions in component -4. Verify element is not hidden by animation +推奨修正: +1. 明示的な待機を追加: await page.waitForSelector('[data-testid="confirm-btn"]') +2. タイムアウトを増加: { timeout: 10000 } +3. コンポーネントの競合状態を確認 +4. 要素がアニメーションで隠れていないか確認 -Quarantine recommendation: Mark as test.fixme() until fixed +隔離推奨: 修正されるまでtest.fixme()としてマーク ``` ## ブラウザ設定 @@ -350,21 +350,21 @@ PMX の場合、以下の E2E テストを優先: ## 快速命令 ```bash -# Run all E2E tests +# 全E2Eテストを実行 npx playwright test -# Run specific test file +# 特定のテストファイルを実行 npx playwright test tests/e2e/markets/search.spec.ts -# Run in headed mode (see browser) +# ヘッドモードで実行 (ブラウザ表示) npx playwright test --headed -# Debug test +# テストをデバッグ npx playwright test --debug -# Generate test code +# テストコードを生成 npx playwright codegen http://localhost:3000 -# View report +# レポートを表示 npx playwright show-report ``` diff --git a/docs/ja-JP/commands/evolve.md b/docs/ja-JP/commands/evolve.md index 4354cf83..81081f5d 100644 --- a/docs/ja-JP/commands/evolve.md +++ b/docs/ja-JP/commands/evolve.md @@ -92,36 +92,36 @@ instinctsが分離の恩恵を受ける複雑な複数ステップのプロセ ## 出力フォーマット ``` -🧬 Evolve Analysis +🧬 進化分析 ================== 進化の準備ができた3つのクラスターを発見: ## クラスター1: データベースマイグレーションワークフロー Instincts: new-table-migration, update-schema, regenerate-types -Type: Command -Confidence: 85%(12件の観測に基づく) +タイプ: Command +信頼度: 85%(12件の観測に基づく) 作成: /new-tableコマンド -Files: +ファイル: - ~/.claude/homunculus/evolved/commands/new-table.md ## クラスター2: 関数型コードスタイル Instincts: prefer-functional, use-immutable, avoid-classes, pure-functions -Type: Skill -Confidence: 78%(8件の観測に基づく) +タイプ: Skill +信頼度: 78%(8件の観測に基づく) 作成: functional-patternsスキル -Files: +ファイル: - ~/.claude/homunculus/evolved/skills/functional-patterns.md ## クラスター3: デバッグプロセス Instincts: debug-check-logs, debug-isolate, debug-reproduce, debug-verify -Type: Agent -Confidence: 72%(6件の観測に基づく) +タイプ: Agent +信頼度: 72%(6件の観測に基づく) 作成: debuggerエージェント -Files: +ファイル: - ~/.claude/homunculus/evolved/agents/debugger.md --- diff --git a/docs/ja-JP/commands/go-build.md b/docs/ja-JP/commands/go-build.md index 14573924..650ac480 100644 --- a/docs/ja-JP/commands/go-build.md +++ b/docs/ja-JP/commands/go-build.md @@ -62,9 +62,9 @@ internal/handler/api.go:58:2: missing return at end of function ## 修正1: 未定義の識別子 -File: internal/service/user.go:25 -Error: undefined: UserRepository -Cause: インポート欠落 +ファイル: internal/service/user.go:25 +エラー: undefined: UserRepository +原因: インポート欠落 ```go // インポートを追加 @@ -83,8 +83,8 @@ $ go build ./... ## 修正2: 型の不一致 -File: internal/handler/api.go:42 -Error: cannot use x (type string) as type int +ファイル: internal/handler/api.go:42 +エラー: cannot use x (type string) as type int ```go // 変更前 @@ -101,8 +101,8 @@ $ go build ./... ## 修正3: 戻り値の欠落 -File: internal/handler/api.go:58 -Error: missing return at end of function +ファイル: internal/handler/api.go:58 +エラー: missing return at end of function ```go func GetUser(id string) (*User, error) { diff --git a/docs/ja-JP/commands/go-review.md b/docs/ja-JP/commands/go-review.md index 478109f9..c843d563 100644 --- a/docs/ja-JP/commands/go-review.md +++ b/docs/ja-JP/commands/go-review.md @@ -85,8 +85,8 @@ Agent: ## 発見された問題 [CRITICAL] 競合状態 -File: internal/service/auth.go:45 -Issue: 同期化なしで共有マップにアクセス +ファイル: internal/service/auth.go:45 +問題: 同期化なしで共有マップにアクセス ```go var cache = map[string]*Session{} // 並行アクセス! @@ -94,7 +94,7 @@ func GetSession(id string) *Session { return cache[id] // 競合状態 } ``` -Fix: sync.RWMutexまたはsync.Mapを使用 +修正: sync.RWMutexまたはsync.Mapを使用 ```go var ( cache = map[string]*Session{} @@ -109,12 +109,12 @@ func GetSession(id string) *Session { ``` [HIGH] エラーコンテキストの欠落 -File: internal/handler/user.go:28 -Issue: コンテキストなしでエラーを返す +ファイル: internal/handler/user.go:28 +問題: コンテキストなしでエラーを返す ```go return err // コンテキストなし ``` -Fix: コンテキストでラップ +修正: コンテキストでラップ ```go return fmt.Errorf("get user %s: %w", userID, err) ``` diff --git a/docs/ja-JP/commands/instinct-import.md b/docs/ja-JP/commands/instinct-import.md index ab93c53d..804ef50d 100644 --- a/docs/ja-JP/commands/instinct-import.md +++ b/docs/ja-JP/commands/instinct-import.md @@ -45,40 +45,40 @@ python3 ~/.claude/skills/continuous-learning-v2/scripts/instinct-cli.py import < ## インポートプロセス ``` -📥 Importing instincts from: team-instincts.yaml +📥 instinctsをインポート中: team-instincts.yaml ================================================ -Found 12 instincts to import. +12件のinstinctsが見つかりました。 -Analyzing conflicts... +競合を分析中... -## New Instincts (8) -These will be added: +## 新規instincts (8) +以下が追加されます: ✓ use-zod-validation (confidence: 0.7) ✓ prefer-named-exports (confidence: 0.65) ✓ test-async-functions (confidence: 0.8) ... -## Duplicate Instincts (3) -Already have similar instincts: +## 重複instincts (3) +類似のinstinctsが既に存在: ⚠️ prefer-functional-style - Local: 0.8 confidence, 12 observations - Import: 0.7 confidence - → Keep local (higher confidence) + ローカル: 信頼度0.8, 12回の観測 + インポート: 信頼度0.7 + → ローカルを保持 (信頼度が高い) ⚠️ test-first-workflow - Local: 0.75 confidence - Import: 0.9 confidence - → Update to import (higher confidence) + ローカル: 信頼度0.75 + インポート: 信頼度0.9 + → インポートに更新 (信頼度が高い) -## Conflicting Instincts (1) -These contradict local instincts: +## 競合instincts (1) +ローカルのinstinctsと矛盾: ❌ use-classes-for-services - Conflicts with: avoid-classes - → Skip (requires manual resolution) + 競合: avoid-classes + → スキップ (手動解決が必要) --- -Import 8 new, update 1, skip 3? +8件を新規追加、1件を更新、3件をスキップしますか? ``` ## マージ戦略 @@ -130,13 +130,13 @@ Skill Creatorからインポートする場合: インポート後: ``` -✅ Import complete! +✅ インポート完了! -Added: 8 instincts -Updated: 1 instinct -Skipped: 3 instincts (2 duplicates, 1 conflict) +追加: 8件のinstincts +更新: 1件のinstinct +スキップ: 3件のinstincts (2件の重複, 1件の競合) -New instincts saved to: ~/.claude/homunculus/instincts/inherited/ +新規instinctsの保存先: ~/.claude/homunculus/instincts/inherited/ -Run /instinct-status to see all instincts. +/instinct-statusを実行してすべてのinstinctsを確認できます。 ``` diff --git a/docs/ja-JP/commands/instinct-status.md b/docs/ja-JP/commands/instinct-status.md index 65bf3917..c9e27909 100644 --- a/docs/ja-JP/commands/instinct-status.md +++ b/docs/ja-JP/commands/instinct-status.md @@ -39,42 +39,42 @@ python3 ~/.claude/skills/continuous-learning-v2/scripts/instinct-cli.py status ## 出力形式 ``` -📊 Instinct Status +📊 instinctステータス ================== -## Code Style (4 instincts) +## コードスタイル (4 instincts) ### prefer-functional-style -Trigger: when writing new functions -Action: Use functional patterns over classes -Confidence: ████████░░ 80% -Source: session-observation | Last updated: 2025-01-22 +トリガー: 新しい関数を書くとき +アクション: クラスより関数型パターンを使用 +信頼度: ████████░░ 80% +ソース: session-observation | 最終更新: 2025-01-22 ### use-path-aliases -Trigger: when importing modules -Action: Use @/ path aliases instead of relative imports -Confidence: ██████░░░░ 60% -Source: repo-analysis (github.com/acme/webapp) +トリガー: モジュールをインポートするとき +アクション: 相対インポートの代わりに@/パスエイリアスを使用 +信頼度: ██████░░░░ 60% +ソース: repo-analysis (github.com/acme/webapp) -## Testing (2 instincts) +## テスト (2 instincts) ### test-first-workflow -Trigger: when adding new functionality -Action: Write test first, then implementation -Confidence: █████████░ 90% -Source: session-observation +トリガー: 新しい機能を追加するとき +アクション: テストを先に書き、次に実装 +信頼度: █████████░ 90% +ソース: session-observation -## Workflow (3 instincts) +## ワークフロー (3 instincts) ### grep-before-edit -Trigger: when modifying code -Action: Search with Grep, confirm with Read, then Edit -Confidence: ███████░░░ 70% -Source: session-observation +トリガー: コードを変更するとき +アクション: Grepで検索、Readで確認、次にEdit +信頼度: ███████░░░ 70% +ソース: session-observation --- -Total: 9 instincts (4 personal, 5 inherited) -Observer: Running (last analysis: 5 min ago) +合計: 9 instincts (4個人, 5継承) +オブザーバー: 実行中 (最終分析: 5分前) ``` ## フラグ diff --git a/docs/ja-JP/commands/orchestrate.md b/docs/ja-JP/commands/orchestrate.md index c204297e..b06fa049 100644 --- a/docs/ja-JP/commands/orchestrate.md +++ b/docs/ja-JP/commands/orchestrate.md @@ -99,36 +99,36 @@ security-reviewer -> code-reviewer -> architect ## 最終レポート形式 ``` -ORCHESTRATION REPORT +オーケストレーションレポート ==================== -Workflow: feature -Task: Add user authentication -Agents: planner -> tdd-guide -> code-reviewer -> security-reviewer +ワークフロー: feature +タスク: ユーザー認証の追加 +エージェント: planner -> tdd-guide -> code-reviewer -> security-reviewer -SUMMARY +サマリー ------- [1段落の要約] -AGENT OUTPUTS +エージェント出力 ------------- Planner: [要約] TDD Guide: [要約] Code Reviewer: [要約] Security Reviewer: [要約] -FILES CHANGED +変更ファイル ------------- [変更されたすべてのファイルをリスト] -TEST RESULTS +テスト結果 ------------ [テスト合格/不合格の要約] -SECURITY STATUS +セキュリティステータス --------------- [セキュリティの発見事項] -RECOMMENDATION +推奨事項 -------------- [リリース可 / 要修正 / ブロック中] ``` diff --git a/docs/ja-JP/commands/python-review.md b/docs/ja-JP/commands/python-review.md index d301046c..1cc9b05b 100644 --- a/docs/ja-JP/commands/python-review.md +++ b/docs/ja-JP/commands/python-review.md @@ -95,26 +95,26 @@ Agent: ## 発見された問題 [CRITICAL] SQLインジェクション脆弱性 -File: app/routes/user.py:42 -Issue: ユーザー入力が直接SQLクエリに挿入されている +ファイル: app/routes/user.py:42 +問題: ユーザー入力が直接SQLクエリに挿入されている ```python query = f"SELECT * FROM users WHERE id = {user_id}" # 悪い ``` -Fix: パラメータ化クエリを使用 +修正: パラメータ化クエリを使用 ```python query = "SELECT * FROM users WHERE id = %s" # 良い cursor.execute(query, (user_id,)) ``` [HIGH] 可変デフォルト引数 -File: app/services/auth.py:18 -Issue: 可変デフォルト引数が共有状態を引き起こす +ファイル: app/services/auth.py:18 +問題: 可変デフォルト引数が共有状態を引き起こす ```python def process_items(items=[]): # 悪い items.append("new") return items ``` -Fix: デフォルトにNoneを使用 +修正: デフォルトにNoneを使用 ```python def process_items(items=None): # 良い if items is None: @@ -124,27 +124,27 @@ def process_items(items=None): # 良い ``` [MEDIUM] 型ヒントの欠落 -File: app/services/auth.py:25 -Issue: 型アノテーションのない公開関数 +ファイル: app/services/auth.py:25 +問題: 型アノテーションのない公開関数 ```python def get_user(user_id): # 悪い return db.find(user_id) ``` -Fix: 型ヒントを追加 +修正: 型ヒントを追加 ```python def get_user(user_id: str) -> Optional[User]: # 良い return db.find(user_id) ``` [MEDIUM] コンテキストマネージャーを使用していない -File: app/routes/user.py:55 -Issue: 例外時にファイルがクローズされない +ファイル: app/routes/user.py:55 +問題: 例外時にファイルがクローズされない ```python f = open("config.json") # 悪い data = f.read() f.close() ``` -Fix: コンテキストマネージャーを使用 +修正: コンテキストマネージャーを使用 ```python with open("config.json") as f: # 良い data = f.read() diff --git a/docs/ja-JP/commands/verify.md b/docs/ja-JP/commands/verify.md index 5ec4ec53..89e9297c 100644 --- a/docs/ja-JP/commands/verify.md +++ b/docs/ja-JP/commands/verify.md @@ -36,16 +36,16 @@ 簡潔な検証レポートを生成します: ``` -VERIFICATION: [PASS/FAIL] +検証結果: [PASS/FAIL] -Build: [OK/FAIL] -Types: [OK/X errors] -Lint: [OK/X issues] -Tests: [X/Y passed, Z% coverage] -Secrets: [OK/X found] -Logs: [OK/X console.logs] +ビルド: [OK/FAIL] +型: [OK/Xエラー] +Lint: [OK/X件の問題] +テスト: [X/Y合格, Z%カバレッジ] +シークレット: [OK/X件発見] +ログ: [OK/X件のconsole.log] -Ready for PR: [YES/NO] +PR準備完了: [YES/NO] ``` 重大な問題がある場合は、修正案とともにリストアップします。 diff --git a/docs/ja-JP/examples/CLAUDE.md b/docs/ja-JP/examples/CLAUDE.md index 7e22b778..a8f08bc1 100644 --- a/docs/ja-JP/examples/CLAUDE.md +++ b/docs/ja-JP/examples/CLAUDE.md @@ -43,7 +43,7 @@ ``` src/ -|-- app/ # Next.js app router +|-- app/ # Next.js App Router |-- components/ # 再利用可能なUIコンポーネント |-- hooks/ # カスタムReactフック |-- lib/ # ユーティリティライブラリ diff --git a/docs/ja-JP/skills/coding-standards/SKILL.md b/docs/ja-JP/skills/coding-standards/SKILL.md index 93a9c310..e0615121 100644 --- a/docs/ja-JP/skills/coding-standards/SKILL.md +++ b/docs/ja-JP/skills/coding-standards/SKILL.md @@ -234,14 +234,14 @@ setCount(count + 1) // Can be stale in async scenarios ### REST API規約 ``` -GET /api/markets # List all markets -GET /api/markets/:id # Get specific market -POST /api/markets # Create new market -PUT /api/markets/:id # Update market (full) -PATCH /api/markets/:id # Update market (partial) -DELETE /api/markets/:id # Delete market +GET /api/markets # すべてのマーケットを一覧 +GET /api/markets/:id # 特定のマーケットを取得 +POST /api/markets # 新しいマーケットを作成 +PUT /api/markets/:id # マーケットを更新(全体) +PATCH /api/markets/:id # マーケットを更新(部分) +DELETE /api/markets/:id # マーケットを削除 -# Query parameters for filtering +# フィルタリング用クエリパラメータ GET /api/markets?status=active&limit=10&offset=0 ``` @@ -312,29 +312,29 @@ export async function POST(request: Request) { ``` src/ ├── app/ # Next.js App Router -│ ├── api/ # API routes -│ ├── markets/ # Market pages -│ └── (auth)/ # Auth pages (route groups) -├── components/ # React components -│ ├── ui/ # Generic UI components -│ ├── forms/ # Form components -│ └── layouts/ # Layout components -├── hooks/ # Custom React hooks -├── lib/ # Utilities and configs -│ ├── api/ # API clients -│ ├── utils/ # Helper functions -│ └── constants/ # Constants -├── types/ # TypeScript types -└── styles/ # Global styles +│ ├── api/ # API ルート +│ ├── markets/ # マーケットページ +│ └── (auth)/ # 認証ページ(ルートグループ) +├── components/ # React コンポーネント +│ ├── ui/ # 汎用 UI コンポーネント +│ ├── forms/ # フォームコンポーネント +│ └── layouts/ # レイアウトコンポーネント +├── hooks/ # カスタム React フック +├── lib/ # ユーティリティと設定 +│ ├── api/ # API クライアント +│ ├── utils/ # ヘルパー関数 +│ └── constants/ # 定数 +├── types/ # TypeScript 型定義 +└── styles/ # グローバルスタイル ``` ### ファイル命名 ``` -components/Button.tsx # PascalCase for components -hooks/useAuth.ts # camelCase with 'use' prefix -lib/formatDate.ts # camelCase for utilities -types/market.types.ts # camelCase with .types suffix +components/Button.tsx # コンポーネントは PascalCase +hooks/useAuth.ts # フックは 'use' プレフィックス付き camelCase +lib/formatDate.ts # ユーティリティは camelCase +types/market.types.ts # 型定義は .types サフィックス付き camelCase ``` ## コメントとドキュメント diff --git a/docs/ja-JP/skills/continuous-learning-v2/SKILL.md b/docs/ja-JP/skills/continuous-learning-v2/SKILL.md index a107b36f..df8425e5 100644 --- a/docs/ja-JP/skills/continuous-learning-v2/SKILL.md +++ b/docs/ja-JP/skills/continuous-learning-v2/SKILL.md @@ -51,13 +51,13 @@ source: "session-observation" ## 仕組み ``` -Session Activity +セッションアクティビティ │ │ フックがプロンプト + ツール使用をキャプチャ(100%信頼性) ▼ ┌─────────────────────────────────────────┐ │ observations.jsonl │ -│ (prompts, tool calls, outcomes) │ +│ (プロンプト、ツール呼び出し、結果) │ └─────────────────────────────────────────┘ │ │ Observerエージェントが読み取り(バックグラウンド、Haiku) diff --git a/docs/ja-JP/skills/eval-harness/SKILL.md b/docs/ja-JP/skills/eval-harness/SKILL.md index 8a5c1b3d..0bb380cf 100644 --- a/docs/ja-JP/skills/eval-harness/SKILL.md +++ b/docs/ja-JP/skills/eval-harness/SKILL.md @@ -22,24 +22,24 @@ Claude Codeセッションの正式な評価フレームワークで、評価駆 Claudeが以前できなかったことができるようになったかをテスト: ```markdown [CAPABILITY EVAL: feature-name] -Task: Claudeが達成すべきことの説明 -Success Criteria: +タスク: Claudeが達成すべきことの説明 +成功基準: - [ ] 基準1 - [ ] 基準2 - [ ] 基準3 -Expected Output: 期待される結果の説明 +期待される出力: 期待される結果の説明 ``` ### リグレッション評価 変更が既存の機能を破壊しないことを確認: ```markdown [REGRESSION EVAL: feature-name] -Baseline: SHAまたはチェックポイント名 -Tests: +ベースライン: SHAまたはチェックポイント名 +テスト: - existing-test-1: PASS/FAIL - existing-test-2: PASS/FAIL - existing-test-3: PASS/FAIL -Result: X/Y passed (previously Y/Y) +結果: X/Y 成功(以前は Y/Y) ``` ## 評価者タイプ @@ -67,17 +67,17 @@ Claudeを使用して自由形式の出力を評価: 3. エッジケースは処理されていますか? 4. エラー処理は適切ですか? -Score: 1-5 (1=poor, 5=excellent) -Reasoning: [説明] +スコア: 1-5(1=不良、5=優秀) +理由: [説明] ``` ### 3. 人間評価者 手動レビューのためにフラグを立てる: ```markdown [HUMAN REVIEW REQUIRED] -Change: 何が変更されたかの説明 -Reason: 人間のレビューが必要な理由 -Risk Level: LOW/MEDIUM/HIGH +変更内容: 何が変更されたかの説明 +理由: 人間のレビューが必要な理由 +リスクレベル: LOW/MEDIUM/HIGH ``` ## メトリクス @@ -98,21 +98,21 @@ Risk Level: LOW/MEDIUM/HIGH ### 1. 定義(コーディング前) ```markdown -## EVAL DEFINITION: feature-xyz +## 評価定義: feature-xyz -### Capability Evals +### 能力評価 1. 新しいユーザーアカウントを作成できる 2. メール形式を検証できる 3. パスワードを安全にハッシュ化できる -### Regression Evals +### リグレッション評価 1. 既存のログインが引き続き機能する 2. セッション管理が変更されていない 3. ログアウトフローが維持されている -### Success Metrics -- pass@3 > 90% for capability evals -- pass^3 = 100% for regression evals +### 成功メトリクス +- 能力評価で pass@3 > 90% +- リグレッション評価で pass^3 = 100% ``` ### 2. 実装 @@ -131,26 +131,26 @@ npm test -- --testPathPattern="existing" ### 4. レポート ```markdown -EVAL REPORT: feature-xyz +評価レポート: feature-xyz ======================== -Capability Evals: +能力評価: create-user: PASS (pass@1) validate-email: PASS (pass@2) hash-password: PASS (pass@1) - Overall: 3/3 passed + 全体: 3/3 成功 -Regression Evals: +リグレッション評価: login-flow: PASS session-mgmt: PASS logout-flow: PASS - Overall: 3/3 passed + 全体: 3/3 成功 -Metrics: +メトリクス: pass@1: 67% (2/3) pass@3: 100% (3/3) -Status: READY FOR REVIEW +ステータス: レビュー準備完了 ``` ## 統合パターン @@ -199,29 +199,29 @@ Status: READY FOR REVIEW ```markdown ## EVAL: add-authentication -### Phase 1: Define (10 min) -Capability Evals: +### フェーズ 1: 定義(10分) +能力評価: - [ ] ユーザーはメール/パスワードで登録できる - [ ] ユーザーは有効な資格情報でログインできる - [ ] 無効な資格情報は適切なエラーで拒否される - [ ] セッションはページリロード後も持続する - [ ] ログアウトはセッションをクリアする -Regression Evals: +リグレッション評価: - [ ] 公開ルートは引き続きアクセス可能 - [ ] APIレスポンスは変更されていない - [ ] データベーススキーマは互換性がある -### Phase 2: Implement (varies) +### フェーズ 2: 実装(可変) [コードを書く] -### Phase 3: Evaluate +### フェーズ 3: 評価 Run: /eval check add-authentication -### Phase 4: Report -EVAL REPORT: add-authentication +### フェーズ 4: レポート +評価レポート: add-authentication ============================== -Capability: 5/5 passed (pass@3: 100%) -Regression: 3/3 passed (pass^3: 100%) -Status: SHIP IT +能力: 5/5 成功(pass@3: 100%) +リグレッション: 3/3 成功(pass^3: 100%) +ステータス: 出荷可能 ``` diff --git a/docs/ja-JP/skills/golang-patterns/SKILL.md b/docs/ja-JP/skills/golang-patterns/SKILL.md index f2303d94..66dcfaa4 100644 --- a/docs/ja-JP/skills/golang-patterns/SKILL.md +++ b/docs/ja-JP/skills/golang-patterns/SKILL.md @@ -368,17 +368,17 @@ func WriteAndFlush(w io.Writer, data []byte) error { myproject/ ├── cmd/ │ └── myapp/ -│ └── main.go # Entry point +│ └── main.go # エントリポイント ├── internal/ -│ ├── handler/ # HTTP handlers -│ ├── service/ # Business logic -│ ├── repository/ # Data access -│ └── config/ # Configuration +│ ├── handler/ # HTTP ハンドラー +│ ├── service/ # ビジネスロジック +│ ├── repository/ # データアクセス +│ └── config/ # 設定 ├── pkg/ -│ └── client/ # Public API client +│ └── client/ # 公開 API クライアント ├── api/ -│ └── v1/ # API definitions (proto, OpenAPI) -├── testdata/ # Test fixtures +│ └── v1/ # API 定義(proto、OpenAPI) +├── testdata/ # テストフィクスチャ ├── go.mod ├── go.sum └── Makefile diff --git a/docs/ja-JP/skills/golang-testing/SKILL.md b/docs/ja-JP/skills/golang-testing/SKILL.md index 116b09c3..05fbb25e 100644 --- a/docs/ja-JP/skills/golang-testing/SKILL.md +++ b/docs/ja-JP/skills/golang-testing/SKILL.md @@ -113,7 +113,7 @@ mypackage/ ├── testdata/ # テストフィクスチャ │ ├── valid_user.json │ └── invalid_user.json -└── export_test.go # 内部のテストのための非公開のエクスポート +└── export_test.go # 内部テスト用の非公開エクスポート ``` ### テストパッケージ diff --git a/docs/ja-JP/skills/python-testing/SKILL.md b/docs/ja-JP/skills/python-testing/SKILL.md index cde8583c..0ae1c700 100644 --- a/docs/ja-JP/skills/python-testing/SKILL.md +++ b/docs/ja-JP/skills/python-testing/SKILL.md @@ -594,18 +594,18 @@ def test_with_tmpdir(tmpdir): ``` tests/ -├── conftest.py # Shared fixtures +├── conftest.py # 共有フィクスチャ ├── __init__.py -├── unit/ # Unit tests +├── unit/ # ユニットテスト │ ├── __init__.py │ ├── test_models.py │ ├── test_utils.py │ └── test_services.py -├── integration/ # Integration tests +├── integration/ # 統合テスト │ ├── __init__.py │ ├── test_api.py │ └── test_database.py -└── e2e/ # End-to-end tests +└── e2e/ # エンドツーエンドテスト ├── __init__.py └── test_user_flow.py ``` diff --git a/docs/zh-CN/commands/prune.md b/docs/zh-CN/commands/prune.md new file mode 100644 index 00000000..9336187b --- /dev/null +++ b/docs/zh-CN/commands/prune.md @@ -0,0 +1,31 @@ +--- +name: prune +description: 删除超过 30 天且从未被提升的待处理本能 +command: true +--- + +# 清理待处理本能 + +删除那些由系统自动生成、但从未经过审查或提升的过期待处理本能。 + +## 实现 + +使用插件根目录路径运行本能 CLI: + +```bash +python3 "${CLAUDE_PLUGIN_ROOT}/skills/continuous-learning-v2/scripts/instinct-cli.py" prune +``` + +或者如果 `CLAUDE_PLUGIN_ROOT` 未设置(手动安装): + +```bash +python3 ~/.claude/skills/continuous-learning-v2/scripts/instinct-cli.py prune +``` + +## 用法 + +``` +/prune # 删除超过 30 天的本能 +/prune --max-age 60 # 自定义年龄阈值(天) +/prune --dry-run # 仅预览,不实际删除 +``` diff --git a/docs/zh-CN/skills/prompt-optimizer/SKILL.md b/docs/zh-CN/skills/prompt-optimizer/SKILL.md index b8a951d1..73a3fbf0 100644 --- a/docs/zh-CN/skills/prompt-optimizer/SKILL.md +++ b/docs/zh-CN/skills/prompt-optimizer/SKILL.md @@ -1,6 +1,7 @@ --- name: prompt-optimizer -description: 分析原始提示,识别意图和差距,匹配ECC组件(技能/命令/代理/钩子),并输出一个可直接粘贴的优化提示。仅提供咨询角色——绝不自行执行任务。触发时机:当用户说“优化提示”、“改进我的提示”、“如何编写提示”、“帮我优化这个指令”或明确要求提高提示质量时。中文等效表达同样触发:“优化prompt”、“改进prompt”、“怎么写prompt”、“帮我优化这个指令”。不触发时机:当用户希望直接执行任务,或说“直接做”时。不触发时机:当用户说“优化代码”、“优化性能”、“optimize performance”、“optimize this code”时——这些是重构/性能优化任务,而非提示优化。origin: community +description: 分析原始提示,识别意图和差距,匹配ECC组件(技能/命令/代理/钩子),并输出一个可直接粘贴的优化提示。仅提供咨询角色——绝不自行执行任务。触发时机:当用户说“优化提示”、“改进我的提示”、“如何编写提示”、“帮我优化这个指令”或明确要求提高提示质量时。中文等效表达同样触发:“优化prompt”、“改进prompt”、“怎么写prompt”、“帮我优化这个指令”。不触发时机:当用户希望直接执行任务,或说“直接做”时。不触发时机:当用户说“优化代码”、“优化性能”、“optimize performance”、“optimize this code”时——这些是重构/性能优化任务,而非提示优化。 +origin: community metadata: author: YannJY02 version: "1.0.0" diff --git a/hooks/README.md b/hooks/README.md index e3d50e51..27fae0a5 100644 --- a/hooks/README.md +++ b/hooks/README.md @@ -23,6 +23,7 @@ User request → Claude picks a tool → PreToolUse hook runs → Tool executes | **Dev server blocker** | `Bash` | Blocks `npm run dev` etc. outside tmux — ensures log access | 2 (blocks) | | **Tmux reminder** | `Bash` | Suggests tmux for long-running commands (npm test, cargo build, docker) | 0 (warns) | | **Git push reminder** | `Bash` | Reminds to review changes before `git push` | 0 (warns) | +| **Pre-commit quality check** | `Bash` | Runs quality checks before `git commit`: lints staged files, validates commit message format when provided via `-m/--message`, detects console.log/debugger/secrets | 2 (blocks critical) / 0 (warns) | | **Doc file warning** | `Write` | Warns about non-standard `.md`/`.txt` files (allows README, CLAUDE, CONTRIBUTING, CHANGELOG, LICENSE, SKILL, docs/, skills/); cross-platform path handling | 0 (warns) | | **Strategic compact** | `Edit\|Write` | Suggests manual `/compact` at logical intervals (every ~50 tool calls) | 0 (warns) | | **InsAIts security monitor (opt-in)** | `Bash\|Write\|Edit\|MultiEdit` | Optional security scan for high-signal tool inputs. Disabled unless `ECC_ENABLE_INSAITS=1`. Blocks on critical findings, warns on non-critical, and writes audit log to `.insaits_audit_session.jsonl`. Requires `pip install insa-its`. [Details](../scripts/hooks/insaits-security-monitor.py) | 2 (blocks critical) / 0 (warns) | diff --git a/hooks/hooks.json b/hooks/hooks.json index 8610b512..64abd73b 100644 --- a/hooks/hooks.json +++ b/hooks/hooks.json @@ -42,6 +42,16 @@ ], "description": "Reminder before git push to review changes" }, + { + "matcher": "Bash", + "hooks": [ + { + "type": "command", + "command": "node \"${CLAUDE_PLUGIN_ROOT}/scripts/hooks/run-with-flags.js\" \"pre:bash:commit-quality\" \"scripts/hooks/pre-bash-commit-quality.js\" \"strict\"" + } + ], + "description": "Pre-commit quality check: lint staged files, validate commit message format, detect console.log/debugger/secrets before committing" + }, { "matcher": "Write", "hooks": [ diff --git a/install.ps1 b/install.ps1 index 7a5af5bf..752ac2ec 100644 --- a/install.ps1 +++ b/install.ps1 @@ -34,5 +34,20 @@ while ($true) { $scriptDir = Split-Path -Parent $scriptPath $installerScript = Join-Path -Path (Join-Path -Path $scriptDir -ChildPath 'scripts') -ChildPath 'install-apply.js' +# Auto-install Node dependencies when running from a git clone +$nodeModules = Join-Path -Path $scriptDir -ChildPath 'node_modules' +if (-not (Test-Path -LiteralPath $nodeModules)) { + Write-Host '[ECC] Installing dependencies...' + Push-Location $scriptDir + try { + & npm install --no-audit --no-fund --loglevel=error + if ($LASTEXITCODE -ne 0) { + Write-Error "npm install failed with exit code $LASTEXITCODE" + exit $LASTEXITCODE + } + } + finally { Pop-Location } +} + & node $installerScript @args exit $LASTEXITCODE diff --git a/install.sh b/install.sh index d0abc14f..31925dde 100755 --- a/install.sh +++ b/install.sh @@ -14,4 +14,10 @@ while [ -L "$SCRIPT_PATH" ]; do done SCRIPT_DIR="$(cd "$(dirname "$SCRIPT_PATH")" && pwd)" +# Auto-install Node dependencies when running from a git clone +if [ ! -d "$SCRIPT_DIR/node_modules" ]; then + echo "[ECC] Installing dependencies..." + (cd "$SCRIPT_DIR" && npm install --no-audit --no-fund --loglevel=error) +fi + exec node "$SCRIPT_DIR/scripts/install-apply.js" "$@" diff --git a/manifests/install-modules.json b/manifests/install-modules.json index c35578ff..619d3948 100644 --- a/manifests/install-modules.json +++ b/manifests/install-modules.json @@ -125,6 +125,7 @@ "skills/kotlin-ktor-patterns", "skills/kotlin-patterns", "skills/kotlin-testing", + "skills/laravel-plugin-discovery", "skills/laravel-patterns", "skills/laravel-tdd", "skills/laravel-verification", diff --git a/mcp-configs/mcp-servers.json b/mcp-configs/mcp-servers.json index 4efad2ff..f71fc7d2 100644 --- a/mcp-configs/mcp-servers.json +++ b/mcp-configs/mcp-servers.json @@ -133,6 +133,11 @@ "args": ["-y", "token-optimizer-mcp"], "description": "Token optimization for 95%+ context reduction via content deduplication and compression" }, + "laraplugins": { + "type": "http", + "url": "https://laraplugins.io/mcp/plugins", + "description": "Laravel plugin discovery — search packages by keyword, health score, Laravel/PHP version compatibility. Use with laravel-plugin-discovery skill." + }, "confluence": { "command": "npx", "args": ["-y", "confluence-mcp-server"], diff --git a/package-lock.json b/package-lock.json index 4ab265da..7fc43891 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,6 +11,7 @@ "license": "MIT", "dependencies": { "@iarna/toml": "^2.2.5", + "ajv": "^8.18.0", "sql.js": "^1.14.1" }, "bin": { @@ -19,7 +20,6 @@ }, "devDependencies": { "@eslint/js": "^9.39.2", - "ajv": "^8.18.0", "c8": "^10.1.2", "eslint": "^9.39.2", "globals": "^17.1.0", @@ -449,7 +449,6 @@ "version": "8.18.0", "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz", "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==", - "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3", @@ -1043,7 +1042,6 @@ "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true, "license": "MIT" }, "node_modules/fast-json-stable-stringify": { @@ -1064,7 +1062,6 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz", "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==", - "dev": true, "funding": [ { "type": "github", @@ -1491,7 +1488,6 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true, "license": "MIT" }, "node_modules/json-stable-stringify-without-jsonify": { @@ -2457,9 +2453,9 @@ } }, "node_modules/picomatch": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", - "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", "dev": true, "license": "MIT", "engines": { @@ -2512,7 +2508,6 @@ "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" diff --git a/package.json b/package.json index 5e82a1b3..c3704007 100644 --- a/package.json +++ b/package.json @@ -89,6 +89,9 @@ "AGENTS.md", ".claude-plugin/plugin.json", ".claude-plugin/README.md", + ".codex-plugin/plugin.json", + ".codex-plugin/README.md", + ".mcp.json", "install.sh", "install.ps1", "llms.txt" @@ -110,11 +113,11 @@ }, "dependencies": { "@iarna/toml": "^2.2.5", + "ajv": "^8.18.0", "sql.js": "^1.14.1" }, "devDependencies": { "@eslint/js": "^9.39.2", - "ajv": "^8.18.0", "c8": "^10.1.2", "eslint": "^9.39.2", "globals": "^17.1.0", @@ -122,5 +125,6 @@ }, "engines": { "node": ">=18" - } + }, + "packageManager": "yarn@4.9.2+sha512.1fc009bc09d13cfd0e19efa44cbfc2b9cf6ca61482725eb35bbc5e257e093ebf4130db6dfe15d604ff4b79efd8e1e8e99b25fa7d0a6197c9f9826358d4d65c3c" } diff --git a/research/ecc2-codebase-analysis.md b/research/ecc2-codebase-analysis.md new file mode 100644 index 00000000..00170011 --- /dev/null +++ b/research/ecc2-codebase-analysis.md @@ -0,0 +1,172 @@ +# ECC2 Codebase Research Report + +**Date:** 2026-03-26 +**Subject:** `ecc-tui` v0.1.0 — Agentic IDE Control Plane +**Total Lines:** 4,417 across 15 `.rs` files + +## 1. Architecture Overview + +ECC2 is a Rust TUI application that orchestrates AI coding agent sessions. It uses: +- **ratatui 0.29** + **crossterm 0.28** for terminal UI +- **rusqlite 0.32** (bundled) for local state persistence +- **tokio 1** (full) for async runtime +- **clap 4** (derive) for CLI + +### Module Breakdown + +| Module | Lines | Purpose | +|--------|------:|---------| +| `session/` | 1,974 | Session lifecycle, persistence, runtime, output | +| `tui/` | 1,613 | Dashboard, app loop, custom widgets | +| `observability/` | 409 | Tool call risk scoring and logging | +| `config/` | 144 | Configuration (TOML file) | +| `main.rs` | 142 | CLI entry point | +| `worktree/` | 99 | Git worktree management | +| `comms/` | 36 | Inter-agent messaging (send only) | + +### Key Architectural Patterns + +- **DbWriter thread** in `session/runtime.rs` — dedicated OS thread for SQLite writes from async context via `mpsc::unbounded_channel` with oneshot acknowledgements. Clean solution to the "SQLite from async" problem. +- **Session state machine** with enforced transitions: `Pending → {Running, Failed, Stopped}`, `Running → {Idle, Completed, Failed, Stopped}`, etc. +- **Ring buffer** for session output — `OUTPUT_BUFFER_LIMIT = 1000` lines per session with automatic eviction. +- **Risk scoring** on tool calls — 4-axis analysis (base tool risk, file sensitivity, blast radius, irreversibility) producing composite 0.0–1.0 scores with suggested actions (Allow/Review/RequireConfirmation/Block). + +## 2. Code Quality Metrics + +| Metric | Value | +|--------|-------| +| Total lines | 4,417 | +| Test functions | 29 | +| `unwrap()` calls | 3 | +| `unsafe` blocks | 0 | +| TODO/FIXME comments | 0 | +| Max file size | 1,273 lines (`dashboard.rs`) | + +**Assessment:** The codebase is clean. Only 3 `unwrap()` calls (2 in tests, 1 in config `default()`), zero `unsafe`, and all modules use proper `anyhow::Result` error propagation. The `dashboard.rs` file at 1,273 lines exceeds the repo's 800-line max-file guideline, but it is still manageable at the current scope. + +## 3. Identified Gaps + +### 3.1 Comms Module — Send Without Receive + +`comms/mod.rs` (36 lines) has `send()` but no `receive()`, `poll()`, `inbox()`, or `subscribe()`. The `messages` table exists in SQLite, but nothing reads from it. The inter-agent messaging story is half-built. + +**Impact:** Agents cannot coordinate. The `TaskHandoff`, `Query`, `Response`, and `Conflict` message types are defined but unusable. + +### 3.2 New Session Dialog — Stub + +`dashboard.rs:495` — `new_session()` logs `"New session dialog requested"` but does nothing. Users must use the CLI (`ecc start --task "..."`) to create sessions; the TUI dashboard cannot. + +### 3.3 Single Agent Support + +`session/manager.rs` — `agent_program()` only supports `"claude"`. The CLI accepts `--agent` but anything other than `"claude"` fails. No codex, opencode, or custom agent support. + +### 3.4 Config — File-Only + +`Config::load()` reads `~/.claude/ecc2.toml` only. The implementation lacks environment variable overrides (e.g., `ECC_DB_PATH`, `ECC_WORKTREE_ROOT`) and CLI flags for configuration. + +### 3.5 Legacy Dependency Candidate: `git2` + +`git2 = "0.20"` is still declared in `Cargo.toml`, but the `worktree` module shells out to the `git` CLI instead. That makes `git2` a strong removal candidate rather than an already-completed cleanup. + +### 3.6 No Metrics Aggregation + +`SessionMetrics` tracks tokens, cost, duration, tool_calls, files_changed per session. But there's no aggregate view: total cost across sessions, average duration, top tools by usage, etc. The Metrics pane in the dashboard shows per-session detail only. + +### 3.7 Daemon — No Health Reporting + +`session/daemon.rs` runs an infinite loop checking session timeouts. No health endpoint, no log rotation, no PID file, no signal handling for graceful shutdown. `Ctrl+C` during daemon mode kills the process uncleanly. + +## 4. Test Coverage Analysis + +34 test functions across 10 source modules: + +| Module | Tests | Coverage Focus | +|--------|------:|----------------| +| `main.rs` | 1 | CLI parsing | +| `config/mod.rs` | 5 | Defaults, deserialization, legacy fallback | +| `observability/mod.rs` | 5 | Risk scoring, persistence, pagination | +| `session/daemon.rs` | 2 | Crash recovery / liveness handling | +| `session/manager.rs` | 4 | Session lifecycle, resume, stop, latest status | +| `session/output.rs` | 2 | Ring buffer, broadcast | +| `session/runtime.rs` | 1 | Output capture persistence/events | +| `session/store.rs` | 3 | Buffer window, migration, state transitions | +| `tui/dashboard.rs` | 8 | Rendering, selection, pane navigation, scrolling | +| `tui/widgets.rs` | 3 | Token meter rendering and thresholds | + +**Direct coverage gaps:** +- `comms/mod.rs` — 0 tests +- `worktree/mod.rs` — 0 tests + +The core I/O-heavy paths are no longer completely untested: `manager.rs`, `runtime.rs`, and `daemon.rs` each have targeted tests. The remaining gap is breadth rather than total absence, especially around `comms/`, `worktree/`, and more adversarial process/worktree failure cases. + +## 5. Security Observations + +- **No secrets in code.** Config reads from TOML file, no hardcoded credentials. +- **Process spawning** uses `tokio::process::Command` with explicit `Stdio::piped()` — no shell injection vectors. +- **Risk scoring** is a strong feature — catches `rm -rf`, `git push --force origin main`, file access to `.env`/secrets. +- **No input sanitization on session task strings.** The task string is passed directly to `claude --print`. If the task contains shell metacharacters, it could be exploited depending on how `Command` handles argument quoting. Currently safe (arguments are not shell-interpreted), but worth auditing. + +## 6. Dependency Health + +| Crate | Version | Latest | Notes | +|-------|---------|--------|-------| +| ratatui | 0.29 | **0.30.0** | Update available | +| crossterm | 0.28 | **0.29.0** | Update available | +| rusqlite | 0.32 | **0.39.0** | Update available | +| tokio | 1 | **1.50.0** | Update available | +| serde | 1 | **1.0.228** | Update available | +| clap | 4 | **4.6.0** | Update available | +| chrono | 0.4 | **0.4.44** | Update available | +| uuid | 1 | **1.22.0** | Update available | + +`git2` is still present in `Cargo.toml` even though the `worktree` module shells out to the `git` CLI. Several other dependencies are outdated; either remove `git2` or start using it before the next release. + +## 7. Recommendations (Prioritized) + +### P0 — Quick Wins + +1. **Add environment variable support to `Config::load()`** — `ECC_DB_PATH`, `ECC_WORKTREE_ROOT`, `ECC_DEFAULT_AGENT`. Standard practice for CLI tools. + +### P1 — Feature Completions + +2. **Implement `comms::receive()` / `comms::poll()`** — read unread messages from the `messages` table, optionally with a `broadcast` channel for real-time delivery. Wire it into the dashboard. +3. **Build the new-session dialog in the TUI** — modal form with task input, agent selector, worktree toggle. Should call `session::manager::create_session()`. +4. **Add aggregate metrics** — total cost, average session duration, tool call frequency, cost per session. Show in the Metrics pane. + +### P2 — Robustness + +5. **Expand integration coverage for `manager.rs`, `runtime.rs`, and `daemon.rs`** — the repo now has baseline tests here, but it still needs failure-path coverage around process crashes, timeouts, and cleanup edge cases. +6. **Add first-party tests for `worktree/mod.rs` and `comms/mod.rs`** — these are still uncovered and back important orchestration features. +7. **Add daemon health reporting** — PID file, structured logging, graceful shutdown via signal handler. +8. **Task string security audit** — The session task uses `claude --print` via `tokio::process::Command`. Verify arguments are never shell-interpreted. Checklist: confirm `Command` arg usage, threat-model metacharacter injection, input validation/escaping strategy, logging of raw inputs, and automated tests. Re-audit if invocation code changes. +9. **Break up `dashboard.rs`** — extract SessionsPane, OutputPane, MetricsPane, LogPane into separate files under `tui/panes/`. + +### P3 — Extensibility + +10. **Multi-agent support** — make `agent_program()` pluggable. Add `codex`, `opencode`, `custom` agent types. +11. **Config validation** — validate risk thresholds sum correctly, budget values are positive, paths exist. + +## 8. Comparison with Ratatui 0.29 Best Practices + +The codebase follows ratatui conventions well: +- Uses `TableState` for stateful selection (correct pattern) +- Custom `Widget` trait implementation for `TokenMeter` (idiomatic) +- `tick()` method for periodic state sync (standard) +- `broadcast::channel` for real-time output events (appropriate) + +**Minor deviations:** +- The `Dashboard` struct directly holds `StateStore` (SQLite connection). Ratatui best practice is to keep the state store behind an `Arc>` to allow background updates. Currently the TUI owns the DB exclusively, which blocks adding a background metrics refresh task. +- No `Clear` widget usage when rendering the help overlay — could cause rendering artifacts on some terminals. + +## 9. Risk Assessment + +| Risk | Likelihood | Impact | Mitigation | +|------|-----------|--------|------------| +| Dashboard file exceeds 1500 lines (projected) | High | Medium | At 1,273 lines currently (Section 2); extract panes into modules before it grows further | +| SQLite lock contention | Low | High | DbWriter pattern already handles this | +| No agent diversity | Medium | Medium | Pluggable agent support | +| Task-string handling assumptions drift over time | Medium | Medium | Keep `Command` argument handling shell-free, document the threat model, and add regression tests for metacharacter-heavy task input | + +--- + +**Bottom line:** ECC2 is a well-structured Rust project with clean error handling, good separation of concerns, and strong security features (risk scoring). The main gaps are incomplete features (comms, new-session dialog, single agent) rather than architectural problems. The codebase is ready for feature work on top of the solid foundation. diff --git a/rules/common/code-review.md b/rules/common/code-review.md new file mode 100644 index 00000000..d79ba9bf --- /dev/null +++ b/rules/common/code-review.md @@ -0,0 +1,124 @@ +# Code Review Standards + +## Purpose + +Code review ensures quality, security, and maintainability before code is merged. This rule defines when and how to conduct code reviews. + +## When to Review + +**MANDATORY review triggers:** + +- After writing or modifying code +- Before any commit to shared branches +- When security-sensitive code is changed (auth, payments, user data) +- When architectural changes are made +- Before merging pull requests + +**Pre-Review Requirements:** + +Before requesting review, ensure: + +- All automated checks (CI/CD) are passing +- Merge conflicts are resolved +- Branch is up to date with target branch + +## Review Checklist + +Before marking code complete: + +- [ ] Code is readable and well-named +- [ ] Functions are focused (<50 lines) +- [ ] Files are cohesive (<800 lines) +- [ ] No deep nesting (>4 levels) +- [ ] Errors are handled explicitly +- [ ] No hardcoded secrets or credentials +- [ ] No console.log or debug statements +- [ ] Tests exist for new functionality +- [ ] Test coverage meets 80% minimum + +## Security Review Triggers + +**STOP and use security-reviewer agent when:** + +- Authentication or authorization code +- User input handling +- Database queries +- File system operations +- External API calls +- Cryptographic operations +- Payment or financial code + +## Review Severity Levels + +| Level | Meaning | Action | +|-------|---------|--------| +| CRITICAL | Security vulnerability or data loss risk | **BLOCK** - Must fix before merge | +| HIGH | Bug or significant quality issue | **WARN** - Should fix before merge | +| MEDIUM | Maintainability concern | **INFO** - Consider fixing | +| LOW | Style or minor suggestion | **NOTE** - Optional | + +## Agent Usage + +Use these agents for code review: + +| Agent | Purpose | +|-------|---------| +| **code-reviewer** | General code quality, patterns, best practices | +| **security-reviewer** | Security vulnerabilities, OWASP Top 10 | +| **typescript-reviewer** | TypeScript/JavaScript specific issues | +| **python-reviewer** | Python specific issues | +| **go-reviewer** | Go specific issues | +| **rust-reviewer** | Rust specific issues | + +## Review Workflow + +``` +1. Run git diff to understand changes +2. Check security checklist first +3. Review code quality checklist +4. Run relevant tests +5. Verify coverage >= 80% +6. Use appropriate agent for detailed review +``` + +## Common Issues to Catch + +### Security + +- Hardcoded credentials (API keys, passwords, tokens) +- SQL injection (string concatenation in queries) +- XSS vulnerabilities (unescaped user input) +- Path traversal (unsanitized file paths) +- CSRF protection missing +- Authentication bypasses + +### Code Quality + +- Large functions (>50 lines) - split into smaller +- Large files (>800 lines) - extract modules +- Deep nesting (>4 levels) - use early returns +- Missing error handling - handle explicitly +- Mutation patterns - prefer immutable operations +- Missing tests - add test coverage + +### Performance + +- N+1 queries - use JOINs or batching +- Missing pagination - add LIMIT to queries +- Unbounded queries - add constraints +- Missing caching - cache expensive operations + +## Approval Criteria + +- **Approve**: No CRITICAL or HIGH issues +- **Warning**: Only HIGH issues (merge with caution) +- **Block**: CRITICAL issues found + +## Integration with Other Rules + +This rule works with: + +- [testing.md](testing.md) - Test coverage requirements +- [security.md](security.md) - Security checklist +- [git-workflow.md](git-workflow.md) - Commit standards +- [agents.md](agents.md) - Agent delegation diff --git a/rules/common/development-workflow.md b/rules/common/development-workflow.md index d97c1b1d..ae070be2 100644 --- a/rules/common/development-workflow.md +++ b/rules/common/development-workflow.md @@ -36,3 +36,9 @@ The Feature Implementation Workflow describes the development pipeline: research - Detailed commit messages - Follow conventional commits format - See [git-workflow.md](./git-workflow.md) for commit message format and PR process + +5. **Pre-Review Checks** + - Verify all automated checks (CI/CD) are passing + - Resolve any merge conflicts + - Ensure branch is up to date with target branch + - Only request review after these checks pass diff --git a/rules/zh/README.md b/rules/zh/README.md new file mode 100644 index 00000000..35baaf64 --- /dev/null +++ b/rules/zh/README.md @@ -0,0 +1,108 @@ +# 规则 + +## 结构 + +规则按**通用**层和**语言特定**目录组织: + +``` +rules/ +├── common/ # 语言无关的原则(始终安装) +│ ├── coding-style.md +│ ├── git-workflow.md +│ ├── testing.md +│ ├── performance.md +│ ├── patterns.md +│ ├── hooks.md +│ ├── agents.md +│ ├── security.md +│ ├── code-review.md +│ └── development-workflow.md +├── zh/ # 中文翻译版本 +│ ├── coding-style.md +│ ├── git-workflow.md +│ ├── testing.md +│ ├── performance.md +│ ├── patterns.md +│ ├── hooks.md +│ ├── agents.md +│ ├── security.md +│ ├── code-review.md +│ └── development-workflow.md +├── typescript/ # TypeScript/JavaScript 特定 +├── python/ # Python 特定 +├── golang/ # Go 特定 +├── swift/ # Swift 特定 +└── php/ # PHP 特定 +``` + +- **common/** 包含通用原则 — 无语言特定的代码示例。 +- **zh/** 包含 common 目录的中文翻译版本。 +- **语言目录** 扩展通用规则,包含框架特定的模式、工具和代码示例。每个文件引用其对应的通用版本。 + +## 安装 + +### 选项 1:安装脚本(推荐) + +```bash +# 安装通用 + 一个或多个语言特定的规则集 +./install.sh typescript +./install.sh python +./install.sh golang +./install.sh swift +./install.sh php + +# 同时安装多种语言 +./install.sh typescript python +``` + +### 选项 2:手动安装 + +> **重要提示:** 复制整个目录 — 不要使用 `/*` 展开。 +> 通用和语言特定目录包含同名文件。 +> 将它们展开到一个目录会导致语言特定文件覆盖通用规则, +> 并破坏语言特定文件使用的 `../common/` 相对引用。 + +```bash +# 创建目标目录 +mkdir -p ~/.claude/rules + +# 安装通用规则(所有项目必需) +cp -r rules/common ~/.claude/rules/common + +# 安装中文翻译版本(可选) +cp -r rules/zh ~/.claude/rules/zh + +# 根据项目技术栈安装语言特定规则 +cp -r rules/typescript ~/.claude/rules/typescript +cp -r rules/python ~/.claude/rules/python +cp -r rules/golang ~/.claude/rules/golang +cp -r rules/swift ~/.claude/rules/swift +cp -r rules/php ~/.claude/rules/php +``` + +## 规则 vs 技能 + +- **规则** 定义广泛适用的标准、约定和检查清单(如"80% 测试覆盖率"、"禁止硬编码密钥")。 +- **技能**(`skills/` 目录)为特定任务提供深入、可操作的参考材料(如 `python-patterns`、`golang-testing`)。 + +语言特定的规则文件在适当的地方引用相关技能。规则告诉你*做什么*;技能告诉你*怎么做*。 + +## 规则优先级 + +当语言特定规则与通用规则冲突时,**语言特定规则优先**(特定覆盖通用)。这遵循标准的分层配置模式(类似于 CSS 特异性或 `.gitignore` 优先级)。 + +- `rules/common/` 定义适用于所有项目的通用默认值。 +- `rules/golang/`、`rules/python/`、`rules/swift/`、`rules/php/`、`rules/typescript/` 等在语言习惯不同时覆盖这些默认值。 +- `rules/zh/` 是通用规则的中文翻译,与英文版本内容一致。 + +### 示例 + +`common/coding-style.md` 推荐不可变性作为默认原则。语言特定的 `golang/coding-style.md` 可以覆盖这一点: + +> 惯用的 Go 使用指针接收器进行结构体变更 — 参见 [common/coding-style.md](../common/coding-style.md) 了解通用原则,但这里首选符合 Go 习惯的变更方式。 + +### 带覆盖说明的通用规则 + +`rules/common/` 中可能被语言特定文件覆盖的规则会被标记: + +> **语言说明**:此规则可能会被语言特定规则覆盖;对于某些语言,该模式可能并不符合惯用写法。 diff --git a/rules/zh/agents.md b/rules/zh/agents.md new file mode 100644 index 00000000..3723d4b4 --- /dev/null +++ b/rules/zh/agents.md @@ -0,0 +1,50 @@ +# 代理编排 + +## 可用代理 + +位于 `~/.claude/agents/`: + +| 代理 | 用途 | 何时使用 | +|-------|---------|------------| +| planner | 实现规划 | 复杂功能、重构 | +| architect | 系统设计 | 架构决策 | +| tdd-guide | 测试驱动开发 | 新功能、bug 修复 | +| code-reviewer | 代码审查 | 编写代码后 | +| security-reviewer | 安全分析 | 提交前 | +| build-error-resolver | 修复构建错误 | 构建失败时 | +| e2e-runner | E2E 测试 | 关键用户流程 | +| refactor-cleaner | 死代码清理 | 代码维护 | +| doc-updater | 文档 | 更新文档 | +| rust-reviewer | Rust 代码审查 | Rust 项目 | + +## 立即使用代理 + +无需用户提示: +1. 复杂功能请求 - 使用 **planner** 代理 +2. 刚编写/修改的代码 - 使用 **code-reviewer** 代理 +3. Bug 修复或新功能 - 使用 **tdd-guide** 代理 +4. 架构决策 - 使用 **architect** 代理 + +## 并行任务执行 + +对独立操作始终使用并行 Task 执行: + +```markdown +# 好:并行执行 +同时启动 3 个代理: +1. 代理 1:认证模块安全分析 +2. 代理 2:缓存系统性能审查 +3. 代理 3:工具类型检查 + +# 坏:不必要的顺序 +先代理 1,然后代理 2,然后代理 3 +``` + +## 多视角分析 + +对于复杂问题,使用分角色子代理: +- 事实审查者 +- 高级工程师 +- 安全专家 +- 一致性审查者 +- 冗余检查者 diff --git a/rules/zh/code-review.md b/rules/zh/code-review.md new file mode 100644 index 00000000..bb4c228c --- /dev/null +++ b/rules/zh/code-review.md @@ -0,0 +1,124 @@ +# 代码审查标准 + +## 目的 + +代码审查确保代码合并前的质量、安全性和可维护性。此规则定义何时以及如何进行代码审查。 + +## 何时审查 + +**强制审查触发条件:** + +- 编写或修改代码后 +- 提交到共享分支之前 +- 更改安全敏感代码时(认证、支付、用户数据) +- 进行架构更改时 +- 合并 pull request 之前 + +**审查前要求:** + +在请求审查之前,确保: + +- 所有自动化检查(CI/CD)已通过 +- 合并冲突已解决 +- 分支已与目标分支同步 + +## 审查检查清单 + +在标记代码完成之前: + +- [ ] 代码可读且命名良好 +- [ ] 函数聚焦(<50 行) +- [ ] 文件内聚(<800 行) +- [ ] 无深层嵌套(>4 层) +- [ ] 错误显式处理 +- [ ] 无硬编码密钥或凭据 +- [ ] 无 console.log 或调试语句 +- [ ] 新功能有测试 +- [ ] 测试覆盖率满足 80% 最低要求 + +## 安全审查触发条件 + +**停止并使用 security-reviewer 代理当:** + +- 认证或授权代码 +- 用户输入处理 +- 数据库查询 +- 文件系统操作 +- 外部 API 调用 +- 加密操作 +- 支付或金融代码 + +## 审查严重级别 + +| 级别 | 含义 | 行动 | +|-------|---------|--------| +| CRITICAL(关键) | 安全漏洞或数据丢失风险 | **阻止** - 合并前必须修复 | +| HIGH(高) | Bug 或重大质量问题 | **警告** - 合并前应修复 | +| MEDIUM(中) | 可维护性问题 | **信息** - 考虑修复 | +| LOW(低) | 风格或次要建议 | **注意** - 可选 | + +## 代理使用 + +使用这些代理进行代码审查: + +| 代理 | 用途 | +|-------|--------| +| **code-reviewer** | 通用代码质量、模式、最佳实践 | +| **security-reviewer** | 安全漏洞、OWASP Top 10 | +| **typescript-reviewer** | TypeScript/JavaScript 特定问题 | +| **python-reviewer** | Python 特定问题 | +| **go-reviewer** | Go 特定问题 | +| **rust-reviewer** | Rust 特定问题 | + +## 审查工作流 + +``` +1. 运行 git diff 了解更改 +2. 先检查安全检查清单 +3. 审查代码质量检查清单 +4. 运行相关测试 +5. 验证覆盖率 >= 80% +6. 使用适当的代理进行详细审查 +``` + +## 常见问题捕获 + +### 安全 + +- 硬编码凭据(API 密钥、密码、令牌) +- SQL 注入(查询中的字符串拼接) +- XSS 漏洞(未转义的用户输入) +- 路径遍历(未净化的文件路径) +- CSRF 保护缺失 +- 认证绕过 + +### 代码质量 + +- 大函数(>50 行)- 拆分为更小的 +- 大文件(>800 行)- 提取模块 +- 深层嵌套(>4 层)- 使用提前返回 +- 缺少错误处理 - 显式处理 +- 变更模式 - 优先使用不可变操作 +- 缺少测试 - 添加测试覆盖 + +### 性能 + +- N+1 查询 - 使用 JOIN 或批处理 +- 缺少分页 - 给查询添加 LIMIT +- 无界查询 - 添加约束 +- 缺少缓存 - 缓存昂贵操作 + +## 批准标准 + +- **批准**:无关键或高优先级问题 +- **警告**:仅有高优先级问题(谨慎合并) +- **阻止**:发现关键问题 + +## 与其他规则的集成 + +此规则与以下规则配合: + +- [testing.md](testing.md) - 测试覆盖率要求 +- [security.md](security.md) - 安全检查清单 +- [git-workflow.md](git-workflow.md) - 提交标准 +- [agents.md](agents.md) - 代理委托 diff --git a/rules/zh/coding-style.md b/rules/zh/coding-style.md new file mode 100644 index 00000000..e20a609e --- /dev/null +++ b/rules/zh/coding-style.md @@ -0,0 +1,48 @@ +# 编码风格 + +## 不可变性(关键) + +始终创建新对象,永远不要修改现有对象: + +``` +// 伪代码 +错误: modify(original, field, value) → 就地修改 original +正确: update(original, field, value) → 返回带有更改的新副本 +``` + +原理:不可变数据防止隐藏的副作用,使调试更容易,并启用安全的并发。 + +## 文件组织 + +多个小文件 > 少量大文件: +- 高内聚,低耦合 +- 典型 200-400 行,最多 800 行 +- 从大模块中提取工具函数 +- 按功能/领域组织,而非按类型 + +## 错误处理 + +始终全面处理错误: +- 在每一层显式处理错误 +- 在面向 UI 的代码中提供用户友好的错误消息 +- 在服务器端记录详细的错误上下文 +- 永远不要静默吞掉错误 + +## 输入验证 + +始终在系统边界验证: +- 处理前验证所有用户输入 +- 在可用的情况下使用基于模式的验证 +- 快速失败并给出清晰的错误消息 +- 永远不要信任外部数据(API 响应、用户输入、文件内容) + +## 代码质量检查清单 + +在标记工作完成前: +- [ ] 代码可读且命名良好 +- [ ] 函数很小(<50 行) +- [ ] 文件聚焦(<800 行) +- [ ] 没有深层嵌套(>4 层) +- [ ] 正确的错误处理 +- [ ] 没有硬编码值(使用常量或配置) +- [ ] 没有变更(使用不可变模式) diff --git a/rules/zh/development-workflow.md b/rules/zh/development-workflow.md new file mode 100644 index 00000000..f0aa9785 --- /dev/null +++ b/rules/zh/development-workflow.md @@ -0,0 +1,44 @@ +# 开发工作流 + +> 此文件扩展 [common/git-workflow.md](./git-workflow.md),包含 git 操作之前的完整功能开发流程。 + +功能实现工作流描述了开发管道:研究、规划、TDD、代码审查,然后提交到 git。 + +## 功能实现工作流 + +0. **研究与重用** _(任何新实现前必需)_ + - **GitHub 代码搜索优先:** 在编写任何新代码之前,运行 `gh search repos` 和 `gh search code` 查找现有实现、模板和模式。 + - **库文档其次:** 使用 Context7 或主要供应商文档确认 API 行为、包使用和版本特定细节。 + - **仅当前两者不足时使用 Exa:** 在 GitHub 搜索和主要文档之后,使用 Exa 进行更广泛的网络研究或发现。 + - **检查包注册表:** 在编写工具代码之前搜索 npm、PyPI、crates.io 和其他注册表。首选久经考验的库而非手工编写的解决方案。 + - **搜索可适配的实现:** 寻找解决问题 80%+ 且可以分支、移植或包装的开源项目。 + - 当满足需求时,优先采用或移植经验证的方法而非从头编写新代码。 + +1. **先规划** + - 使用 **planner** 代理创建实现计划 + - 编码前生成规划文档:PRD、架构、系统设计、技术文档、任务列表 + - 识别依赖和风险 + - 分解为阶段 + +2. **TDD 方法** + - 使用 **tdd-guide** 代理 + - 先写测试(RED) + - 实现以通过测试(GREEN) + - 重构(IMPROVE) + - 验证 80%+ 覆盖率 + +3. **代码审查** + - 编写代码后立即使用 **code-reviewer** 代理 + - 解决关键和高优先级问题 + - 尽可能修复中优先级问题 + +4. **提交与推送** + - 详细的提交消息 + - 遵循约定式提交格式 + - 参见 [git-workflow.md](./git-workflow.md) 了解提交消息格式和 PR 流程 + +5. **审查前检查** + - 验证所有自动化检查(CI/CD)已通过 + - 解决任何合并冲突 + - 确保分支已与目标分支同步 + - 仅在这些检查通过后请求审查 diff --git a/rules/zh/git-workflow.md b/rules/zh/git-workflow.md new file mode 100644 index 00000000..50a4217f --- /dev/null +++ b/rules/zh/git-workflow.md @@ -0,0 +1,24 @@ +# Git 工作流 + +## 提交消息格式 +``` +<类型>: <描述> + +<可选正文> +``` + +类型:feat, fix, refactor, docs, test, chore, perf, ci + +注意:通过 ~/.claude/settings.json 全局禁用归属。 + +## Pull Request 工作流 + +创建 PR 时: +1. 分析完整提交历史(不仅是最新提交) +2. 使用 `git diff [base-branch]...HEAD` 查看所有更改 +3. 起草全面的 PR 摘要 +4. 包含带有 TODO 的测试计划 +5. 如果是新分支,使用 `-u` 标志推送 + +> 对于 git 操作之前的完整开发流程(规划、TDD、代码审查), +> 参见 [development-workflow.md](./development-workflow.md)。 diff --git a/rules/zh/hooks.md b/rules/zh/hooks.md new file mode 100644 index 00000000..e66383bc --- /dev/null +++ b/rules/zh/hooks.md @@ -0,0 +1,30 @@ +# 钩子系统 + +## 钩子类型 + +- **PreToolUse**:工具执行前(验证、参数修改) +- **PostToolUse**:工具执行后(自动格式化、检查) +- **Stop**:会话结束时(最终验证) + +## 自动接受权限 + +谨慎使用: +- 为可信、定义明确的计划启用 +- 探索性工作时禁用 +- 永远不要使用 dangerously-skip-permissions 标志 +- 改为在 `~/.claude.json` 中配置 `allowedTools` + +## TodoWrite 最佳实践 + +使用 TodoWrite 工具: +- 跟踪多步骤任务的进度 +- 验证对指令的理解 +- 启用实时引导 +- 显示细粒度的实现步骤 + +待办列表揭示: +- 顺序错误的步骤 +- 缺失的项目 +- 多余的不必要项目 +- 错误的粒度 +- 误解的需求 diff --git a/rules/zh/patterns.md b/rules/zh/patterns.md new file mode 100644 index 00000000..e39f245e --- /dev/null +++ b/rules/zh/patterns.md @@ -0,0 +1,31 @@ +# 常用模式 + +## 骨架项目 + +实现新功能时: +1. 搜索久经考验的骨架项目 +2. 使用并行代理评估选项: + - 安全性评估 + - 可扩展性分析 + - 相关性评分 + - 实现规划 +3. 克隆最佳匹配作为基础 +4. 在经验证的结构内迭代 + +## 设计模式 + +### 仓储模式 + +将数据访问封装在一致的接口后面: +- 定义标准操作:findAll、findById、create、update、delete +- 具体实现处理存储细节(数据库、API、文件等) +- 业务逻辑依赖抽象接口,而非存储机制 +- 便于轻松切换数据源,并简化使用模拟的测试 + +### API 响应格式 + +对所有 API 响应使用一致的信封: +- 包含成功/状态指示器 +- 包含数据负载(错误时可为空) +- 包含错误消息字段(成功时可为空) +- 包含分页响应的元数据(total、page、limit) diff --git a/rules/zh/performance.md b/rules/zh/performance.md new file mode 100644 index 00000000..11a2911c --- /dev/null +++ b/rules/zh/performance.md @@ -0,0 +1,55 @@ +# 性能优化 + +## 模型选择策略 + +**Haiku 4.5**(Sonnet 90% 的能力,3 倍成本节省): +- 频繁调用的轻量级代理 +- 结对编程和代码生成 +- 多代理系统中的工作者代理 + +**Sonnet 4.6**(最佳编码模型): +- 主要开发工作 +- 编排多代理工作流 +- 复杂编码任务 + +**Opus 4.5**(最深度推理): +- 复杂架构决策 +- 最大推理需求 +- 研究和分析任务 + +## 上下文窗口管理 + +避免在上下文窗口的最后 20% 进行以下操作: +- 大规模重构 +- 跨多个文件的功能实现 +- 调试复杂交互 + +上下文敏感度较低的任务: +- 单文件编辑 +- 独立工具创建 +- 文档更新 +- 简单 bug 修复 + +## 扩展思考 + 规划模式 + +扩展思考默认启用,为内部推理保留最多 31,999 个 token。 + +通过以下方式控制扩展思考: +- **切换**:Option+T(macOS)/ Alt+T(Windows/Linux) +- **配置**:在 `~/.claude/settings.json` 中设置 `alwaysThinkingEnabled` +- **预算上限**:`export MAX_THINKING_TOKENS=10000` +- **详细模式**:Ctrl+O 查看思考输出 + +对于需要深度推理的复杂任务: +1. 确保扩展思考已启用(默认开启) +2. 启用**规划模式**进行结构化方法 +3. 使用多轮审查进行彻底分析 +4. 使用分角色子代理获得多样化视角 + +## 构建排查 + +如果构建失败: +1. 使用 **build-error-resolver** 代理 +2. 分析错误消息 +3. 增量修复 +4. 每次修复后验证 diff --git a/rules/zh/security.md b/rules/zh/security.md new file mode 100644 index 00000000..3956a481 --- /dev/null +++ b/rules/zh/security.md @@ -0,0 +1,29 @@ +# 安全指南 + +## 强制安全检查 + +在任何提交之前: +- [ ] 无硬编码密钥(API 密钥、密码、令牌) +- [ ] 所有用户输入已验证 +- [ ] SQL 注入防护(参数化查询) +- [ ] XSS 防护(净化 HTML) +- [ ] CSRF 保护已启用 +- [ ] 认证/授权已验证 +- [ ] 所有端点启用速率限制 +- [ ] 错误消息不泄露敏感数据 + +## 密钥管理 + +- 永远不要在源代码中硬编码密钥 +- 始终使用环境变量或密钥管理器 +- 启动时验证所需的密钥是否存在 +- 轮换任何可能已暴露的密钥 + +## 安全响应协议 + +如果发现安全问题: +1. 立即停止 +2. 使用 **security-reviewer** 代理 +3. 在继续之前修复关键问题 +4. 轮换任何已暴露的密钥 +5. 审查整个代码库中的类似问题 diff --git a/rules/zh/testing.md b/rules/zh/testing.md new file mode 100644 index 00000000..cb899fa7 --- /dev/null +++ b/rules/zh/testing.md @@ -0,0 +1,29 @@ +# 测试要求 + +## 最低测试覆盖率:80% + +测试类型(全部必需): +1. **单元测试** - 单个函数、工具、组件 +2. **集成测试** - API 端点、数据库操作 +3. **E2E 测试** - 关键用户流程(框架根据语言选择) + +## 测试驱动开发 + +强制工作流: +1. 先写测试(RED) +2. 运行测试 - 应该失败 +3. 编写最小实现(GREEN) +4. 运行测试 - 应该通过 +5. 重构(IMPROVE) +6. 验证覆盖率(80%+) + +## 测试失败排查 + +1. 使用 **tdd-guide** 代理 +2. 检查测试隔离 +3. 验证模拟是否正确 +4. 修复实现,而非测试(除非测试有误) + +## 代理支持 + +- **tdd-guide** - 主动用于新功能,强制先写测试 diff --git a/scripts/catalog.js b/scripts/catalog.js new file mode 100644 index 00000000..2ee4d697 --- /dev/null +++ b/scripts/catalog.js @@ -0,0 +1,186 @@ +#!/usr/bin/env node + +const { + getInstallComponent, + listInstallComponents, + listInstallProfiles, +} = require('./lib/install-manifests'); + +const FAMILY_ALIASES = Object.freeze({ + baseline: 'baseline', + baselines: 'baseline', + language: 'language', + languages: 'language', + lang: 'language', + framework: 'framework', + frameworks: 'framework', + capability: 'capability', + capabilities: 'capability', + agent: 'agent', + agents: 'agent', + skill: 'skill', + skills: 'skill', +}); + +function showHelp(exitCode = 0) { + console.log(` +Discover ECC install components and profiles + +Usage: + node scripts/catalog.js profiles [--json] + node scripts/catalog.js components [--family ] [--target ] [--json] + node scripts/catalog.js show [--json] + +Examples: + node scripts/catalog.js profiles + node scripts/catalog.js components --family language + node scripts/catalog.js show framework:nextjs +`); + + process.exit(exitCode); +} + +function normalizeFamily(value) { + if (!value) { + return null; + } + + const normalized = String(value).trim().toLowerCase(); + return FAMILY_ALIASES[normalized] || normalized; +} + +function parseArgs(argv) { + const args = argv.slice(2); + const parsed = { + command: null, + componentId: null, + family: null, + target: null, + json: false, + help: false, + }; + + if (args.length === 0 || args[0] === '--help' || args[0] === '-h') { + parsed.help = true; + return parsed; + } + + parsed.command = args[0]; + + for (let index = 1; index < args.length; index += 1) { + const arg = args[index]; + + if (arg === '--help' || arg === '-h') { + parsed.help = true; + } else if (arg === '--json') { + parsed.json = true; + } else if (arg === '--family') { + if (!args[index + 1]) { + throw new Error('Missing value for --family'); + } + parsed.family = normalizeFamily(args[index + 1]); + index += 1; + } else if (arg === '--target') { + if (!args[index + 1]) { + throw new Error('Missing value for --target'); + } + parsed.target = args[index + 1]; + index += 1; + } else if (parsed.command === 'show' && !parsed.componentId) { + parsed.componentId = arg; + } else { + throw new Error(`Unknown argument: ${arg}`); + } + } + + return parsed; +} + +function printProfiles(profiles) { + console.log('Install profiles:\n'); + for (const profile of profiles) { + console.log(`- ${profile.id} (${profile.moduleCount} modules)`); + console.log(` ${profile.description}`); + } +} + +function printComponents(components) { + console.log('Install components:\n'); + for (const component of components) { + console.log(`- ${component.id} [${component.family}]`); + console.log(` targets=${component.targets.join(', ')} modules=${component.moduleIds.join(', ')}`); + console.log(` ${component.description}`); + } +} + +function printComponent(component) { + console.log(`Install component: ${component.id}\n`); + console.log(`Family: ${component.family}`); + console.log(`Targets: ${component.targets.join(', ')}`); + console.log(`Modules: ${component.moduleIds.join(', ')}`); + console.log(`Description: ${component.description}`); + + if (component.modules.length > 0) { + console.log('\nResolved modules:'); + for (const module of component.modules) { + console.log(`- ${module.id} [${module.kind}]`); + console.log( + ` targets=${module.targets.join(', ')} default=${module.defaultInstall} cost=${module.cost} stability=${module.stability}` + ); + console.log(` ${module.description}`); + } + } +} + +function main() { + try { + const options = parseArgs(process.argv); + + if (options.help) { + showHelp(0); + } + + if (options.command === 'profiles') { + const profiles = listInstallProfiles(); + if (options.json) { + console.log(JSON.stringify({ profiles }, null, 2)); + } else { + printProfiles(profiles); + } + return; + } + + if (options.command === 'components') { + const components = listInstallComponents({ + family: options.family, + target: options.target, + }); + if (options.json) { + console.log(JSON.stringify({ components }, null, 2)); + } else { + printComponents(components); + } + return; + } + + if (options.command === 'show') { + if (!options.componentId) { + throw new Error('Catalog show requires an install component ID'); + } + const component = getInstallComponent(options.componentId); + if (options.json) { + console.log(JSON.stringify(component, null, 2)); + } else { + printComponent(component); + } + return; + } + + throw new Error(`Unknown catalog command: ${options.command}`); + } catch (error) { + console.error(`Error: ${error.message}`); + process.exit(1); + } +} + +main(); diff --git a/scripts/codex/check-codex-global-state.sh b/scripts/codex/check-codex-global-state.sh old mode 100644 new mode 100755 index f0c2242c..5836cd18 --- a/scripts/codex/check-codex-global-state.sh +++ b/scripts/codex/check-codex-global-state.sh @@ -11,7 +11,7 @@ CODEX_HOME="${CODEX_HOME:-$HOME/.codex}" CONFIG_FILE="$CODEX_HOME/config.toml" AGENTS_FILE="$CODEX_HOME/AGENTS.md" PROMPTS_DIR="$CODEX_HOME/prompts" -SKILLS_DIR="$CODEX_HOME/skills" +SKILLS_DIR="${AGENTS_HOME:-$HOME/.agents}/skills" HOOKS_DIR_EXPECT="${ECC_GLOBAL_HOOKS_DIR:-$CODEX_HOME/git-hooks}" failures=0 @@ -89,7 +89,13 @@ fi if [[ -f "$CONFIG_FILE" ]]; then check_config_pattern '^multi_agent\s*=\s*true' "multi_agent is enabled" check_config_absent '^\s*collab\s*=' "deprecated collab flag is absent" - check_config_pattern '^persistent_instructions\s*=' "persistent_instructions is configured" + # persistent_instructions is recommended but optional; warn instead of fail + # so users who rely on AGENTS.md alone are not blocked (#967). + if rg -n '^[[:space:]]*persistent_instructions\s*=' "$CONFIG_FILE" >/dev/null 2>&1; then + ok "persistent_instructions is configured" + else + warn "persistent_instructions is not set (recommended but optional)" + fi check_config_pattern '^\[profiles\.strict\]' "profiles.strict exists" check_config_pattern '^\[profiles\.yolo\]' "profiles.yolo exists" @@ -97,7 +103,7 @@ if [[ -f "$CONFIG_FILE" ]]; then 'mcp_servers.github' \ 'mcp_servers.memory' \ 'mcp_servers.sequential-thinking' \ - 'mcp_servers.context7-mcp' + 'mcp_servers.context7' do if rg -n "^\[$section\]" "$CONFIG_FILE" >/dev/null 2>&1; then ok "MCP section [$section] exists" @@ -106,10 +112,10 @@ if [[ -f "$CONFIG_FILE" ]]; then fi done - if rg -n '^\[mcp_servers\.context7\]' "$CONFIG_FILE" >/dev/null 2>&1; then - warn "Duplicate [mcp_servers.context7] exists (context7-mcp is preferred)" + if rg -n '^\[mcp_servers\.context7-mcp\]' "$CONFIG_FILE" >/dev/null 2>&1; then + warn "Legacy [mcp_servers.context7-mcp] exists (context7 is preferred)" else - ok "No duplicate [mcp_servers.context7] section" + ok "No legacy [mcp_servers.context7-mcp] section" fi fi @@ -144,12 +150,12 @@ if [[ -d "$SKILLS_DIR" ]]; then done if [[ "$missing_skills" -eq 0 ]]; then - ok "All 16 ECC Codex skills are present" + ok "All 16 ECC skills are present in $SKILLS_DIR" else - fail "$missing_skills required skills are missing" + warn "$missing_skills ECC skills missing from $SKILLS_DIR (install via ECC installer or npx skills)" fi else - fail "Skills directory missing ($SKILLS_DIR)" + warn "Skills directory missing ($SKILLS_DIR) — install via ECC installer or npx skills" fi if [[ -f "$PROMPTS_DIR/ecc-prompts-manifest.txt" ]]; then diff --git a/scripts/codex/install-global-git-hooks.sh b/scripts/codex/install-global-git-hooks.sh old mode 100644 new mode 100755 diff --git a/scripts/codex/merge-mcp-config.js b/scripts/codex/merge-mcp-config.js index c75710b7..38138dad 100644 --- a/scripts/codex/merge-mcp-config.js +++ b/scripts/codex/merge-mcp-config.js @@ -83,20 +83,23 @@ function dlxServer(name, pkg, extraFields, extraToml) { } /** Each entry: key = section name under mcp_servers, value = { toml, fields } */ +const DEFAULT_MCP_STARTUP_TIMEOUT_SEC = 30; +const DEFAULT_MCP_STARTUP_TIMEOUT_TOML = `startup_timeout_sec = ${DEFAULT_MCP_STARTUP_TIMEOUT_SEC}`; + const ECC_SERVERS = { supabase: dlxServer('supabase', '@supabase/mcp-server-supabase@latest', { startup_timeout_sec: 20.0, tool_timeout_sec: 120.0 }, 'startup_timeout_sec = 20.0\ntool_timeout_sec = 120.0'), - playwright: dlxServer('playwright', '@playwright/mcp@latest'), - 'context7-mcp': dlxServer('context7-mcp', '@upstash/context7-mcp'), + playwright: dlxServer('playwright', '@playwright/mcp@latest', { startup_timeout_sec: DEFAULT_MCP_STARTUP_TIMEOUT_SEC }, DEFAULT_MCP_STARTUP_TIMEOUT_TOML), + context7: dlxServer('context7', '@upstash/context7-mcp@latest', { startup_timeout_sec: DEFAULT_MCP_STARTUP_TIMEOUT_SEC }, DEFAULT_MCP_STARTUP_TIMEOUT_TOML), exa: { fields: { url: 'https://mcp.exa.ai/mcp' }, toml: `[mcp_servers.exa]\nurl = "https://mcp.exa.ai/mcp"` }, github: { - fields: { command: 'bash', args: ['-lc', GH_BOOTSTRAP] }, - toml: `[mcp_servers.github]\ncommand = "bash"\nargs = ["-lc", ${JSON.stringify(GH_BOOTSTRAP)}]` + fields: { command: 'bash', args: ['-lc', GH_BOOTSTRAP], startup_timeout_sec: DEFAULT_MCP_STARTUP_TIMEOUT_SEC }, + toml: `[mcp_servers.github]\ncommand = "bash"\nargs = ["-lc", ${JSON.stringify(GH_BOOTSTRAP)}]\n${DEFAULT_MCP_STARTUP_TIMEOUT_TOML}` }, - memory: dlxServer('memory', '@modelcontextprotocol/server-memory'), - 'sequential-thinking': dlxServer('sequential-thinking', '@modelcontextprotocol/server-sequential-thinking') + memory: dlxServer('memory', '@modelcontextprotocol/server-memory', { startup_timeout_sec: DEFAULT_MCP_STARTUP_TIMEOUT_SEC }, DEFAULT_MCP_STARTUP_TIMEOUT_TOML), + 'sequential-thinking': dlxServer('sequential-thinking', '@modelcontextprotocol/server-sequential-thinking', { startup_timeout_sec: DEFAULT_MCP_STARTUP_TIMEOUT_SEC }, DEFAULT_MCP_STARTUP_TIMEOUT_TOML) }; // Append --features arg for supabase after dlxServer builds the base @@ -104,9 +107,9 @@ ECC_SERVERS.supabase.fields.args.push('--features=account,docs,database,debuggin ECC_SERVERS.supabase.toml = ECC_SERVERS.supabase.toml.replace(/^(args = \[.*)\]$/m, '$1, "--features=account,docs,database,debugging,development,functions,storage,branching"]'); // Legacy section names that should be treated as an existing ECC server. -// e.g. old configs shipped [mcp_servers.context7] instead of [mcp_servers.context7-mcp]. +// e.g. older configs shipped [mcp_servers.context7-mcp] instead of [mcp_servers.context7]. const LEGACY_ALIASES = { - 'context7-mcp': ['context7'] + context7: ['context7-mcp'] }; // --------------------------------------------------------------------------- @@ -254,6 +257,10 @@ function main() { if (resolvedLabel !== name) { raw = removeServerFromText(raw, name, existing); } + if (legacyName && hasCanonical) { + toRemoveLog.push(`mcp_servers.${legacyName}`); + raw = removeServerFromText(raw, legacyName, existing); + } toAppend.push(spec.toml); } else { // Add-only mode: skip, but warn about drift diff --git a/scripts/doctor.js b/scripts/doctor.js index 0da3ff74..4341315d 100644 --- a/scripts/doctor.js +++ b/scripts/doctor.js @@ -1,5 +1,6 @@ #!/usr/bin/env node +const os = require('os'); const { buildDoctorReport } = require('./lib/install-lifecycle'); const { SUPPORTED_INSTALL_TARGETS } = require('./lib/install-manifests'); @@ -88,7 +89,7 @@ function main() { const report = buildDoctorReport({ repoRoot: require('path').join(__dirname, '..'), - homeDir: process.env.HOME, + homeDir: process.env.HOME || os.homedir(), projectRoot: process.cwd(), targets: options.targets, }); diff --git a/scripts/ecc.js b/scripts/ecc.js old mode 100644 new mode 100755 index 472ba616..50f46908 --- a/scripts/ecc.js +++ b/scripts/ecc.js @@ -13,6 +13,10 @@ const COMMANDS = { script: 'install-plan.js', description: 'Inspect selective-install manifests and resolved plans', }, + catalog: { + script: 'catalog.js', + description: 'Discover install profiles and component IDs', + }, 'install-plan': { script: 'install-plan.js', description: 'Alias for plan', @@ -50,6 +54,7 @@ const COMMANDS = { const PRIMARY_COMMANDS = [ 'install', 'plan', + 'catalog', 'list-installed', 'doctor', 'repair', @@ -79,6 +84,9 @@ Examples: ecc typescript ecc install --profile developer --target claude ecc plan --profile core --target cursor + ecc catalog profiles + ecc catalog components --family language + ecc catalog show framework:nextjs ecc list-installed --json ecc doctor --target cursor ecc repair --dry-run diff --git a/scripts/hooks/pre-bash-commit-quality.js b/scripts/hooks/pre-bash-commit-quality.js new file mode 100644 index 00000000..10e2d589 --- /dev/null +++ b/scripts/hooks/pre-bash-commit-quality.js @@ -0,0 +1,405 @@ +#!/usr/bin/env node +/** + * PreToolUse Hook: Pre-commit Quality Check + * + * Runs quality checks before git commit commands: + * - Detects staged files + * - Runs linter on staged files (if available) + * - Checks for common issues (console.log, TODO, etc.) + * - Validates commit message format (if provided) + * + * Cross-platform (Windows, macOS, Linux) + * + * Exit codes: + * 0 - Success (allow commit) + * 2 - Block commit (quality issues found) + */ + +const { spawnSync } = require('child_process'); +const path = require('path'); +const fs = require('fs'); + +const MAX_STDIN = 1024 * 1024; // 1MB limit + +/** + * Detect staged files for commit + * @returns {string[]} Array of staged file paths + */ +function getStagedFiles() { + const result = spawnSync('git', ['diff', '--cached', '--name-only', '--diff-filter=ACMR'], { + encoding: 'utf8', + stdio: ['pipe', 'pipe', 'pipe'] + }); + if (result.status !== 0) { + return []; + } + return result.stdout.trim().split('\n').filter(f => f.length > 0); +} + +function getStagedFileContent(filePath) { + const result = spawnSync('git', ['show', `:${filePath}`], { + encoding: 'utf8', + stdio: ['pipe', 'pipe', 'pipe'] + }); + if (result.status !== 0) { + return null; + } + return result.stdout; +} + +/** + * Check if a file should be quality-checked + * @param {string} filePath + * @returns {boolean} + */ +function shouldCheckFile(filePath) { + const checkableExtensions = ['.js', '.jsx', '.ts', '.tsx', '.py', '.go', '.rs']; + return checkableExtensions.some(ext => filePath.endsWith(ext)); +} + +/** + * Find issues in file content + * @param {string} filePath + * @returns {object[]} Array of issues found + */ +function findFileIssues(filePath) { + const issues = []; + + try { + const content = getStagedFileContent(filePath); + if (content == null) { + return issues; + } + const lines = content.split('\n'); + + lines.forEach((line, index) => { + const lineNum = index + 1; + + // Check for console.log + if (line.includes('console.log') && !line.trim().startsWith('//') && !line.trim().startsWith('*')) { + issues.push({ + type: 'console.log', + message: `console.log found at line ${lineNum}`, + line: lineNum, + severity: 'warning' + }); + } + + // Check for debugger statements + if (/\bdebugger\b/.test(line) && !line.trim().startsWith('//')) { + issues.push({ + type: 'debugger', + message: `debugger statement at line ${lineNum}`, + line: lineNum, + severity: 'error' + }); + } + + // Check for TODO/FIXME without issue reference + const todoMatch = line.match(/\/\/\s*(TODO|FIXME):?\s*(.+)/); + if (todoMatch && !todoMatch[2].match(/#\d+|issue/i)) { + issues.push({ + type: 'todo', + message: `TODO/FIXME without issue reference at line ${lineNum}: "${todoMatch[2].trim()}"`, + line: lineNum, + severity: 'info' + }); + } + + // Check for hardcoded secrets (basic patterns) + const secretPatterns = [ + { pattern: /sk-[a-zA-Z0-9]{20,}/, name: 'OpenAI API key' }, + { pattern: /ghp_[a-zA-Z0-9]{36}/, name: 'GitHub PAT' }, + { pattern: /AKIA[A-Z0-9]{16}/, name: 'AWS Access Key' }, + { pattern: /api[_-]?key\s*[=:]\s*['"][^'"]+['"]/i, name: 'API key' } + ]; + + for (const { pattern, name } of secretPatterns) { + if (pattern.test(line)) { + issues.push({ + type: 'secret', + message: `Potential ${name} exposed at line ${lineNum}`, + line: lineNum, + severity: 'error' + }); + } + } + }); + } catch { + // File not readable, skip + } + + return issues; +} + +/** + * Validate commit message format + * @param {string} command + * @returns {object|null} Validation result or null if no message to validate + */ +function validateCommitMessage(command) { + // Extract commit message from command + const messageMatch = command.match(/(?:-m|--message)[=\s]+["']?([^"']+)["']?/); + if (!messageMatch) return null; + + const message = messageMatch[1]; + const issues = []; + + // Check conventional commit format + const conventionalCommit = /^(feat|fix|docs|style|refactor|test|chore|build|ci|perf|revert)(\(.+\))?:\s*.+/; + if (!conventionalCommit.test(message)) { + issues.push({ + type: 'format', + message: 'Commit message does not follow conventional commit format', + suggestion: 'Use format: type(scope): description (e.g., "feat(auth): add login flow")' + }); + } + + // Check message length + if (message.length > 72) { + issues.push({ + type: 'length', + message: `Commit message too long (${message.length} chars, max 72)`, + suggestion: 'Keep the first line under 72 characters' + }); + } + + // Check for lowercase first letter (conventional) + if (conventionalCommit.test(message)) { + const afterColon = message.split(':')[1]; + if (afterColon && /^[A-Z]/.test(afterColon.trim())) { + issues.push({ + type: 'capitalization', + message: 'Subject should start with lowercase after type', + suggestion: 'Use lowercase for the first letter of the subject' + }); + } + } + + // Check for trailing period + if (message.endsWith('.')) { + issues.push({ + type: 'punctuation', + message: 'Commit message should not end with a period', + suggestion: 'Remove the trailing period' + }); + } + + return { message, issues }; +} + +/** + * Run linter on staged files + * @param {string[]} files + * @returns {object} Lint results + */ +function runLinter(files) { + const jsFiles = files.filter(f => /\.(js|jsx|ts|tsx)$/.test(f)); + const pyFiles = files.filter(f => f.endsWith('.py')); + const goFiles = files.filter(f => f.endsWith('.go')); + + const results = { + eslint: null, + pylint: null, + golint: null + }; + + // Run ESLint if available + if (jsFiles.length > 0) { + const eslintBin = process.platform === 'win32' ? 'eslint.cmd' : 'eslint'; + const eslintPath = path.join(process.cwd(), 'node_modules', '.bin', eslintBin); + if (fs.existsSync(eslintPath)) { + const result = spawnSync(eslintPath, ['--format', 'compact', ...jsFiles], { + encoding: 'utf8', + stdio: ['pipe', 'pipe', 'pipe'], + timeout: 30000 + }); + results.eslint = { + success: result.status === 0, + output: result.stdout || result.stderr + }; + } + } + + // Run Pylint if available + if (pyFiles.length > 0) { + try { + const result = spawnSync('pylint', ['--output-format=text', ...pyFiles], { + encoding: 'utf8', + stdio: ['pipe', 'pipe', 'pipe'], + timeout: 30000 + }); + if (result.error && result.error.code === 'ENOENT') { + results.pylint = null; + } else { + results.pylint = { + success: result.status === 0, + output: result.stdout || result.stderr + }; + } + } catch { + // Pylint not available + } + } + + // Run golint if available + if (goFiles.length > 0) { + try { + const result = spawnSync('golint', goFiles, { + encoding: 'utf8', + stdio: ['pipe', 'pipe', 'pipe'], + timeout: 30000 + }); + if (result.error && result.error.code === 'ENOENT') { + results.golint = null; + } else { + results.golint = { + success: !result.stdout || result.stdout.trim() === '', + output: result.stdout + }; + } + } catch { + // golint not available + } + } + + return results; +} + +/** + * Core logic — exported for direct invocation + * @param {string} rawInput - Raw JSON string from stdin + * @returns {{output:string, exitCode:number}} Pass-through output and exit code + */ +function evaluate(rawInput) { + try { + const input = JSON.parse(rawInput); + const command = input.tool_input?.command || ''; + + // Only run for git commit commands + if (!command.includes('git commit')) { + return { output: rawInput, exitCode: 0 }; + } + + // Check if this is an amend (skip checks for amends to avoid blocking) + if (command.includes('--amend')) { + return { output: rawInput, exitCode: 0 }; + } + + // Get staged files + const stagedFiles = getStagedFiles(); + + if (stagedFiles.length === 0) { + console.error('[Hook] No staged files found. Use "git add" to stage files first.'); + return { output: rawInput, exitCode: 0 }; + } + + console.error(`[Hook] Checking ${stagedFiles.length} staged file(s)...`); + + // Check each staged file + const filesToCheck = stagedFiles.filter(shouldCheckFile); + let totalIssues = 0; + let errorCount = 0; + let warningCount = 0; + let infoCount = 0; + + for (const file of filesToCheck) { + const fileIssues = findFileIssues(file); + if (fileIssues.length > 0) { + console.error(`\n📁 ${file}`); + for (const issue of fileIssues) { + const icon = issue.severity === 'error' ? '❌' : issue.severity === 'warning' ? '⚠️' : 'ℹ️'; + console.error(` ${icon} Line ${issue.line}: ${issue.message}`); + totalIssues++; + if (issue.severity === 'error') errorCount++; + if (issue.severity === 'warning') warningCount++; + if (issue.severity === 'info') infoCount++; + } + } + } + + // Validate commit message if provided + const messageValidation = validateCommitMessage(command); + if (messageValidation && messageValidation.issues.length > 0) { + console.error('\n📝 Commit Message Issues:'); + for (const issue of messageValidation.issues) { + console.error(` ⚠️ ${issue.message}`); + if (issue.suggestion) { + console.error(` 💡 ${issue.suggestion}`); + } + totalIssues++; + warningCount++; + } + } + + // Run linter + const lintResults = runLinter(filesToCheck); + + if (lintResults.eslint && !lintResults.eslint.success) { + console.error('\n🔍 ESLint Issues:'); + console.error(lintResults.eslint.output); + totalIssues++; + errorCount++; + } + + if (lintResults.pylint && !lintResults.pylint.success) { + console.error('\n🔍 Pylint Issues:'); + console.error(lintResults.pylint.output); + totalIssues++; + errorCount++; + } + + if (lintResults.golint && !lintResults.golint.success) { + console.error('\n🔍 golint Issues:'); + console.error(lintResults.golint.output); + totalIssues++; + errorCount++; + } + + // Summary + if (totalIssues > 0) { + console.error(`\n📊 Summary: ${totalIssues} issue(s) found (${errorCount} error(s), ${warningCount} warning(s), ${infoCount} info)`); + + if (errorCount > 0) { + console.error('\n[Hook] ❌ Commit blocked due to critical issues. Fix them before committing.'); + return { output: rawInput, exitCode: 2 }; + } else { + console.error('\n[Hook] ⚠️ Warnings found. Consider fixing them, but commit is allowed.'); + console.error('[Hook] To bypass these checks, use: git commit --no-verify'); + } + } else { + console.error('\n[Hook] ✅ All checks passed!'); + } + + } catch (error) { + console.error(`[Hook] Error: ${error.message}`); + // Non-blocking on error + } + + return { output: rawInput, exitCode: 0 }; +} + +function run(rawInput) { + return evaluate(rawInput).output; +} + +// ── stdin entry point ──────────────────────────────────────────── +if (require.main === module) { + let data = ''; + process.stdin.setEncoding('utf8'); + + process.stdin.on('data', chunk => { + if (data.length < MAX_STDIN) { + const remaining = MAX_STDIN - data.length; + data += chunk.substring(0, remaining); + } + }); + + process.stdin.on('end', () => { + const result = evaluate(data); + process.stdout.write(result.output); + process.exit(result.exitCode); + }); +} + +module.exports = { run, evaluate }; diff --git a/scripts/install-apply.js b/scripts/install-apply.js old mode 100644 new mode 100755 index c9104511..e082c3bb --- a/scripts/install-apply.js +++ b/scripts/install-apply.js @@ -6,6 +6,7 @@ * target-specific mutation logic into testable Node code. */ +const os = require('os'); const { SUPPORTED_INSTALL_TARGETS, listLegacyCompatibilityLanguages, @@ -16,10 +17,10 @@ const { parseInstallArgs, } = require('./lib/install/request'); -function showHelp(exitCode = 0) { +function getHelpText() { const languages = listLegacyCompatibilityLanguages(); - console.log(` + return ` Usage: install.sh [--target <${LEGACY_INSTALL_TARGETS.join('|')}>] [--dry-run] [--json] [ ...] install.sh [--target <${SUPPORTED_INSTALL_TARGETS.join('|')}>] [--dry-run] [--json] --profile [--with ]... [--without ]... install.sh [--target <${SUPPORTED_INSTALL_TARGETS.join('|')}>] [--dry-run] [--json] --modules [--with ]... [--without ]... @@ -43,8 +44,11 @@ Options: Available languages: ${languages.map(language => ` - ${language}`).join('\n')} -`); +`; +} +function showHelp(exitCode = 0) { + console.log(getHelpText()); process.exit(exitCode); } @@ -100,19 +104,25 @@ function main() { showHelp(0); } - const { loadInstallConfig } = require('./lib/install/config'); + const { + findDefaultInstallConfigPath, + loadInstallConfig, + } = require('./lib/install/config'); const { applyInstallPlan } = require('./lib/install-executor'); const { createInstallPlanFromRequest } = require('./lib/install/runtime'); + const defaultConfigPath = options.configPath || options.languages.length > 0 + ? null + : findDefaultInstallConfigPath({ cwd: process.cwd() }); const config = options.configPath ? loadInstallConfig(options.configPath, { cwd: process.cwd() }) - : null; + : (defaultConfigPath ? loadInstallConfig(defaultConfigPath, { cwd: process.cwd() }) : null); const request = normalizeInstallRequest({ ...options, config, }); const plan = createInstallPlanFromRequest(request, { projectRoot: process.cwd(), - homeDir: process.env.HOME, + homeDir: process.env.HOME || os.homedir(), claudeRulesDir: process.env.CLAUDE_RULES_DIR || null, }); @@ -132,7 +142,7 @@ function main() { printHumanPlan(result, false); } } catch (error) { - console.error(`Error: ${error.message}`); + process.stderr.write(`Error: ${error.message}${getHelpText()}`); process.exit(1); } } diff --git a/scripts/install-plan.js b/scripts/install-plan.js index dfe02ee5..24ffd91b 100644 --- a/scripts/install-plan.js +++ b/scripts/install-plan.js @@ -9,7 +9,10 @@ const { listInstallProfiles, resolveInstallPlan, } = require('./lib/install-manifests'); -const { loadInstallConfig } = require('./lib/install/config'); +const { + findDefaultInstallConfigPath, + loadInstallConfig, +} = require('./lib/install/config'); const { normalizeInstallRequest } = require('./lib/install/request'); function showHelp() { @@ -186,7 +189,7 @@ function main() { try { const options = parseArgs(process.argv); - if (options.help || process.argv.length <= 2) { + if (options.help) { showHelp(); process.exit(0); } @@ -224,9 +227,18 @@ function main() { return; } + const defaultConfigPath = options.configPath + ? null + : findDefaultInstallConfigPath({ cwd: process.cwd() }); const config = options.configPath ? loadInstallConfig(options.configPath, { cwd: process.cwd() }) - : null; + : (defaultConfigPath ? loadInstallConfig(defaultConfigPath, { cwd: process.cwd() }) : null); + + if (process.argv.length <= 2 && !config) { + showHelp(); + process.exit(0); + } + const request = normalizeInstallRequest({ ...options, languages: [], diff --git a/scripts/lib/install-executor.js b/scripts/lib/install-executor.js index 63be3844..7ad7a408 100644 --- a/scripts/lib/install-executor.js +++ b/scripts/lib/install-executor.js @@ -1,4 +1,5 @@ const fs = require('fs'); +const os = require('os'); const path = require('path'); const { execFileSync } = require('child_process'); @@ -442,7 +443,7 @@ function planAntigravityLegacyInstall(context) { function createLegacyInstallPlan(options = {}) { const sourceRoot = options.sourceRoot || getSourceRoot(); const projectRoot = options.projectRoot || process.cwd(); - const homeDir = options.homeDir || process.env.HOME; + const homeDir = options.homeDir || process.env.HOME || os.homedir(); const target = options.target || 'claude'; validateLegacyTarget(target); diff --git a/scripts/lib/install-lifecycle.js b/scripts/lib/install-lifecycle.js index a8f04f1b..4cdfffd4 100644 --- a/scripts/lib/install-lifecycle.js +++ b/scripts/lib/install-lifecycle.js @@ -1,4 +1,5 @@ const fs = require('fs'); +const os = require('os'); const path = require('path'); const { resolveInstallPlan, loadInstallManifests } = require('./install-manifests'); @@ -696,7 +697,7 @@ function buildDiscoveryRecord(adapter, context) { function discoverInstalledStates(options = {}) { const context = { - homeDir: options.homeDir || process.env.HOME, + homeDir: options.homeDir || process.env.HOME || os.homedir(), projectRoot: options.projectRoot || process.cwd(), }; const targets = normalizeTargets(options.targets); @@ -904,7 +905,7 @@ function buildDoctorReport(options = {}) { }).filter(record => record.exists); const context = { repoRoot, - homeDir: options.homeDir || process.env.HOME, + homeDir: options.homeDir || process.env.HOME || os.homedir(), projectRoot: options.projectRoot || process.cwd(), manifestVersion: manifests.modulesVersion, packageVersion: readPackageVersion(repoRoot), @@ -988,7 +989,7 @@ function repairInstalledStates(options = {}) { const manifests = loadInstallManifests({ repoRoot }); const context = { repoRoot, - homeDir: options.homeDir || process.env.HOME, + homeDir: options.homeDir || process.env.HOME || os.homedir(), projectRoot: options.projectRoot || process.cwd(), manifestVersion: manifests.modulesVersion, packageVersion: readPackageVersion(repoRoot), diff --git a/scripts/lib/install-manifests.js b/scripts/lib/install-manifests.js index 16b1fbc1..ee159bcd 100644 --- a/scripts/lib/install-manifests.js +++ b/scripts/lib/install-manifests.js @@ -216,6 +216,45 @@ function listInstallComponents(options = {}) { .filter(component => !target || component.targets.includes(target)); } +function getInstallComponent(componentId, options = {}) { + const manifests = loadInstallManifests(options); + const normalizedComponentId = String(componentId || '').trim(); + + if (!normalizedComponentId) { + throw new Error('An install component ID is required'); + } + + const component = manifests.componentsById.get(normalizedComponentId); + if (!component) { + throw new Error(`Unknown install component: ${normalizedComponentId}`); + } + + const moduleIds = dedupeStrings(component.modules); + const modules = moduleIds + .map(moduleId => manifests.modulesById.get(moduleId)) + .filter(Boolean) + .map(module => ({ + id: module.id, + kind: module.kind, + description: module.description, + targets: module.targets, + defaultInstall: module.defaultInstall, + cost: module.cost, + stability: module.stability, + dependencies: dedupeStrings(module.dependencies), + })); + + return { + id: component.id, + family: component.family, + description: component.description, + moduleIds, + moduleCount: moduleIds.length, + targets: intersectTargets(modules), + modules, + }; +} + function expandComponentIdsToModuleIds(componentIds, manifests) { const expandedModuleIds = []; @@ -438,6 +477,7 @@ module.exports = { SUPPORTED_INSTALL_TARGETS, getManifestPaths, loadInstallManifests, + getInstallComponent, listInstallComponents, listLegacyCompatibilityLanguages, listInstallModules, diff --git a/scripts/lib/install/apply.js b/scripts/lib/install/apply.js index 567d4a78..bab5b6d5 100644 --- a/scripts/lib/install/apply.js +++ b/scripts/lib/install/apply.js @@ -1,15 +1,109 @@ 'use strict'; const fs = require('fs'); +const path = require('path'); const { writeInstallState } = require('../install-state'); +function readJsonObject(filePath, label) { + let parsed; + try { + parsed = JSON.parse(fs.readFileSync(filePath, 'utf8')); + } catch (error) { + throw new Error(`Failed to parse ${label} at ${filePath}: ${error.message}`); + } + + if (!parsed || typeof parsed !== 'object' || Array.isArray(parsed)) { + throw new Error(`Invalid ${label} at ${filePath}: expected a JSON object`); + } + + return parsed; +} + +function mergeHookEntries(existingEntries, incomingEntries) { + const mergedEntries = []; + const seenEntries = new Set(); + + for (const entry of [...existingEntries, ...incomingEntries]) { + const entryKey = JSON.stringify(entry); + if (seenEntries.has(entryKey)) { + continue; + } + + seenEntries.add(entryKey); + mergedEntries.push(entry); + } + + return mergedEntries; +} + +function findHooksSourcePath(plan, hooksDestinationPath) { + const operation = plan.operations.find(item => item.destinationPath === hooksDestinationPath); + return operation ? operation.sourcePath : null; +} + +function buildMergedSettings(plan) { + if (!plan.adapter || plan.adapter.target !== 'claude') { + return null; + } + + const hooksDestinationPath = path.join(plan.targetRoot, 'hooks', 'hooks.json'); + const hooksSourcePath = findHooksSourcePath(plan, hooksDestinationPath) || hooksDestinationPath; + if (!fs.existsSync(hooksSourcePath)) { + return null; + } + + const hooksConfig = readJsonObject(hooksSourcePath, 'hooks config'); + const incomingHooks = hooksConfig.hooks; + if (!incomingHooks || typeof incomingHooks !== 'object' || Array.isArray(incomingHooks)) { + throw new Error(`Invalid hooks config at ${hooksSourcePath}: expected "hooks" to be a JSON object`); + } + + const settingsPath = path.join(plan.targetRoot, 'settings.json'); + let settings = {}; + if (fs.existsSync(settingsPath)) { + settings = readJsonObject(settingsPath, 'existing settings'); + } + + const existingHooks = settings.hooks && typeof settings.hooks === 'object' && !Array.isArray(settings.hooks) + ? settings.hooks + : {}; + const mergedHooks = { ...existingHooks }; + + for (const [eventName, incomingEntries] of Object.entries(incomingHooks)) { + const currentEntries = Array.isArray(existingHooks[eventName]) ? existingHooks[eventName] : []; + const nextEntries = Array.isArray(incomingEntries) ? incomingEntries : []; + mergedHooks[eventName] = mergeHookEntries(currentEntries, nextEntries); + } + + const mergedSettings = { + ...settings, + hooks: mergedHooks, + }; + + return { + settingsPath, + mergedSettings, + }; +} + function applyInstallPlan(plan) { + const mergedSettingsPlan = buildMergedSettings(plan); + for (const operation of plan.operations) { - fs.mkdirSync(require('path').dirname(operation.destinationPath), { recursive: true }); + fs.mkdirSync(path.dirname(operation.destinationPath), { recursive: true }); fs.copyFileSync(operation.sourcePath, operation.destinationPath); } + if (mergedSettingsPlan) { + fs.mkdirSync(path.dirname(mergedSettingsPlan.settingsPath), { recursive: true }); + fs.writeFileSync( + mergedSettingsPlan.settingsPath, + JSON.stringify(mergedSettingsPlan.mergedSettings, null, 2) + '\n', + 'utf8' + ); + } + writeInstallState(plan.installStatePath, plan.statePreview); return { diff --git a/scripts/lib/install/config.js b/scripts/lib/install/config.js index 2ff8f8a1..2ba01226 100644 --- a/scripts/lib/install/config.js +++ b/scripts/lib/install/config.js @@ -47,6 +47,12 @@ function resolveInstallConfigPath(configPath, options = {}) { : path.normalize(path.join(cwd, configPath)); } +function findDefaultInstallConfigPath(options = {}) { + const cwd = options.cwd || process.cwd(); + const candidatePath = path.join(cwd, DEFAULT_INSTALL_CONFIG); + return fs.existsSync(candidatePath) ? candidatePath : null; +} + function loadInstallConfig(configPath, options = {}) { const resolvedPath = resolveInstallConfigPath(configPath, options); @@ -77,6 +83,7 @@ function loadInstallConfig(configPath, options = {}) { module.exports = { DEFAULT_INSTALL_CONFIG, + findDefaultInstallConfigPath, loadInstallConfig, resolveInstallConfigPath, }; diff --git a/scripts/list-installed.js b/scripts/list-installed.js index 4803f965..a3f070bf 100644 --- a/scripts/list-installed.js +++ b/scripts/list-installed.js @@ -1,5 +1,6 @@ #!/usr/bin/env node +const os = require('os'); const { discoverInstalledStates } = require('./lib/install-lifecycle'); const { SUPPORTED_INSTALL_TARGETS } = require('./lib/install-manifests'); @@ -70,7 +71,7 @@ function main() { } const records = discoverInstalledStates({ - homeDir: process.env.HOME, + homeDir: process.env.HOME || os.homedir(), projectRoot: process.cwd(), targets: options.targets, }).filter(record => record.exists); diff --git a/scripts/repair.js b/scripts/repair.js index 382cfa4d..74055b52 100644 --- a/scripts/repair.js +++ b/scripts/repair.js @@ -1,5 +1,6 @@ #!/usr/bin/env node +const os = require('os'); const { repairInstalledStates } = require('./lib/install-lifecycle'); const { SUPPORTED_INSTALL_TARGETS } = require('./lib/install-manifests'); @@ -74,7 +75,7 @@ function main() { const result = repairInstalledStates({ repoRoot: require('path').join(__dirname, '..'), - homeDir: process.env.HOME, + homeDir: process.env.HOME || os.homedir(), projectRoot: process.cwd(), targets: options.targets, dryRun: options.dryRun, diff --git a/scripts/sessions-cli.js b/scripts/sessions-cli.js index 436796f5..173e68d4 100644 --- a/scripts/sessions-cli.js +++ b/scripts/sessions-cli.js @@ -1,6 +1,7 @@ #!/usr/bin/env node 'use strict'; +const os = require('os'); const { createStateStore } = require('./lib/state-store'); function showHelp(exitCode = 0) { @@ -134,7 +135,7 @@ async function main() { store = await createStateStore({ dbPath: options.dbPath, - homeDir: process.env.HOME, + homeDir: process.env.HOME || os.homedir(), }); if (!options.sessionId) { diff --git a/scripts/status.js b/scripts/status.js index 2e5349df..13d86ef3 100644 --- a/scripts/status.js +++ b/scripts/status.js @@ -1,6 +1,7 @@ #!/usr/bin/env node 'use strict'; +const os = require('os'); const { createStateStore } = require('./lib/state-store'); function showHelp(exitCode = 0) { @@ -139,7 +140,7 @@ async function main() { store = await createStateStore({ dbPath: options.dbPath, - homeDir: process.env.HOME, + homeDir: process.env.HOME || os.homedir(), }); const payload = { diff --git a/scripts/sync-ecc-to-codex.sh b/scripts/sync-ecc-to-codex.sh old mode 100644 new mode 100755 index 393ae4de..2ca89d0e --- a/scripts/sync-ecc-to-codex.sh +++ b/scripts/sync-ecc-to-codex.sh @@ -4,7 +4,6 @@ set -euo pipefail # Sync Everything Claude Code (ECC) assets into a local Codex CLI setup. # - Backs up ~/.codex config and AGENTS.md # - Merges ECC AGENTS.md into existing AGENTS.md (marker-based, preserves user content) -# - Syncs Codex-ready skills from .agents/skills # - Generates prompt files from commands/*.md # - Generates Codex QA wrappers and optional language rule-pack prompts # - Installs global git safety hooks (pre-commit and pre-push) @@ -28,8 +27,6 @@ CONFIG_FILE="$CODEX_HOME/config.toml" AGENTS_FILE="$CODEX_HOME/AGENTS.md" AGENTS_ROOT_SRC="$REPO_ROOT/AGENTS.md" AGENTS_CODEX_SUPP_SRC="$REPO_ROOT/.codex/AGENTS.md" -SKILLS_SRC="$REPO_ROOT/.agents/skills" -SKILLS_DEST="$CODEX_HOME/skills" PROMPTS_SRC="$REPO_ROOT/commands" PROMPTS_DEST="$CODEX_HOME/prompts" HOOKS_INSTALLER="$REPO_ROOT/scripts/codex/install-global-git-hooks.sh" @@ -133,7 +130,6 @@ MCP_MERGE_SCRIPT="$REPO_ROOT/scripts/codex/merge-mcp-config.js" require_path "$REPO_ROOT/AGENTS.md" "ECC AGENTS.md" require_path "$AGENTS_CODEX_SUPP_SRC" "ECC Codex AGENTS supplement" -require_path "$SKILLS_SRC" "ECC skills directory" require_path "$PROMPTS_SRC" "ECC commands directory" require_path "$HOOKS_INSTALLER" "ECC global git hooks installer" require_path "$SANITY_CHECKER" "ECC global sanity checker" @@ -235,17 +231,9 @@ else fi fi -log "Syncing ECC Codex skills" -run_or_echo mkdir -p "$SKILLS_DEST" -skills_count=0 -for skill_dir in "$SKILLS_SRC"/*; do - [[ -d "$skill_dir" ]] || continue - skill_name="$(basename "$skill_dir")" - dest="$SKILLS_DEST/$skill_name" - run_or_echo rm -rf "$dest" - run_or_echo cp -R "$skill_dir" "$dest" - skills_count=$((skills_count + 1)) -done +# Skills are NOT synced here — Codex CLI reads directly from +# ~/.agents/skills/ (installed by ECC installer / npx skills). +# Copying into ~/.codex/skills/ was unnecessary. log "Generating prompt files from ECC commands" run_or_echo mkdir -p "$PROMPTS_DEST" @@ -486,7 +474,6 @@ fi log "Sync complete" log "Backup saved at: $BACKUP_DIR" -log "Skills synced: $skills_count" log "Prompts generated: $((prompt_count + extension_count)) (commands: $prompt_count, extensions: $extension_count)" if [[ "$MODE" == "apply" ]]; then diff --git a/scripts/uninstall.js b/scripts/uninstall.js index 6456c406..c9bdc859 100644 --- a/scripts/uninstall.js +++ b/scripts/uninstall.js @@ -1,5 +1,6 @@ #!/usr/bin/env node +const os = require('os'); const { uninstallInstalledStates } = require('./lib/install-lifecycle'); const { SUPPORTED_INSTALL_TARGETS } = require('./lib/install-manifests'); @@ -73,7 +74,7 @@ function main() { } const result = uninstallInstalledStates({ - homeDir: process.env.HOME, + homeDir: process.env.HOME || os.homedir(), projectRoot: process.cwd(), targets: options.targets, dryRun: options.dryRun, diff --git a/skills/agent-payment-x402/SKILL.md b/skills/agent-payment-x402/SKILL.md new file mode 100644 index 00000000..08319c63 --- /dev/null +++ b/skills/agent-payment-x402/SKILL.md @@ -0,0 +1,178 @@ +--- +name: agent-payment-x402 +description: Add x402 payment execution to AI agents — per-task budgets, spending controls, and non-custodial wallets via MCP tools. Use when agents need to pay for APIs, services, or other agents. +origin: community +--- + +# Agent Payment Execution (x402) + +Enable AI agents to make autonomous payments with built-in spending controls. Uses the x402 HTTP payment protocol and MCP tools so agents can pay for external services, APIs, or other agents without custodial risk. + +## When to Use + +Use when: your agent needs to pay for an API call, purchase a service, settle with another agent, enforce per-task spending limits, or manage a non-custodial wallet. Pairs naturally with cost-aware-llm-pipeline and security-review skills. + +## How It Works + +### x402 Protocol +x402 extends HTTP 402 (Payment Required) into a machine-negotiable flow. When a server returns `402`, the agent's payment tool automatically negotiates price, checks budget, signs a transaction, and retries — no human in the loop. + +### Spending Controls +Every payment tool call enforces a `SpendingPolicy`: +- **Per-task budget** — max spend for a single agent action +- **Per-session budget** — cumulative limit across an entire session +- **Allowlisted recipients** — restrict which addresses/services the agent can pay +- **Rate limits** — max transactions per minute/hour + +### Non-Custodial Wallets +Agents hold their own keys via ERC-4337 smart accounts. The orchestrator sets policy before delegation; the agent can only spend within bounds. No pooled funds, no custodial risk. + +## MCP Integration + +The payment layer exposes standard MCP tools that slot into any Claude Code or agent harness setup. + +> **Security note**: Always pin the package version. This tool manages private keys — unpinned `npx` installs introduce supply-chain risk. + +```json +{ + "mcpServers": { + "agentpay": { + "command": "npx", + "args": ["agentwallet-sdk@6.0.0"] + } + } +} +``` + +### Available Tools (agent-callable) + +| Tool | Purpose | +|------|---------| +| `get_balance` | Check agent wallet balance | +| `send_payment` | Send payment to address or ENS | +| `check_spending` | Query remaining budget | +| `list_transactions` | Audit trail of all payments | + +> **Note**: Spending policy is set by the **orchestrator** before delegating to the agent — not by the agent itself. This prevents agents from escalating their own spending limits. Configure policy via `set_policy` in your orchestration layer or pre-task hook, never as an agent-callable tool. + +## Examples + +### Budget enforcement in an MCP client + +When building an orchestrator that calls the agentpay MCP server, enforce budgets before dispatching paid tool calls. + +> **Prerequisites**: Install the package before adding the MCP config — `npx` without `-y` will prompt for confirmation in non-interactive environments, causing the server to hang: `npm install -g agentwallet-sdk@6.0.0` + +```typescript +import { Client } from "@modelcontextprotocol/sdk/client/index.js"; +import { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdio.js"; + +async function main() { + // 1. Validate credentials before constructing the transport. + // A missing key must fail immediately — never let the subprocess start without auth. + const walletKey = process.env.WALLET_PRIVATE_KEY; + if (!walletKey) { + throw new Error("WALLET_PRIVATE_KEY is not set — refusing to start payment server"); + } + + // Connect to the agentpay MCP server via stdio transport. + // Whitelist only the env vars the server needs — never forward all of process.env + // to a third-party subprocess that manages private keys. + const transport = new StdioClientTransport({ + command: "npx", + args: ["agentwallet-sdk@6.0.0"], + env: { + PATH: process.env.PATH ?? "", + NODE_ENV: process.env.NODE_ENV ?? "production", + WALLET_PRIVATE_KEY: walletKey, + }, + }); + const agentpay = new Client({ name: "orchestrator", version: "1.0.0" }); + await agentpay.connect(transport); + + // 2. Set spending policy before delegating to the agent. + // Always verify success — a silent failure means no controls are active. + const policyResult = await agentpay.callTool({ + name: "set_policy", + arguments: { + per_task_budget: 0.50, + per_session_budget: 5.00, + allowlisted_recipients: ["api.example.com"], + }, + }); + if (policyResult.isError) { + throw new Error( + `Failed to set spending policy — do not delegate: ${JSON.stringify(policyResult.content)}` + ); + } + + // 3. Use preToolCheck before any paid action + await preToolCheck(agentpay, 0.01); +} + +// Pre-tool hook: fail-closed budget enforcement with four distinct error paths. +async function preToolCheck(agentpay: Client, apiCost: number): Promise { + // Path 1: Reject invalid input (NaN/Infinity bypass the < comparison) + if (!Number.isFinite(apiCost) || apiCost < 0) { + throw new Error(`Invalid apiCost: ${apiCost} — action blocked`); + } + + // Path 2: Transport/connectivity failure + let result; + try { + result = await agentpay.callTool({ name: "check_spending" }); + } catch (err) { + throw new Error(`Payment service unreachable — action blocked: ${err}`); + } + + // Path 3: Tool returned an error (e.g., auth failure, wallet not initialised) + if (result.isError) { + throw new Error( + `check_spending failed — action blocked: ${JSON.stringify(result.content)}` + ); + } + + // Path 4: Parse and validate the response shape + let remaining: number; + try { + const parsed = JSON.parse( + (result.content as Array<{ text: string }>)[0].text + ); + if (!Number.isFinite(parsed?.remaining)) { + throw new TypeError("missing or non-finite 'remaining' field"); + } + remaining = parsed.remaining; + } catch (err) { + throw new Error( + `check_spending returned unexpected format — action blocked: ${err}` + ); + } + + // Path 5: Budget exceeded + if (remaining < apiCost) { + throw new Error( + `Budget exceeded: need $${apiCost} but only $${remaining} remaining` + ); + } +} + +main().catch((err) => { + console.error(err); + process.exitCode = 1; +}); +``` + +## Best Practices + +- **Set budgets before delegation**: When spawning sub-agents, attach a SpendingPolicy via your orchestration layer. Never give an agent unlimited spend. +- **Pin your dependencies**: Always specify an exact version in your MCP config (e.g., `agentwallet-sdk@6.0.0`). Verify package integrity before deploying to production. +- **Audit trails**: Use `list_transactions` in post-task hooks to log what was spent and why. +- **Fail closed**: If the payment tool is unreachable, block the paid action — don't fall back to unmetered access. +- **Pair with security-review**: Payment tools are high-privilege. Apply the same scrutiny as shell access. +- **Test with testnets first**: Use Base Sepolia for development; switch to Base mainnet for production. + +## Production Reference + +- **npm**: [`agentwallet-sdk`](https://www.npmjs.com/package/agentwallet-sdk) +- **Merged into NVIDIA NeMo Agent Toolkit**: [PR #17](https://github.com/NVIDIA/NeMo-Agent-Toolkit-Examples/pull/17) — x402 payment tool for NVIDIA's agent examples +- **Protocol spec**: [x402.org](https://x402.org) diff --git a/skills/benchmark/SKILL.md b/skills/benchmark/SKILL.md index 51ccce8f..8ae15331 100644 --- a/skills/benchmark/SKILL.md +++ b/skills/benchmark/SKILL.md @@ -1,3 +1,9 @@ +--- +name: benchmark +description: Use this skill to measure performance baselines, detect regressions before/after PRs, and compare stack alternatives. +origin: ECC +--- + # Benchmark — Performance Baseline & Regression Detection ## When to Use diff --git a/skills/browser-qa/SKILL.md b/skills/browser-qa/SKILL.md index d71a0068..cda02445 100644 --- a/skills/browser-qa/SKILL.md +++ b/skills/browser-qa/SKILL.md @@ -1,3 +1,9 @@ +--- +name: browser-qa +description: Use this skill to automate visual testing and UI interaction verification using browser automation after deploying features. +origin: ECC +--- + # Browser QA — Automated Visual Testing & Interaction ## When to Use diff --git a/skills/canary-watch/SKILL.md b/skills/canary-watch/SKILL.md index 88ff5d6a..a46eeda6 100644 --- a/skills/canary-watch/SKILL.md +++ b/skills/canary-watch/SKILL.md @@ -1,3 +1,9 @@ +--- +name: canary-watch +description: Use this skill to monitor a deployed URL for regressions after deploys, merges, or dependency upgrades. +origin: ECC +--- + # Canary Watch — Post-Deploy Monitoring ## When to Use diff --git a/skills/ck/SKILL.md b/skills/ck/SKILL.md new file mode 100644 index 00000000..a5f0adf2 --- /dev/null +++ b/skills/ck/SKILL.md @@ -0,0 +1,147 @@ +--- +name: ck +description: Persistent per-project memory for Claude Code. Auto-loads project context on session start, tracks sessions with git activity, and writes to native memory. Commands run deterministic Node.js scripts — behavior is consistent across model versions. +origin: community +version: 2.0.0 +author: sreedhargs89 +repo: https://github.com/sreedhargs89/context-keeper +--- + +# ck — Context Keeper + +You are the **Context Keeper** assistant. When the user invokes any `/ck:*` command, +run the corresponding Node.js script and present its stdout to the user verbatim. +Scripts live at: `~/.claude/skills/ck/commands/` (expand `~` with `$HOME`). + +--- + +## Data Layout + +``` +~/.claude/ck/ +├── projects.json ← path → {name, contextDir, lastUpdated} +└── contexts// + ├── context.json ← SOURCE OF TRUTH (structured JSON, v2) + └── CONTEXT.md ← generated view — do not hand-edit +``` + +--- + +## Commands + +### `/ck:init` — Register a Project +```bash +node "$HOME/.claude/skills/ck/commands/init.mjs" +``` +The script outputs JSON with auto-detected info. Present it as a confirmation draft: +``` +Here's what I found — confirm or edit anything: +Project: +Description: +Stack: +Goal: +Do-nots: +Repo: +``` +Wait for user approval. Apply any edits. Then pipe confirmed JSON to save.mjs --init: +```bash +echo '' | node "$HOME/.claude/skills/ck/commands/save.mjs" --init +``` +Confirmed JSON schema: `{"name":"...","path":"...","description":"...","stack":["..."],"goal":"...","constraints":["..."],"repo":"..." }` + +--- + +### `/ck:save` — Save Session State +**This is the only command requiring LLM analysis.** Analyze the current conversation: +- `summary`: one sentence, max 10 words, what was accomplished +- `leftOff`: what was actively being worked on (specific file/feature/bug) +- `nextSteps`: ordered array of concrete next steps +- `decisions`: array of `{what, why}` for decisions made this session +- `blockers`: array of current blockers (empty array if none) +- `goal`: updated goal string **only if it changed this session**, else omit + +Show a draft summary to the user: `"Session: '' — save this? (yes / edit)"` +Wait for confirmation. Then pipe to save.mjs: +```bash +echo '' | node "$HOME/.claude/skills/ck/commands/save.mjs" +``` +JSON schema (exact): `{"summary":"...","leftOff":"...","nextSteps":["..."],"decisions":[{"what":"...","why":"..."}],"blockers":["..."]}` +Display the script's stdout confirmation verbatim. + +--- + +### `/ck:resume [name|number]` — Full Briefing +```bash +node "$HOME/.claude/skills/ck/commands/resume.mjs" [arg] +``` +Display output verbatim. Then ask: "Continue from here? Or has anything changed?" +If user reports changes → run `/ck:save` immediately. + +--- + +### `/ck:info [name|number]` — Quick Snapshot +```bash +node "$HOME/.claude/skills/ck/commands/info.mjs" [arg] +``` +Display output verbatim. No follow-up question. + +--- + +### `/ck:list` — Portfolio View +```bash +node "$HOME/.claude/skills/ck/commands/list.mjs" +``` +Display output verbatim. If user replies with a number or name → run `/ck:resume`. + +--- + +### `/ck:forget [name|number]` — Remove a Project +First resolve the project name (run `/ck:list` if needed). +Ask: `"This will permanently delete context for ''. Are you sure? (yes/no)"` +If yes: +```bash +node "$HOME/.claude/skills/ck/commands/forget.mjs" [name] +``` +Display confirmation verbatim. + +--- + +### `/ck:migrate` — Convert v1 Data to v2 +```bash +node "$HOME/.claude/skills/ck/commands/migrate.mjs" +``` +For a dry run first: +```bash +node "$HOME/.claude/skills/ck/commands/migrate.mjs" --dry-run +``` +Display output verbatim. Migrates all v1 CONTEXT.md + meta.json files to v2 context.json. +Originals are backed up as `meta.json.v1-backup` — nothing is deleted. + +--- + +## SessionStart Hook + +The hook at `~/.claude/skills/ck/hooks/session-start.mjs` must be registered in +`~/.claude/settings.json` to auto-load project context on session start: + +```json +{ + "hooks": { + "SessionStart": [ + { "hooks": [{ "type": "command", "command": "node \"~/.claude/skills/ck/hooks/session-start.mjs\"" }] } + ] + } +} +``` + +The hook injects ~100 tokens per session (compact 5-line summary). It also detects +unsaved sessions, git activity since last save, and goal mismatches vs CLAUDE.md. + +--- + +## Rules +- Always expand `~` as `$HOME` in Bash calls. +- Commands are case-insensitive: `/CK:SAVE`, `/ck:save`, `/Ck:Save` all work. +- If a script exits with code 1, display its stdout as an error message. +- Never edit `context.json` or `CONTEXT.md` directly — always use the scripts. +- If `projects.json` is malformed, tell the user and offer to reset it to `{}`. diff --git a/skills/ck/commands/forget.mjs b/skills/ck/commands/forget.mjs new file mode 100644 index 00000000..8b88c776 --- /dev/null +++ b/skills/ck/commands/forget.mjs @@ -0,0 +1,44 @@ +#!/usr/bin/env node +/** + * ck — Context Keeper v2 + * forget.mjs — remove a project's context and registry entry + * + * Usage: node forget.mjs [name|number] + * stdout: confirmation or error + * exit 0: success exit 1: not found + * + * Note: SKILL.md instructs Claude to ask "Are you sure?" before calling this script. + * This script is the "do it" step — no confirmation prompt here. + */ + +import { rmSync } from 'fs'; +import { resolve } from 'path'; +import { resolveContext, readProjects, writeProjects, CONTEXTS_DIR } from './shared.mjs'; + +const arg = process.argv[2]; +const cwd = process.env.PWD || process.cwd(); + +const resolved = resolveContext(arg, cwd); +if (!resolved) { + const hint = arg ? `No project matching "${arg}".` : 'This directory is not registered.'; + console.log(`${hint}`); + process.exit(1); +} + +const { name, contextDir, projectPath } = resolved; + +// Remove context directory +const contextDirPath = resolve(CONTEXTS_DIR, contextDir); +try { + rmSync(contextDirPath, { recursive: true, force: true }); +} catch (e) { + console.log(`ck: could not remove context directory — ${e.message}`); + process.exit(1); +} + +// Remove from projects.json +const projects = readProjects(); +delete projects[projectPath]; +writeProjects(projects); + +console.log(`✓ Context for '${name}' removed.`); diff --git a/skills/ck/commands/info.mjs b/skills/ck/commands/info.mjs new file mode 100644 index 00000000..5ca86ac7 --- /dev/null +++ b/skills/ck/commands/info.mjs @@ -0,0 +1,24 @@ +#!/usr/bin/env node +/** + * ck — Context Keeper v2 + * info.mjs — quick read-only context snapshot + * + * Usage: node info.mjs [name|number] + * stdout: compact info block + * exit 0: success exit 1: not found + */ + +import { resolveContext, renderInfoBlock } from './shared.mjs'; + +const arg = process.argv[2]; +const cwd = process.env.PWD || process.cwd(); + +const resolved = resolveContext(arg, cwd); +if (!resolved) { + const hint = arg ? `No project matching "${arg}".` : 'This directory is not registered.'; + console.log(`${hint} Run /ck:init to register it.`); + process.exit(1); +} + +console.log(''); +console.log(renderInfoBlock(resolved.context)); diff --git a/skills/ck/commands/init.mjs b/skills/ck/commands/init.mjs new file mode 100644 index 00000000..fd25bf2d --- /dev/null +++ b/skills/ck/commands/init.mjs @@ -0,0 +1,143 @@ +#!/usr/bin/env node +/** + * ck — Context Keeper v2 + * init.mjs — auto-detect project info and output JSON for Claude to confirm + * + * Usage: node init.mjs + * stdout: JSON with auto-detected project info + * exit 0: success exit 1: error + */ + +import { readFileSync, existsSync } from 'fs'; +import { resolve, basename } from 'path'; +import { readProjects } from './shared.mjs'; + +const cwd = process.env.PWD || process.cwd(); +const projects = readProjects(); + +const output = { + path: cwd, + name: null, + description: null, + stack: [], + goal: null, + constraints: [], + repo: null, + alreadyRegistered: !!projects[cwd], +}; + +function readFile(filename) { + const p = resolve(cwd, filename); + if (!existsSync(p)) return null; + try { return readFileSync(p, 'utf8'); } catch { return null; } +} + +function extractSection(md, heading) { + const re = new RegExp(`## ${heading}\\n([\\s\\S]*?)(?=\\n## |$)`); + const m = md.match(re); + return m ? m[1].trim() : null; +} + +// ── package.json ────────────────────────────────────────────────────────────── +const pkg = readFile('package.json'); +if (pkg) { + try { + const parsed = JSON.parse(pkg); + if (parsed.name && !output.name) output.name = parsed.name; + if (parsed.description && !output.description) output.description = parsed.description; + + // Detect stack from dependencies + const deps = Object.keys({ ...(parsed.dependencies || {}), ...(parsed.devDependencies || {}) }); + const stackMap = { + next: 'Next.js', react: 'React', vue: 'Vue', svelte: 'Svelte', astro: 'Astro', + express: 'Express', fastify: 'Fastify', hono: 'Hono', nestjs: 'NestJS', + typescript: 'TypeScript', prisma: 'Prisma', drizzle: 'Drizzle', + '@neondatabase/serverless': 'Neon', '@upstash/redis': 'Upstash Redis', + '@clerk/nextjs': 'Clerk', stripe: 'Stripe', tailwindcss: 'Tailwind CSS', + }; + for (const [dep, label] of Object.entries(stackMap)) { + if (deps.includes(dep) && !output.stack.includes(label)) { + output.stack.push(label); + } + } + if (deps.includes('typescript') || existsSync(resolve(cwd, 'tsconfig.json'))) { + if (!output.stack.includes('TypeScript')) output.stack.push('TypeScript'); + } + } catch { /* malformed package.json */ } +} + +// ── go.mod ──────────────────────────────────────────────────────────────────── +const goMod = readFile('go.mod'); +if (goMod) { + if (!output.stack.includes('Go')) output.stack.push('Go'); + const modName = goMod.match(/^module\s+(\S+)/m)?.[1]; + if (modName && !output.name) output.name = modName.split('/').pop(); +} + +// ── Cargo.toml ──────────────────────────────────────────────────────────────── +const cargo = readFile('Cargo.toml'); +if (cargo) { + if (!output.stack.includes('Rust')) output.stack.push('Rust'); + const crateName = cargo.match(/^name\s*=\s*"(.+?)"/m)?.[1]; + if (crateName && !output.name) output.name = crateName; +} + +// ── pyproject.toml ──────────────────────────────────────────────────────────── +const pyproject = readFile('pyproject.toml'); +if (pyproject) { + if (!output.stack.includes('Python')) output.stack.push('Python'); + const pyName = pyproject.match(/^name\s*=\s*"(.+?)"/m)?.[1]; + if (pyName && !output.name) output.name = pyName; +} + +// ── .git/config (repo URL) ──────────────────────────────────────────────────── +const gitConfig = readFile('.git/config'); +if (gitConfig) { + const repoMatch = gitConfig.match(/url\s*=\s*(.+)/); + if (repoMatch) output.repo = repoMatch[1].trim(); +} + +// ── CLAUDE.md ───────────────────────────────────────────────────────────────── +const claudeMd = readFile('CLAUDE.md'); +if (claudeMd) { + const goal = extractSection(claudeMd, 'Current Goal'); + if (goal && !output.goal) output.goal = goal.split('\n')[0].trim(); + + const doNot = extractSection(claudeMd, 'Do Not Do'); + if (doNot) { + const bullets = doNot.split('\n') + .filter(l => /^[-*]\s+/.test(l)) + .map(l => l.replace(/^[-*]\s+/, '').trim()); + output.constraints = bullets; + } + + const stack = extractSection(claudeMd, 'Tech Stack'); + if (stack && output.stack.length === 0) { + output.stack = stack.split(/[,\n]/).map(s => s.replace(/^[-*]\s+/, '').trim()).filter(Boolean); + } + + // Description from first section or "What This Is" + const whatItIs = extractSection(claudeMd, 'What This Is') || extractSection(claudeMd, 'About'); + if (whatItIs && !output.description) output.description = whatItIs.split('\n')[0].trim(); +} + +// ── README.md (description fallback) ───────────────────────────────────────── +const readme = readFile('README.md'); +if (readme && !output.description) { + // First non-header, non-badge, non-empty paragraph + const lines = readme.split('\n'); + for (const line of lines) { + const trimmed = line.trim(); + if (trimmed && !trimmed.startsWith('#') && !trimmed.startsWith('!') && !trimmed.startsWith('>') && !trimmed.startsWith('[') && trimmed !== '---' && trimmed !== '___') { + output.description = trimmed.slice(0, 120); + break; + } + } +} + +// ── Name fallback: directory name ───────────────────────────────────────────── +if (!output.name) { + output.name = basename(cwd).toLowerCase().replace(/\s+/g, '-'); +} + +console.log(JSON.stringify(output, null, 2)); diff --git a/skills/ck/commands/list.mjs b/skills/ck/commands/list.mjs new file mode 100644 index 00000000..c4cd04e2 --- /dev/null +++ b/skills/ck/commands/list.mjs @@ -0,0 +1,41 @@ +#!/usr/bin/env node +/** + * ck — Context Keeper v2 + * list.mjs — portfolio view of all registered projects + * + * Usage: node list.mjs + * stdout: ASCII table of all projects + prompt to resume + * exit 0: success exit 1: no projects + */ + +import { readProjects, loadContext, today, CONTEXTS_DIR } from './shared.mjs'; +import { renderListTable } from './shared.mjs'; + +const cwd = process.env.PWD || process.cwd(); +const projects = readProjects(); +const entries = Object.entries(projects); + +if (entries.length === 0) { + console.log('No projects registered. Run /ck:init to get started.'); + process.exit(1); +} + +// Build enriched list sorted alphabetically by contextDir +const enriched = entries + .map(([path, info]) => { + const context = loadContext(info.contextDir); + return { + name: info.name, + contextDir: info.contextDir, + path, + context, + lastUpdated: info.lastUpdated, + }; + }) + .sort((a, b) => a.contextDir.localeCompare(b.contextDir)); + +const table = renderListTable(enriched, cwd, today()); +console.log(''); +console.log(table); +console.log(''); +console.log('Resume which? (number or name)'); diff --git a/skills/ck/commands/migrate.mjs b/skills/ck/commands/migrate.mjs new file mode 100644 index 00000000..d4966fa8 --- /dev/null +++ b/skills/ck/commands/migrate.mjs @@ -0,0 +1,198 @@ +#!/usr/bin/env node +/** + * ck — Context Keeper v2 + * migrate.mjs — convert v1 (CONTEXT.md + meta.json) to v2 (context.json) + * + * Usage: + * node migrate.mjs — migrate all v1 projects + * node migrate.mjs --dry-run — preview without writing + * + * Safe: backs up meta.json to meta.json.v1-backup, never deletes data. + * exit 0: success exit 1: error + */ + +import { readFileSync, writeFileSync, existsSync, renameSync } from 'fs'; +import { resolve } from 'path'; +import { readProjects, writeProjects, saveContext, today, shortId, CONTEXTS_DIR } from './shared.mjs'; + +const isDryRun = process.argv.includes('--dry-run'); + +if (isDryRun) { + console.log('ck migrate — DRY RUN (no files will be written)\n'); +} + +// ── v1 markdown parsers ─────────────────────────────────────────────────────── + +function extractSection(md, heading) { + const re = new RegExp(`## ${heading}\\n([\\s\\S]*?)(?=\\n## |$)`); + const m = md.match(re); + return m ? m[1].trim() : null; +} + +function parseBullets(text) { + if (!text) return []; + return text.split('\n') + .filter(l => /^[-*\d]\s/.test(l.trim())) + .map(l => l.replace(/^[-*\d]+\.?\s+/, '').trim()) + .filter(Boolean); +} + +function parseDecisionsTable(text) { + if (!text) return []; + const rows = []; + for (const line of text.split('\n')) { + if (!line.startsWith('|') || line.match(/^[|\s-]+$/)) continue; + const cols = line.split('|').map(c => c.trim()).filter((c, i) => i > 0 && i < 4); + if (cols.length >= 1 && !cols[0].startsWith('Decision') && !cols[0].startsWith('_')) { + rows.push({ what: cols[0] || '', why: cols[1] || '', date: cols[2] || '' }); + } + } + return rows; +} + +/** + * Parse "Where I Left Off" which in v1 can be: + * - Simple bullet list + * - Multi-session blocks: "Session N (date):\n- bullet\n" + * Returns array of session-like objects {date?, leftOff} + */ +function parseLeftOff(text) { + if (!text) return [{ leftOff: null }]; + + // Detect multi-session format: "Session N ..." + const sessionBlocks = text.split(/(?=Session \d+)/); + if (sessionBlocks.length > 1) { + return sessionBlocks + .filter(b => b.trim()) + .map(block => { + const dateMatch = block.match(/\((\d{4}-\d{2}-\d{2})\)/); + const bullets = parseBullets(block); + return { + date: dateMatch?.[1] || null, + leftOff: bullets.length ? bullets.join('\n') : block.replace(/^Session \d+.*\n/, '').trim(), + }; + }); + } + + // Simple format + const bullets = parseBullets(text); + return [{ leftOff: bullets.length ? bullets.join('\n') : text.trim() }]; +} + +// ── Main migration ───────────────────────────────────────────────────────────── + +const projects = readProjects(); +let migrated = 0; +let skipped = 0; +let errors = 0; + +for (const [projectPath, info] of Object.entries(projects)) { + const contextDir = info.contextDir; + const contextDirPath = resolve(CONTEXTS_DIR, contextDir); + const contextJsonPath = resolve(contextDirPath, 'context.json'); + const contextMdPath = resolve(contextDirPath, 'CONTEXT.md'); + const metaPath = resolve(contextDirPath, 'meta.json'); + + // Already v2 + if (existsSync(contextJsonPath)) { + try { + const existing = JSON.parse(readFileSync(contextJsonPath, 'utf8')); + if (existing.version === 2) { + console.log(` ✓ ${contextDir} — already v2, skipping`); + skipped++; + continue; + } + } catch { /* fall through to migrate */ } + } + + console.log(`\n → Migrating: ${contextDir}`); + + try { + // Read v1 files + const contextMd = existsSync(contextMdPath) ? readFileSync(contextMdPath, 'utf8') : ''; + let meta = {}; + if (existsSync(metaPath)) { + try { meta = JSON.parse(readFileSync(metaPath, 'utf8')); } catch {} + } + + // Extract fields from CONTEXT.md + const description = extractSection(contextMd, 'What This Is') || extractSection(contextMd, 'About') || null; + const stackRaw = extractSection(contextMd, 'Tech Stack') || ''; + const stack = stackRaw.split(/[,\n]/).map(s => s.replace(/^[-*]\s+/, '').trim()).filter(Boolean); + const goal = (extractSection(contextMd, 'Current Goal') || '').split('\n')[0].trim() || null; + const constraintRaw = extractSection(contextMd, 'Do Not Do') || ''; + const constraints = parseBullets(constraintRaw); + const decisionsRaw = extractSection(contextMd, 'Decisions Made') || ''; + const decisions = parseDecisionsTable(decisionsRaw); + const nextStepsRaw = extractSection(contextMd, 'Next Steps') || ''; + const nextSteps = parseBullets(nextStepsRaw); + const blockersRaw = extractSection(contextMd, 'Blockers') || ''; + const blockers = parseBullets(blockersRaw).filter(b => b.toLowerCase() !== 'none'); + const leftOffRaw = extractSection(contextMd, 'Where I Left Off') || ''; + const leftOffParsed = parseLeftOff(leftOffRaw); + + // Build sessions from parsed left-off blocks (may be multiple) + const sessions = leftOffParsed.map((lo, idx) => ({ + id: idx === leftOffParsed.length - 1 && meta.lastSessionId + ? meta.lastSessionId.slice(0, 8) + : shortId(), + date: lo.date || meta.lastUpdated || today(), + summary: idx === leftOffParsed.length - 1 + ? (meta.lastSessionSummary || 'Migrated from v1') + : `Session ${idx + 1} (migrated)`, + leftOff: lo.leftOff, + nextSteps: idx === leftOffParsed.length - 1 ? nextSteps : [], + decisions: idx === leftOffParsed.length - 1 ? decisions : [], + blockers: idx === leftOffParsed.length - 1 ? blockers : [], + })); + + const context = { + version: 2, + name: contextDir, + path: meta.path || projectPath, + description, + stack, + goal, + constraints, + repo: meta.repo || null, + createdAt: meta.lastUpdated || today(), + sessions, + }; + + if (isDryRun) { + console.log(` description: ${description?.slice(0, 60) || '(none)'}`); + console.log(` stack: ${stack.join(', ') || '(none)'}`); + console.log(` goal: ${goal?.slice(0, 60) || '(none)'}`); + console.log(` sessions: ${sessions.length}`); + console.log(` decisions: ${decisions.length}`); + console.log(` nextSteps: ${nextSteps.length}`); + migrated++; + continue; + } + + // Backup meta.json + if (existsSync(metaPath)) { + renameSync(metaPath, resolve(contextDirPath, 'meta.json.v1-backup')); + } + + // Write context.json + regenerated CONTEXT.md + saveContext(contextDir, context); + + // Update projects.json entry + projects[projectPath].lastUpdated = today(); + + console.log(` ✓ Migrated — ${sessions.length} session(s), ${decisions.length} decision(s)`); + migrated++; + } catch (e) { + console.log(` ✗ Error: ${e.message}`); + errors++; + } +} + +if (!isDryRun && migrated > 0) { + writeProjects(projects); +} + +console.log(`\nck migrate: ${migrated} migrated, ${skipped} already v2, ${errors} errors`); +if (isDryRun) console.log('Run without --dry-run to apply.'); +if (errors > 0) process.exit(1); diff --git a/skills/ck/commands/resume.mjs b/skills/ck/commands/resume.mjs new file mode 100644 index 00000000..ccb5e313 --- /dev/null +++ b/skills/ck/commands/resume.mjs @@ -0,0 +1,36 @@ +#!/usr/bin/env node +/** + * ck — Context Keeper v2 + * resume.mjs — full project briefing + * + * Usage: node resume.mjs [name|number] + * stdout: bordered briefing box + * exit 0: success exit 1: not found + */ + +import { existsSync } from 'fs'; +import { resolveContext, renderBriefingBox } from './shared.mjs'; + +const arg = process.argv[2]; +const cwd = process.env.PWD || process.cwd(); + +const resolved = resolveContext(arg, cwd); +if (!resolved) { + const hint = arg ? `No project matching "${arg}".` : 'This directory is not registered.'; + console.log(`${hint} Run /ck:init to register it.`); + process.exit(1); +} + +const { context, projectPath } = resolved; + +// Attempt to cd to the project path +if (projectPath && projectPath !== cwd) { + if (existsSync(projectPath)) { + console.log(`→ cd ${projectPath}`); + } else { + console.log(`⚠ Path not found: ${projectPath}`); + } +} + +console.log(''); +console.log(renderBriefingBox(context)); diff --git a/skills/ck/commands/save.mjs b/skills/ck/commands/save.mjs new file mode 100644 index 00000000..0d25029c --- /dev/null +++ b/skills/ck/commands/save.mjs @@ -0,0 +1,210 @@ +#!/usr/bin/env node +/** + * ck — Context Keeper v2 + * save.mjs — write session data to context.json, regenerate CONTEXT.md, + * and write a native memory entry. + * + * Usage (regular save): + * echo '' | node save.mjs + * JSON schema: { summary, leftOff, nextSteps[], decisions[{what,why}], blockers[], goal? } + * + * Usage (init — first registration): + * echo '' | node save.mjs --init + * JSON schema: { name, path, description, stack[], goal, constraints[], repo? } + * + * stdout: confirmation message + * exit 0: success exit 1: error + */ + +import { readFileSync, mkdirSync, writeFileSync } from 'fs'; +import { resolve } from 'path'; +import { + readProjects, writeProjects, loadContext, saveContext, + today, shortId, gitSummary, nativeMemoryDir, encodeProjectPath, + CONTEXTS_DIR, CURRENT_SESSION, +} from './shared.mjs'; + +const isInit = process.argv.includes('--init'); +const cwd = process.env.PWD || process.cwd(); + +// ── Read JSON from stdin ────────────────────────────────────────────────────── +let input; +try { + const raw = readFileSync(0, 'utf8').trim(); + if (!raw) throw new Error('empty stdin'); + input = JSON.parse(raw); +} catch (e) { + console.error(`ck save: invalid JSON on stdin — ${e.message}`); + console.log('Expected schema (save): {"summary":"...","leftOff":"...","nextSteps":["..."],"decisions":[{"what":"...","why":"..."}],"blockers":["..."]}'); + console.log('Expected schema (--init): {"name":"...","path":"...","description":"...","stack":["..."],"goal":"...","constraints":["..."]}'); + process.exit(1); +} + +// ───────────────────────────────────────────────────────────────────────────── +// INIT MODE: first-time project registration +// ───────────────────────────────────────────────────────────────────────────── +if (isInit) { + const { name, path: projectPath, description, stack, goal, constraints, repo } = input; + + if (!name || !projectPath) { + console.log('ck init: name and path are required.'); + process.exit(1); + } + + const projects = readProjects(); + + // Derive contextDir (lowercase, spaces→dashes, deduplicate) + let contextDir = name.toLowerCase().replace(/\s+/g, '-').replace(/[^a-z0-9-]/g, ''); + let suffix = 2; + const existingDirs = Object.values(projects).map(p => p.contextDir); + while (existingDirs.includes(contextDir) && projects[projectPath]?.contextDir !== contextDir) { + contextDir = `${contextDir.replace(/-\d+$/, '')}-${suffix++}`; + } + + const context = { + version: 2, + name: contextDir, + displayName: name, + path: projectPath, + description: description || null, + stack: Array.isArray(stack) ? stack : (stack ? [stack] : []), + goal: goal || null, + constraints: Array.isArray(constraints) ? constraints : [], + repo: repo || null, + createdAt: today(), + sessions: [], + }; + + saveContext(contextDir, context); + + // Update projects.json + projects[projectPath] = { + name, + contextDir, + lastUpdated: today(), + }; + writeProjects(projects); + + console.log(`✓ Project '${name}' registered.`); + console.log(` Use /ck:save to save session state and /ck:resume to reload it next time.`); + process.exit(0); +} + +// ───────────────────────────────────────────────────────────────────────────── +// SAVE MODE: record a session +// ───────────────────────────────────────────────────────────────────────────── +const projects = readProjects(); +const projectEntry = projects[cwd]; + +if (!projectEntry) { + console.log("This project isn't registered yet. Run /ck:init first."); + process.exit(1); +} + +const { contextDir } = projectEntry; +let context = loadContext(contextDir); + +if (!context) { + console.log(`ck: context.json not found for '${contextDir}'. The install may be corrupted.`); + process.exit(1); +} + +// Get session ID from current-session.json +let sessionId; +try { + const sess = JSON.parse(readFileSync(CURRENT_SESSION, 'utf8')); + sessionId = sess.sessionId || shortId(); +} catch { + sessionId = shortId(); +} + +// Check for duplicate (re-save of same session) +const existingIdx = context.sessions.findIndex(s => s.id === sessionId); + +const { summary, leftOff, nextSteps, decisions, blockers, goal } = input; + +// Capture git activity since the last session +const lastSessionDate = context.sessions?.[context.sessions.length - 1]?.date; +const gitActivity = gitSummary(cwd, lastSessionDate); + +const session = { + id: sessionId, + date: today(), + summary: summary || 'Session saved', + leftOff: leftOff || null, + nextSteps: Array.isArray(nextSteps) ? nextSteps : (nextSteps ? [nextSteps] : []), + decisions: Array.isArray(decisions) ? decisions : [], + blockers: Array.isArray(blockers) ? blockers.filter(Boolean) : [], + ...(gitActivity ? { gitActivity } : {}), +}; + +if (existingIdx >= 0) { + // Update existing session (re-save) + context.sessions[existingIdx] = session; +} else { + context.sessions.push(session); +} + +// Update goal if provided +if (goal && goal !== context.goal) { + context.goal = goal; +} + +// Save context.json + regenerate CONTEXT.md +saveContext(contextDir, context); + +// Update projects.json timestamp +projects[cwd].lastUpdated = today(); +writeProjects(projects); + +// ── Write to native memory ──────────────────────────────────────────────────── +try { + const memDir = nativeMemoryDir(cwd); + mkdirSync(memDir, { recursive: true }); + + const memFile = resolve(memDir, `ck_${today()}_${sessionId.slice(0, 8)}.md`); + const decisionsBlock = session.decisions.length + ? session.decisions.map(d => `- **${d.what}**: ${d.why || ''}`).join('\n') + : '- None this session'; + const nextBlock = session.nextSteps.length + ? session.nextSteps.map((s, i) => `${i + 1}. ${s}`).join('\n') + : '- None recorded'; + const blockersBlock = session.blockers.length + ? session.blockers.map(b => `- ${b}`).join('\n') + : '- None'; + + const memContent = [ + `---`, + `name: Session ${today()} — ${session.summary}`, + `description: Key decisions and outcomes from ck session ${sessionId.slice(0, 8)}`, + `type: project`, + `source: ck`, + `sessionId: ${sessionId}`, + `---`, + ``, + `# Session: ${session.summary}`, + ``, + `## Decisions`, + decisionsBlock, + ``, + `## Left Off`, + session.leftOff || '—', + ``, + `## Next Steps`, + nextBlock, + ``, + `## Blockers`, + blockersBlock, + ``, + ...(gitActivity ? [`## Git Activity`, gitActivity, ``] : []), + ].join('\n'); + + writeFileSync(memFile, memContent, 'utf8'); +} catch (e) { + // Non-fatal — native memory write failure should not block the save + process.stderr.write(`ck: warning — could not write native memory entry: ${e.message}\n`); +} + +console.log(`✓ Saved. Session: ${sessionId.slice(0, 8)}`); +if (gitActivity) console.log(` Git: ${gitActivity}`); +console.log(` See you next time.`); diff --git a/skills/ck/commands/shared.mjs b/skills/ck/commands/shared.mjs new file mode 100644 index 00000000..49a36363 --- /dev/null +++ b/skills/ck/commands/shared.mjs @@ -0,0 +1,387 @@ +/** + * ck — Context Keeper v2 + * shared.mjs — common utilities for all command scripts + * + * No external dependencies. Node.js stdlib only. + */ + +import { readFileSync, writeFileSync, existsSync, mkdirSync, readdirSync } from 'fs'; +import { resolve, basename } from 'path'; +import { homedir } from 'os'; +import { spawnSync } from 'child_process'; +import { randomBytes } from 'crypto'; + +// ─── Paths ──────────────────────────────────────────────────────────────────── + +export const CK_HOME = resolve(homedir(), '.claude', 'ck'); +export const CONTEXTS_DIR = resolve(CK_HOME, 'contexts'); +export const PROJECTS_FILE = resolve(CK_HOME, 'projects.json'); +export const CURRENT_SESSION = resolve(CK_HOME, 'current-session.json'); +export const SKILL_FILE = resolve(homedir(), '.claude', 'skills', 'ck', 'SKILL.md'); + +// ─── JSON I/O ───────────────────────────────────────────────────────────────── + +export function readJson(filePath) { + try { + if (!existsSync(filePath)) return null; + return JSON.parse(readFileSync(filePath, 'utf8')); + } catch { + return null; + } +} + +export function writeJson(filePath, data) { + const dir = resolve(filePath, '..'); + mkdirSync(dir, { recursive: true }); + writeFileSync(filePath, JSON.stringify(data, null, 2) + '\n', 'utf8'); +} + +export function readProjects() { + return readJson(PROJECTS_FILE) || {}; +} + +export function writeProjects(projects) { + writeJson(PROJECTS_FILE, projects); +} + +// ─── Context I/O ────────────────────────────────────────────────────────────── + +export function contextPath(contextDir) { + return resolve(CONTEXTS_DIR, contextDir, 'context.json'); +} + +export function contextMdPath(contextDir) { + return resolve(CONTEXTS_DIR, contextDir, 'CONTEXT.md'); +} + +export function loadContext(contextDir) { + return readJson(contextPath(contextDir)); +} + +export function saveContext(contextDir, data) { + const dir = resolve(CONTEXTS_DIR, contextDir); + mkdirSync(dir, { recursive: true }); + writeJson(contextPath(contextDir), data); + writeFileSync(contextMdPath(contextDir), renderContextMd(data), 'utf8'); +} + +/** + * Resolve which project to operate on. + * @param {string|undefined} arg — undefined = cwd match, number string = alphabetical index, else name search + * @param {string} cwd + * @returns {{ name, contextDir, projectPath, context } | null} + */ +export function resolveContext(arg, cwd) { + const projects = readProjects(); + const entries = Object.entries(projects); // [path, {name, contextDir, lastUpdated}] + + if (!arg) { + // Match by cwd + const entry = projects[cwd]; + if (!entry) return null; + const context = loadContext(entry.contextDir); + if (!context) return null; + return { name: entry.name, contextDir: entry.contextDir, projectPath: cwd, context }; + } + + // Collect all contexts sorted alphabetically by contextDir + const sorted = entries + .map(([path, info]) => ({ path, ...info })) + .sort((a, b) => a.contextDir.localeCompare(b.contextDir)); + + const asNumber = parseInt(arg, 10); + if (!isNaN(asNumber) && String(asNumber) === arg) { + // Number-based lookup (1-indexed) + const item = sorted[asNumber - 1]; + if (!item) return null; + const context = loadContext(item.contextDir); + if (!context) return null; + return { name: item.name, contextDir: item.contextDir, projectPath: item.path, context }; + } + + // Name-based lookup: exact > prefix > substring (case-insensitive) + const lower = arg.toLowerCase(); + let match = + sorted.find(e => e.name.toLowerCase() === lower) || + sorted.find(e => e.name.toLowerCase().startsWith(lower)) || + sorted.find(e => e.name.toLowerCase().includes(lower)); + + if (!match) return null; + const context = loadContext(match.contextDir); + if (!context) return null; + return { name: match.name, contextDir: match.contextDir, projectPath: match.path, context }; +} + +// ─── Date helpers ───────────────────────────────────────────────────────────── + +export function today() { + return new Date().toISOString().slice(0, 10); +} + +export function daysAgoLabel(dateStr) { + if (!dateStr) return 'unknown'; + const diff = Math.floor((Date.now() - new Date(dateStr)) / 86_400_000); + if (diff === 0) return 'Today'; + if (diff === 1) return '1 day ago'; + return `${diff} days ago`; +} + +export function stalenessIcon(dateStr) { + if (!dateStr) return '○'; + const diff = Math.floor((Date.now() - new Date(dateStr)) / 86_400_000); + if (diff < 1) return '●'; + if (diff <= 5) return '◐'; + return '○'; +} + +// ─── ID generation ──────────────────────────────────────────────────────────── + +export function shortId() { + return randomBytes(4).toString('hex'); +} + +// ─── Git helpers ────────────────────────────────────────────────────────────── + +function runGit(args, cwd) { + try { + const result = spawnSync('git', ['-C', cwd, ...args], { + timeout: 3000, + stdio: 'pipe', + encoding: 'utf8', + }); + if (result.status !== 0) return null; + return result.stdout.trim(); + } catch { + return null; + } +} + +export function gitLogSince(projectPath, sinceDate) { + if (!sinceDate) return null; + return runGit(['log', '--oneline', `--since=${sinceDate}`], projectPath); +} + +export function gitSummary(projectPath, sinceDate) { + const log = gitLogSince(projectPath, sinceDate); + if (!log) return null; + const commits = log.split('\n').filter(Boolean).length; + if (commits === 0) return null; + + // Count unique files changed: use a separate runGit call to avoid nested shell substitution + const countStr = runGit(['rev-list', '--count', 'HEAD', `--since=${sinceDate}`], projectPath); + const revCount = countStr ? parseInt(countStr, 10) : commits; + const diff = runGit(['diff', '--shortstat', `HEAD~${Math.min(revCount, 50)}..HEAD`], projectPath); + + if (diff) { + const filesMatch = diff.match(/(\d+) file/); + const files = filesMatch ? parseInt(filesMatch[1]) : '?'; + return `${commits} commit${commits !== 1 ? 's' : ''}, ${files} file${files !== 1 ? 's' : ''} changed`; + } + return `${commits} commit${commits !== 1 ? 's' : ''}`; +} + +// ─── Native memory path encoding ────────────────────────────────────────────── + +export function encodeProjectPath(absolutePath) { + // "/Users/sree/dev/app" -> "-Users-sree-dev-app" + return absolutePath.replace(/\//g, '-'); +} + +export function nativeMemoryDir(absolutePath) { + const encoded = encodeProjectPath(absolutePath); + return resolve(homedir(), '.claude', 'projects', encoded, 'memory'); +} + +// ─── Rendering ──────────────────────────────────────────────────────────────── + +/** Render the human-readable CONTEXT.md from context.json */ +export function renderContextMd(ctx) { + const latest = ctx.sessions?.[ctx.sessions.length - 1] || null; + const lines = [ + ``, + `# Project: ${ctx.displayName ?? ctx.name}`, + `> Path: ${ctx.path}`, + ]; + if (ctx.repo) lines.push(`> Repo: ${ctx.repo}`); + const sessionCount = ctx.sessions?.length || 0; + lines.push(`> Last Session: ${ctx.sessions?.[sessionCount - 1]?.date || 'never'} | Sessions: ${sessionCount}`); + lines.push(``); + lines.push(`## What This Is`); + lines.push(ctx.description || '_Not set._'); + lines.push(``); + lines.push(`## Tech Stack`); + lines.push(Array.isArray(ctx.stack) ? ctx.stack.join(', ') : (ctx.stack || '_Not set._')); + lines.push(``); + lines.push(`## Current Goal`); + lines.push(ctx.goal || '_Not set._'); + lines.push(``); + lines.push(`## Where I Left Off`); + lines.push(latest?.leftOff || '_Not yet recorded. Run /ck:save after your first session._'); + lines.push(``); + lines.push(`## Next Steps`); + if (latest?.nextSteps?.length) { + latest.nextSteps.forEach((s, i) => lines.push(`${i + 1}. ${s}`)); + } else { + lines.push(`_Not yet recorded._`); + } + lines.push(``); + lines.push(`## Blockers`); + if (latest?.blockers?.length) { + latest.blockers.forEach(b => lines.push(`- ${b}`)); + } else { + lines.push(`- None`); + } + lines.push(``); + lines.push(`## Do Not Do`); + if (ctx.constraints?.length) { + ctx.constraints.forEach(c => lines.push(`- ${c}`)); + } else { + lines.push(`- None specified`); + } + lines.push(``); + + // All decisions across sessions + const allDecisions = (ctx.sessions || []).flatMap(s => + (s.decisions || []).map(d => ({ ...d, date: s.date })) + ); + lines.push(`## Decisions Made`); + lines.push(`| Decision | Why | Date |`); + lines.push(`|----------|-----|------|`); + if (allDecisions.length) { + allDecisions.forEach(d => lines.push(`| ${d.what} | ${d.why || ''} | ${d.date || ''} |`)); + } else { + lines.push(`| _(none yet)_ | | |`); + } + lines.push(``); + + // Session history (most recent first) + if (ctx.sessions?.length > 1) { + lines.push(`## Session History`); + const reversed = [...ctx.sessions].reverse(); + reversed.forEach(s => { + lines.push(`### ${s.date} — ${s.summary || 'Session'}`); + if (s.gitActivity) lines.push(`_${s.gitActivity}_`); + if (s.leftOff) lines.push(`**Left off:** ${s.leftOff}`); + }); + lines.push(``); + } + + return lines.join('\n'); +} + +/** Render the bordered briefing box used by /ck:resume */ +export function renderBriefingBox(ctx, meta = {}) { + const latest = ctx.sessions?.[ctx.sessions.length - 1] || {}; + const W = 57; + const pad = (str, w) => { + const s = String(str || ''); + return s.length > w ? s.slice(0, w - 1) + '…' : s.padEnd(w); + }; + const row = (label, value) => `│ ${label} → ${pad(value, W - label.length - 7)}│`; + + const when = daysAgoLabel(ctx.sessions?.[ctx.sessions.length - 1]?.date); + const sessions = ctx.sessions?.length || 0; + const shortSessId = latest.id?.slice(0, 8) || null; + + const lines = [ + `┌${'─'.repeat(W)}┐`, + `│ RESUMING: ${pad(ctx.displayName ?? ctx.name, W - 12)}│`, + `│ Last session: ${pad(`${when} | Sessions: ${sessions}`, W - 16)}│`, + ]; + if (shortSessId) lines.push(`│ Session ID: ${pad(shortSessId, W - 14)}│`); + lines.push(`├${'─'.repeat(W)}┤`); + lines.push(row('WHAT IT IS', ctx.description || '—')); + lines.push(row('STACK ', Array.isArray(ctx.stack) ? ctx.stack.join(', ') : (ctx.stack || '—'))); + lines.push(row('PATH ', ctx.path)); + if (ctx.repo) lines.push(row('REPO ', ctx.repo)); + lines.push(row('GOAL ', ctx.goal || '—')); + lines.push(`├${'─'.repeat(W)}┤`); + lines.push(`│ WHERE I LEFT OFF${' '.repeat(W - 18)}│`); + const leftOffLines = (latest.leftOff || '—').split('\n').filter(Boolean); + leftOffLines.forEach(l => lines.push(`│ • ${pad(l, W - 7)}│`)); + lines.push(`├${'─'.repeat(W)}┤`); + lines.push(`│ NEXT STEPS${' '.repeat(W - 12)}│`); + const steps = latest.nextSteps || []; + if (steps.length) { + steps.forEach((s, i) => lines.push(`│ ${i + 1}. ${pad(s, W - 8)}│`)); + } else { + lines.push(`│ —${' '.repeat(W - 5)}│`); + } + const blockers = latest.blockers?.length ? latest.blockers.join(', ') : 'None'; + lines.push(`│ BLOCKERS → ${pad(blockers, W - 13)}│`); + if (latest.gitActivity) { + lines.push(`│ GIT → ${pad(latest.gitActivity, W - 13)}│`); + } + lines.push(`└${'─'.repeat(W)}┘`); + return lines.join('\n'); +} + +/** Render compact info block used by /ck:info */ +export function renderInfoBlock(ctx) { + const latest = ctx.sessions?.[ctx.sessions.length - 1] || {}; + const sep = '─'.repeat(44); + const lines = [ + `ck: ${ctx.displayName ?? ctx.name}`, + sep, + ]; + lines.push(`PATH ${ctx.path}`); + if (ctx.repo) lines.push(`REPO ${ctx.repo}`); + if (latest.id) lines.push(`SESSION ${latest.id.slice(0, 8)}`); + lines.push(`GOAL ${ctx.goal || '—'}`); + lines.push(sep); + lines.push(`WHERE I LEFT OFF`); + (latest.leftOff || '—').split('\n').filter(Boolean).forEach(l => lines.push(` • ${l}`)); + lines.push(`NEXT STEPS`); + (latest.nextSteps || []).forEach((s, i) => lines.push(` ${i + 1}. ${s}`)); + if (!latest.nextSteps?.length) lines.push(` —`); + lines.push(`BLOCKERS`); + if (latest.blockers?.length) { + latest.blockers.forEach(b => lines.push(` • ${b}`)); + } else { + lines.push(` • None`); + } + return lines.join('\n'); +} + +/** Render ASCII list table used by /ck:list */ +export function renderListTable(entries, cwd, todayStr) { + // entries: [{name, contextDir, path, context, lastUpdated}] + // Sorted alphabetically by contextDir before calling + const rows = entries.map((e, i) => { + const isHere = e.path === cwd; + const latest = e.context?.sessions?.[e.context.sessions.length - 1] || {}; + const when = daysAgoLabel(latest.date); + const icon = stalenessIcon(latest.date); + const statusLabel = icon === '●' ? '● Active' : icon === '◐' ? '◐ Warm' : '○ Stale'; + const sessId = latest.id ? latest.id.slice(0, 8) : '—'; + const summary = (latest.summary || '—').slice(0, 34); + const displayName = ((e.context?.displayName ?? e.name) + (isHere ? ' <-' : '')).slice(0, 18); + return { + num: String(i + 1), + name: displayName, + status: statusLabel, + when: when.slice(0, 10), + sessId, + summary, + }; + }); + + const cols = { + num: Math.max(1, ...rows.map(r => r.num.length)), + name: Math.max(7, ...rows.map(r => r.name.length)), + status: Math.max(6, ...rows.map(r => r.status.length)), + when: Math.max(9, ...rows.map(r => r.when.length)), + sessId: Math.max(7, ...rows.map(r => r.sessId.length)), + summary: Math.max(12, ...rows.map(r => r.summary.length)), + }; + + const hr = `+${'-'.repeat(cols.num + 2)}+${'-'.repeat(cols.name + 2)}+${'-'.repeat(cols.status + 2)}+${'-'.repeat(cols.when + 2)}+${'-'.repeat(cols.sessId + 2)}+${'-'.repeat(cols.summary + 2)}+`; + const cell = (val, width) => ` ${val.padEnd(width)} `; + const headerRow = `|${cell('#', cols.num)}|${cell('Project', cols.name)}|${cell('Status', cols.status)}|${cell('Last Seen', cols.when)}|${cell('Session', cols.sessId)}|${cell('Last Summary', cols.summary)}|`; + + const dataRows = rows.map(r => + `|${cell(r.num, cols.num)}|${cell(r.name, cols.name)}|${cell(r.status, cols.status)}|${cell(r.when, cols.when)}|${cell(r.sessId, cols.sessId)}|${cell(r.summary, cols.summary)}|` + ); + + return [hr, headerRow, hr, ...dataRows, hr].join('\n'); +} diff --git a/skills/ck/hooks/session-start.mjs b/skills/ck/hooks/session-start.mjs new file mode 100644 index 00000000..c3ecee66 --- /dev/null +++ b/skills/ck/hooks/session-start.mjs @@ -0,0 +1,224 @@ +#!/usr/bin/env node +/** + * ck — Context Keeper v2 + * session-start.mjs — inject compact project context on session start. + * + * Injects ~100 tokens (not ~2,500 like v1). + * SKILL.md is injected separately (still small at ~50 lines). + * + * Features: + * - Compact 5-line summary for registered projects + * - Unsaved session detection → "Last session wasn't saved. Run /ck:save." + * - Git activity since last session + * - Goal mismatch detection vs CLAUDE.md + * - Mini portfolio for unregistered directories + */ + +import { readFileSync, writeFileSync, existsSync } from 'fs'; +import { resolve } from 'path'; +import { homedir } from 'os'; +import { spawnSync } from 'child_process'; + +const CK_HOME = resolve(homedir(), '.claude', 'ck'); +const PROJECTS_FILE = resolve(CK_HOME, 'projects.json'); +const CURRENT_SESSION = resolve(CK_HOME, 'current-session.json'); +const SKILL_FILE = resolve(homedir(), '.claude', 'skills', 'ck', 'SKILL.md'); + +// ─── Helpers ────────────────────────────────────────────────────────────────── + +function readJson(p) { + try { return JSON.parse(readFileSync(p, 'utf8')); } catch { return null; } +} + +function daysAgo(dateStr) { + if (!dateStr) return 'unknown'; + const diff = Math.floor((Date.now() - new Date(dateStr)) / 86_400_000); + if (diff === 0) return 'today'; + if (diff === 1) return '1 day ago'; + return `${diff} days ago`; +} + +function stalenessIcon(dateStr) { + if (!dateStr) return '○'; + const diff = Math.floor((Date.now() - new Date(dateStr)) / 86_400_000); + return diff < 1 ? '●' : diff <= 5 ? '◐' : '○'; +} + +function gitLogSince(projectPath, sinceDate) { + if (!sinceDate || !existsSync(resolve(projectPath, '.git'))) return null; + try { + const result = spawnSync( + 'git', + ['-C', projectPath, 'log', '--oneline', `--since=${sinceDate}`], + { timeout: 3000, stdio: 'pipe', encoding: 'utf8' }, + ); + if (result.status !== 0) return null; + const output = result.stdout.trim(); + const commits = output.split('\n').filter(Boolean).length; + return commits > 0 ? `${commits} commit${commits !== 1 ? 's' : ''} since last session` : null; + } catch { return null; } +} + +function extractClaudeMdGoal(projectPath) { + const p = resolve(projectPath, 'CLAUDE.md'); + if (!existsSync(p)) return null; + try { + const md = readFileSync(p, 'utf8'); + const m = md.match(/## Current Goal\n([\s\S]*?)(?=\n## |$)/); + return m ? m[1].trim().split('\n')[0].trim() : null; + } catch { return null; } +} + +// ─── Session ID from stdin ──────────────────────────────────────────────────── + +function readSessionId() { + try { + const raw = readFileSync(0, 'utf8'); + return JSON.parse(raw).session_id || null; + } catch { return null; } +} + +// ─── Main ───────────────────────────────────────────────────────────────────── + +function main() { + const cwd = process.env.PWD || process.cwd(); + const sessionId = readSessionId(); + + // Load skill (always inject — now only ~50 lines) + const skill = existsSync(SKILL_FILE) ? readFileSync(SKILL_FILE, 'utf8') : ''; + + const projects = readJson(PROJECTS_FILE) || {}; + const entry = projects[cwd]; + + // Read previous session BEFORE overwriting current-session.json + const prevSession = readJson(CURRENT_SESSION); + + // Write current-session.json + try { + writeFileSync(CURRENT_SESSION, JSON.stringify({ + sessionId, + projectPath: cwd, + projectName: entry?.name || null, + startedAt: new Date().toISOString(), + }, null, 2), 'utf8'); + } catch { /* non-fatal */ } + + const parts = []; + if (skill) parts.push(skill); + + // ── REGISTERED PROJECT ──────────────────────────────────────────────────── + if (entry?.contextDir) { + const contextFile = resolve(CK_HOME, 'contexts', entry.contextDir, 'context.json'); + const context = readJson(contextFile); + + if (context) { + const latest = context.sessions?.[context.sessions.length - 1] || {}; + const sessionDate = latest.date || context.createdAt; + const sessionCount = context.sessions?.length || 0; + const displayName = context.displayName ?? context.name; + + // ── Compact summary block (~100 tokens) ────────────────────────────── + const summaryLines = [ + `ck: ${displayName} | ${daysAgo(sessionDate)} | ${sessionCount} session${sessionCount !== 1 ? 's' : ''}`, + `Goal: ${context.goal || '—'}`, + latest.leftOff ? `Left off: ${latest.leftOff.split('\n')[0]}` : null, + latest.nextSteps?.length ? `Next: ${latest.nextSteps.slice(0, 2).join(' · ')}` : null, + ].filter(Boolean); + + // ── Unsaved session detection ───────────────────────────────────────── + if (prevSession?.sessionId && prevSession.sessionId !== sessionId) { + // Check if previous session ID exists in sessions array + const alreadySaved = context.sessions?.some(s => s.id === prevSession.sessionId); + if (!alreadySaved) { + summaryLines.push(`⚠ Last session wasn't saved — run /ck:save to capture it`); + } + } + + // ── Git activity ────────────────────────────────────────────────────── + const gitLine = gitLogSince(cwd, sessionDate); + if (gitLine) summaryLines.push(`Git: ${gitLine}`); + + // ── Goal mismatch detection ─────────────────────────────────────────── + const claudeMdGoal = extractClaudeMdGoal(cwd); + if (claudeMdGoal && context.goal && + claudeMdGoal.toLowerCase().trim() !== context.goal.toLowerCase().trim()) { + summaryLines.push(`⚠ Goal mismatch — ck: "${context.goal.slice(0, 40)}" · CLAUDE.md: "${claudeMdGoal.slice(0, 40)}"`); + summaryLines.push(` Run /ck:save with updated goal to sync`); + } + + parts.push([ + `---`, + `## ck: ${displayName}`, + ``, + summaryLines.join('\n'), + ].join('\n')); + + // Instruct Claude to display compact briefing at session start + parts.push([ + `---`, + `## ck: SESSION START`, + ``, + `IMPORTANT: Display the following as your FIRST message, verbatim:`, + ``, + '```', + summaryLines.join('\n'), + '```', + ``, + `After the block, add one line: "Ready — what are we working on?"`, + `If you see ⚠ warnings above, mention them briefly after the block.`, + ].join('\n')); + + return parts; + } + } + + // ── NOT IN A REGISTERED PROJECT ──────────────────────────────────────────── + const entries = Object.entries(projects); + if (entries.length === 0) return parts; + + // Load and sort by most recent + const recent = entries + .map(([path, info]) => { + const ctx = readJson(resolve(CK_HOME, 'contexts', info.contextDir, 'context.json')); + const latest = ctx?.sessions?.[ctx.sessions.length - 1] || {}; + return { name: info.name, path, lastDate: latest.date || '', summary: latest.summary || '—', ctx }; + }) + .sort((a, b) => (b.lastDate > a.lastDate ? 1 : -1)) + .slice(0, 3); + + const miniRows = recent.map(p => { + const icon = stalenessIcon(p.lastDate); + const when = daysAgo(p.lastDate); + const name = p.name.padEnd(16).slice(0, 16); + const whenStr = when.padEnd(12).slice(0, 12); + const summary = p.summary.slice(0, 32); + return ` ${name} ${icon} ${whenStr} ${summary}`; + }); + + const miniStatus = [ + `ck — recent projects:`, + ` ${'PROJECT'.padEnd(16)} S ${'LAST SEEN'.padEnd(12)} LAST SESSION`, + ` ${'─'.repeat(68)}`, + ...miniRows, + ``, + `Run /ck:list · /ck:resume · /ck:init to register this folder`, + ].join('\n'); + + parts.push([ + `---`, + `## ck: SESSION START`, + ``, + `IMPORTANT: Display the following as your FIRST message, verbatim:`, + ``, + '```', + miniStatus, + '```', + ].join('\n')); + + return parts; +} + +const parts = main(); +if (parts.length > 0) { + console.log(JSON.stringify({ additionalContext: parts.join('\n\n---\n\n') })); +} diff --git a/skills/continuous-learning-v2/agents/observer-loop.sh b/skills/continuous-learning-v2/agents/observer-loop.sh index c8d02470..e2cad9af 100755 --- a/skills/continuous-learning-v2/agents/observer-loop.sh +++ b/skills/continuous-learning-v2/agents/observer-loop.sh @@ -62,9 +62,16 @@ analyze_observations() { analysis_count=$(wc -l < "$analysis_file" 2>/dev/null || echo 0) echo "[$(date)] Using last $analysis_count of $obs_count observations for analysis" >> "$LOG_FILE" + # Use relative path from PROJECT_DIR for cross-platform compatibility (#842). + # On Windows (Git Bash/MSYS2), absolute paths from mktemp may use MSYS-style + # prefixes (e.g. /c/Users/...) that the Claude subprocess cannot resolve. + analysis_relpath=".observer-tmp/$(basename "$analysis_file")" + prompt_file="$(mktemp "${observer_tmp_dir}/ecc-observer-prompt.XXXXXX")" cat > "$prompt_file" <.md using the Write tool. Do NOT ask for permission to write files, do NOT describe what you would write, and do NOT stop at analysis when a qualifying pattern exists. @@ -117,11 +124,19 @@ PROMPT max_turns=10 fi - # Prevent observe.sh from recording this automated Haiku session as observations + # Ensure CWD is PROJECT_DIR so the relative analysis_relpath resolves correctly + # on all platforms, not just when the observer happens to be launched from the project root. + cd "$PROJECT_DIR" || { echo "[$(date)] Failed to cd to PROJECT_DIR ($PROJECT_DIR), skipping analysis" >> "$LOG_FILE"; rm -f "$prompt_file" "$analysis_file"; return; } + + # Prevent observe.sh from recording this automated Haiku session as observations. + # Pass prompt via -p flag instead of stdin redirect for Windows compatibility (#842). ECC_SKIP_OBSERVE=1 ECC_HOOK_PROFILE=minimal claude --model haiku --max-turns "$max_turns" --print \ --allowedTools "Read,Write" \ - < "$prompt_file" >> "$LOG_FILE" 2>&1 & + -p "$(cat "$prompt_file")" >> "$LOG_FILE" 2>&1 & claude_pid=$! + # prompt_file content was already expanded by the shell; remove early to avoid + # leaving stale temp files during the (potentially long) analysis window. + rm -f "$prompt_file" ( sleep "$timeout_seconds" @@ -135,7 +150,7 @@ PROMPT wait "$claude_pid" exit_code=$? kill "$watchdog_pid" 2>/dev/null || true - rm -f "$prompt_file" "$analysis_file" + rm -f "$analysis_file" if [ "$exit_code" -ne 0 ]; then echo "[$(date)] Claude analysis failed (exit $exit_code)" >> "$LOG_FILE" diff --git a/skills/design-system/SKILL.md b/skills/design-system/SKILL.md index 3bf06a41..e726f6f6 100644 --- a/skills/design-system/SKILL.md +++ b/skills/design-system/SKILL.md @@ -1,3 +1,9 @@ +--- +name: design-system +description: Use this skill to generate or audit design systems, check visual consistency, and review PRs that touch styling. +origin: ECC +--- + # Design System — Generate & Audit Visual Systems ## When to Use diff --git a/skills/git-workflow/SKILL.md b/skills/git-workflow/SKILL.md new file mode 100644 index 00000000..8d1e2523 --- /dev/null +++ b/skills/git-workflow/SKILL.md @@ -0,0 +1,716 @@ +--- +name: git-workflow +description: Git workflow patterns including branching strategies, commit conventions, merge vs rebase, conflict resolution, and collaborative development best practices for teams of all sizes. +origin: ECC +--- + +# Git Workflow Patterns + +Best practices for Git version control, branching strategies, and collaborative development. + +## When to Activate + +- Setting up Git workflow for a new project +- Deciding on branching strategy (GitFlow, trunk-based, GitHub flow) +- Writing commit messages and PR descriptions +- Resolving merge conflicts +- Managing releases and version tags +- Onboarding new team members to Git practices + +## Branching Strategies + +### GitHub Flow (Simple, Recommended for Most) + +Best for continuous deployment and small-to-medium teams. + +``` +main (protected, always deployable) + │ + ├── feature/user-auth → PR → merge to main + ├── feature/payment-flow → PR → merge to main + └── fix/login-bug → PR → merge to main +``` + +**Rules:** +- `main` is always deployable +- Create feature branches from `main` +- Open Pull Request when ready for review +- After approval and CI passes, merge to `main` +- Deploy immediately after merge + +### Trunk-Based Development (High-Velocity Teams) + +Best for teams with strong CI/CD and feature flags. + +``` +main (trunk) + │ + ├── short-lived feature (1-2 days max) + ├── short-lived feature + └── short-lived feature +``` + +**Rules:** +- Everyone commits to `main` or very short-lived branches +- Feature flags hide incomplete work +- CI must pass before merge +- Deploy multiple times per day + +### GitFlow (Complex, Release-Cycle Driven) + +Best for scheduled releases and enterprise projects. + +``` +main (production releases) + │ + └── develop (integration branch) + │ + ├── feature/user-auth + ├── feature/payment + │ + ├── release/1.0.0 → merge to main and develop + │ + └── hotfix/critical → merge to main and develop +``` + +**Rules:** +- `main` contains production-ready code only +- `develop` is the integration branch +- Feature branches from `develop`, merge back to `develop` +- Release branches from `develop`, merge to `main` and `develop` +- Hotfix branches from `main`, merge to both `main` and `develop` + +### When to Use Which + +| Strategy | Team Size | Release Cadence | Best For | +|----------|-----------|-----------------|----------| +| GitHub Flow | Any | Continuous | SaaS, web apps, startups | +| Trunk-Based | 5+ experienced | Multiple/day | High-velocity teams, feature flags | +| GitFlow | 10+ | Scheduled | Enterprise, regulated industries | + +## Commit Messages + +### Conventional Commits Format + +``` +(): + +[optional body] + +[optional footer(s)] +``` + +### Types + +| Type | Use For | Example | +|------|---------|---------| +| `feat` | New feature | `feat(auth): add OAuth2 login` | +| `fix` | Bug fix | `fix(api): handle null response in user endpoint` | +| `docs` | Documentation | `docs(readme): update installation instructions` | +| `style` | Formatting, no code change | `style: fix indentation in login component` | +| `refactor` | Code refactoring | `refactor(db): extract connection pool to module` | +| `test` | Adding/updating tests | `test(auth): add unit tests for token validation` | +| `chore` | Maintenance tasks | `chore(deps): update dependencies` | +| `perf` | Performance improvement | `perf(query): add index to users table` | +| `ci` | CI/CD changes | `ci: add PostgreSQL service to test workflow` | +| `revert` | Revert previous commit | `revert: revert "feat(auth): add OAuth2 login"` | + +### Good vs Bad Examples + +``` +# BAD: Vague, no context +git commit -m "fixed stuff" +git commit -m "updates" +git commit -m "WIP" + +# GOOD: Clear, specific, explains why +git commit -m "fix(api): retry requests on 503 Service Unavailable + +The external API occasionally returns 503 errors during peak hours. +Added exponential backoff retry logic with max 3 attempts. + +Closes #123" +``` + +### Commit Message Template + +Create `.gitmessage` in repo root: + +``` +# (): +# +# Types: feat, fix, docs, style, refactor, test, chore, perf, ci, revert +# Scope: api, ui, db, auth, etc. +# Subject: imperative mood, no period, max 50 chars +# +# [optional body] - explain why, not what +# [optional footer] - Breaking changes, closes #issue +``` + +Enable with: `git config commit.template .gitmessage` + +## Merge vs Rebase + +### Merge (Preserves History) + +```bash +# Creates a merge commit +git checkout main +git merge feature/user-auth + +# Result: +# * merge commit +# |\ +# | * feature commits +# |/ +# * main commits +``` + +**Use when:** +- Merging feature branches into `main` +- You want to preserve exact history +- Multiple people worked on the branch +- The branch has been pushed and others may have based work on it + +### Rebase (Linear History) + +```bash +# Rewrites feature commits onto target branch +git checkout feature/user-auth +git rebase main + +# Result: +# * feature commits (rewritten) +# * main commits +``` + +**Use when:** +- Updating your local feature branch with latest `main` +- You want a linear, clean history +- The branch is local-only (not pushed) +- You're the only one working on the branch + +### Rebase Workflow + +```bash +# Update feature branch with latest main (before PR) +git checkout feature/user-auth +git fetch origin +git rebase origin/main + +# Fix any conflicts +# Tests should still pass + +# Force push (only if you're the only contributor) +git push --force-with-lease origin feature/user-auth +``` + +### When NOT to Rebase + +``` +# NEVER rebase branches that: +- Have been pushed to a shared repository +- Other people have based work on +- Are protected branches (main, develop) +- Are already merged + +# Why: Rebase rewrites history, breaking others' work +``` + +## Pull Request Workflow + +### PR Title Format + +``` +(): + +Examples: +feat(auth): add SSO support for enterprise users +fix(api): resolve race condition in order processing +docs(api): add OpenAPI specification for v2 endpoints +``` + +### PR Description Template + +```markdown +## What + +Brief description of what this PR does. + +## Why + +Explain the motivation and context. + +## How + +Key implementation details worth highlighting. + +## Testing + +- [ ] Unit tests added/updated +- [ ] Integration tests added/updated +- [ ] Manual testing performed + +## Screenshots (if applicable) + +Before/after screenshots for UI changes. + +## Checklist + +- [ ] Code follows project style guidelines +- [ ] Self-review completed +- [ ] Comments added for complex logic +- [ ] Documentation updated +- [ ] No new warnings introduced +- [ ] Tests pass locally +- [ ] Related issues linked + +Closes #123 +``` + +### Code Review Checklist + +**For Reviewers:** + +- [ ] Does the code solve the stated problem? +- [ ] Are there any edge cases not handled? +- [ ] Is the code readable and maintainable? +- [ ] Are there sufficient tests? +- [ ] Are there security concerns? +- [ ] Is the commit history clean (squashed if needed)? + +**For Authors:** + +- [ ] Self-review completed before requesting review +- [ ] CI passes (tests, lint, typecheck) +- [ ] PR size is reasonable (<500 lines ideal) +- [ ] Related to a single feature/fix +- [ ] Description clearly explains the change + +## Conflict Resolution + +### Identify Conflicts + +```bash +# Check for conflicts before merge +git checkout main +git merge feature/user-auth --no-commit --no-ff + +# If conflicts, Git will show: +# CONFLICT (content): Merge conflict in src/auth/login.ts +# Automatic merge failed; fix conflicts and then commit the result. +``` + +### Resolve Conflicts + +```bash +# See conflicted files +git status + +# View conflict markers in file +# <<<<<<< HEAD +# content from main +# ======= +# content from feature branch +# >>>>>>> feature/user-auth + +# Option 1: Manual resolution +# Edit file, remove markers, keep correct content + +# Option 2: Use merge tool +git mergetool + +# Option 3: Accept one side +git checkout --ours src/auth/login.ts # Keep main version +git checkout --theirs src/auth/login.ts # Keep feature version + +# After resolving, stage and commit +git add src/auth/login.ts +git commit +``` + +### Conflict Prevention Strategies + +```bash +# 1. Keep feature branches small and short-lived +# 2. Rebase frequently onto main +git checkout feature/user-auth +git fetch origin +git rebase origin/main + +# 3. Communicate with team about touching shared files +# 4. Use feature flags instead of long-lived branches +# 5. Review and merge PRs promptly +``` + +## Branch Management + +### Naming Conventions + +``` +# Feature branches +feature/user-authentication +feature/JIRA-123-payment-integration + +# Bug fixes +fix/login-redirect-loop +fix/456-null-pointer-exception + +# Hotfixes (production issues) +hotfix/critical-security-patch +hotfix/database-connection-leak + +# Releases +release/1.2.0 +release/2024-01-hotfix + +# Experiments/POCs +experiment/new-caching-strategy +poc/graphql-migration +``` + +### Branch Cleanup + +```bash +# Delete local branches that are merged +git branch --merged main | grep -v "^\*\|main" | xargs -n 1 git branch -d + +# Delete remote-tracking references for deleted remote branches +git fetch -p + +# Delete local branch +git branch -d feature/user-auth # Safe delete (only if merged) +git branch -D feature/user-auth # Force delete + +# Delete remote branch +git push origin --delete feature/user-auth +``` + +### Stash Workflow + +```bash +# Save work in progress +git stash push -m "WIP: user authentication" + +# List stashes +git stash list + +# Apply most recent stash +git stash pop + +# Apply specific stash +git stash apply stash@{2} + +# Drop stash +git stash drop stash@{0} +``` + +## Release Management + +### Semantic Versioning + +``` +MAJOR.MINOR.PATCH + +MAJOR: Breaking changes +MINOR: New features, backward compatible +PATCH: Bug fixes, backward compatible + +Examples: +1.0.0 → 1.0.1 (patch: bug fix) +1.0.1 → 1.1.0 (minor: new feature) +1.1.0 → 2.0.0 (major: breaking change) +``` + +### Creating Releases + +```bash +# Create annotated tag +git tag -a v1.2.0 -m "Release v1.2.0 + +Features: +- Add user authentication +- Implement password reset + +Fixes: +- Resolve login redirect issue + +Breaking Changes: +- None" + +# Push tag to remote +git push origin v1.2.0 + +# List tags +git tag -l + +# Delete tag +git tag -d v1.2.0 +git push origin --delete v1.2.0 +``` + +### Changelog Generation + +```bash +# Generate changelog from commits +git log v1.1.0..v1.2.0 --oneline --no-merges + +# Or use conventional-changelog +npx conventional-changelog -i CHANGELOG.md -s +``` + +## Git Configuration + +### Essential Configs + +```bash +# User identity +git config --global user.name "Your Name" +git config --global user.email "your@email.com" + +# Default branch name +git config --global init.defaultBranch main + +# Pull behavior (rebase instead of merge) +git config --global pull.rebase true + +# Push behavior (push current branch only) +git config --global push.default current + +# Auto-correct typos +git config --global help.autocorrect 1 + +# Better diff algorithm +git config --global diff.algorithm histogram + +# Color output +git config --global color.ui auto +``` + +### Useful Aliases + +```bash +# Add to ~/.gitconfig +[alias] + co = checkout + br = branch + ci = commit + st = status + unstage = reset HEAD -- + last = log -1 HEAD + visual = log --oneline --graph --all + amend = commit --amend --no-edit + wip = commit -m "WIP" + undo = reset --soft HEAD~1 + contributors = shortlog -sn +``` + +### Gitignore Patterns + +```gitignore +# Dependencies +node_modules/ +vendor/ + +# Build outputs +dist/ +build/ +*.o +*.exe + +# Environment files +.env +.env.local +.env.*.local + +# IDE +.idea/ +.vscode/ +*.swp +*.swo + +# OS files +.DS_Store +Thumbs.db + +# Logs +*.log +logs/ + +# Test coverage +coverage/ + +# Cache +.cache/ +*.tsbuildinfo +``` + +## Common Workflows + +### Starting a New Feature + +```bash +# 1. Update main branch +git checkout main +git pull origin main + +# 2. Create feature branch +git checkout -b feature/user-auth + +# 3. Make changes and commit +git add . +git commit -m "feat(auth): implement OAuth2 login" + +# 4. Push to remote +git push -u origin feature/user-auth + +# 5. Create Pull Request on GitHub/GitLab +``` + +### Updating a PR with New Changes + +```bash +# 1. Make additional changes +git add . +git commit -m "feat(auth): add error handling" + +# 2. Push updates +git push origin feature/user-auth +``` + +### Syncing Fork with Upstream + +```bash +# 1. Add upstream remote (once) +git remote add upstream https://github.com/original/repo.git + +# 2. Fetch upstream +git fetch upstream + +# 3. Merge upstream/main into your main +git checkout main +git merge upstream/main + +# 4. Push to your fork +git push origin main +``` + +### Undoing Mistakes + +```bash +# Undo last commit (keep changes) +git reset --soft HEAD~1 + +# Undo last commit (discard changes) +git reset --hard HEAD~1 + +# Undo last commit pushed to remote +git revert HEAD +git push origin main + +# Undo specific file changes +git checkout HEAD -- path/to/file + +# Fix last commit message +git commit --amend -m "New message" + +# Add forgotten file to last commit +git add forgotten-file +git commit --amend --no-edit +``` + +## Git Hooks + +### Pre-Commit Hook + +```bash +#!/bin/bash +# .git/hooks/pre-commit + +# Run linting +npm run lint || exit 1 + +# Run tests +npm test || exit 1 + +# Check for secrets +if git diff --cached | grep -E '(password|api_key|secret)'; then + echo "Possible secret detected. Commit aborted." + exit 1 +fi +``` + +### Pre-Push Hook + +```bash +#!/bin/bash +# .git/hooks/pre-push + +# Run full test suite +npm run test:all || exit 1 + +# Check for console.log statements +if git diff origin/main | grep -E 'console\.log'; then + echo "Remove console.log statements before pushing." + exit 1 +fi +``` + +## Anti-Patterns + +``` +# BAD: Committing directly to main +git checkout main +git commit -m "fix bug" + +# GOOD: Use feature branches and PRs + +# BAD: Committing secrets +git add .env # Contains API keys + +# GOOD: Add to .gitignore, use environment variables + +# BAD: Giant PRs (1000+ lines) +# GOOD: Break into smaller, focused PRs + +# BAD: "Update" commit messages +git commit -m "update" +git commit -m "fix" + +# GOOD: Descriptive messages +git commit -m "fix(auth): resolve redirect loop after login" + +# BAD: Rewriting public history +git push --force origin main + +# GOOD: Use revert for public branches +git revert HEAD + +# BAD: Long-lived feature branches (weeks/months) +# GOOD: Keep branches short (days), rebase frequently + +# BAD: Committing generated files +git add dist/ +git add node_modules/ + +# GOOD: Add to .gitignore +``` + +## Quick Reference + +| Task | Command | +|------|---------| +| Create branch | `git checkout -b feature/name` | +| Switch branch | `git checkout branch-name` | +| Delete branch | `git branch -d branch-name` | +| Merge branch | `git merge branch-name` | +| Rebase branch | `git rebase main` | +| View history | `git log --oneline --graph` | +| View changes | `git diff` | +| Stage changes | `git add .` or `git add -p` | +| Commit | `git commit -m "message"` | +| Push | `git push origin branch-name` | +| Pull | `git pull origin branch-name` | +| Stash | `git stash push -m "message"` | +| Undo last commit | `git reset --soft HEAD~1` | +| Revert commit | `git revert HEAD` | diff --git a/skills/healthcare-cdss-patterns/SKILL.md b/skills/healthcare-cdss-patterns/SKILL.md new file mode 100644 index 00000000..818db026 --- /dev/null +++ b/skills/healthcare-cdss-patterns/SKILL.md @@ -0,0 +1,245 @@ +--- +name: healthcare-cdss-patterns +description: Clinical Decision Support System (CDSS) development patterns. Drug interaction checking, dose validation, clinical scoring (NEWS2, qSOFA), alert severity classification, and integration into EMR workflows. +origin: Health1 Super Speciality Hospitals — contributed by Dr. Keyur Patel +version: "1.0.0" +--- + +# Healthcare CDSS Development Patterns + +Patterns for building Clinical Decision Support Systems that integrate into EMR workflows. CDSS modules are patient safety critical — zero tolerance for false negatives. + +## When to Use + +- Implementing drug interaction checking +- Building dose validation engines +- Implementing clinical scoring systems (NEWS2, qSOFA, APACHE, GCS) +- Designing alert systems for abnormal clinical values +- Building medication order entry with safety checks +- Integrating lab result interpretation with clinical context + +## How It Works + +The CDSS engine is a **pure function library with zero side effects**. Input clinical data, output alerts. This makes it fully testable. + +Three primary modules: + +1. **`checkInteractions(newDrug, currentMeds, allergies)`** — Checks a new drug against current medications and known allergies. Returns severity-sorted `InteractionAlert[]`. Uses `DrugInteractionPair` data model. +2. **`validateDose(drug, dose, route, weight, age, renalFunction)`** — Validates a prescribed dose against weight-based, age-adjusted, and renal-adjusted rules. Returns `DoseValidationResult`. +3. **`calculateNEWS2(vitals)`** — National Early Warning Score 2 from `NEWS2Input`. Returns `NEWS2Result` with total score, risk level, and escalation guidance. + +``` +EMR UI + ↓ (user enters data) +CDSS Engine (pure functions, no side effects) + ├── Drug Interaction Checker + ├── Dose Validator + ├── Clinical Scoring (NEWS2, qSOFA, etc.) + └── Alert Classifier + ↓ (returns alerts) +EMR UI (displays alerts inline, blocks if critical) +``` + +### Drug Interaction Checking + +```typescript +interface DrugInteractionPair { + drugA: string; // generic name + drugB: string; // generic name + severity: 'critical' | 'major' | 'minor'; + mechanism: string; + clinicalEffect: string; + recommendation: string; +} + +function checkInteractions( + newDrug: string, + currentMedications: string[], + allergyList: string[] +): InteractionAlert[] { + if (!newDrug) return []; + const alerts: InteractionAlert[] = []; + for (const current of currentMedications) { + const interaction = findInteraction(newDrug, current); + if (interaction) { + alerts.push({ severity: interaction.severity, pair: [newDrug, current], + message: interaction.clinicalEffect, recommendation: interaction.recommendation }); + } + } + for (const allergy of allergyList) { + if (isCrossReactive(newDrug, allergy)) { + alerts.push({ severity: 'critical', pair: [newDrug, allergy], + message: `Cross-reactivity with documented allergy: ${allergy}`, + recommendation: 'Do not prescribe without allergy consultation' }); + } + } + return alerts.sort((a, b) => severityOrder(a.severity) - severityOrder(b.severity)); +} +``` + +Interaction pairs must be **bidirectional**: if Drug A interacts with Drug B, then Drug B interacts with Drug A. + +### Dose Validation + +```typescript +interface DoseValidationResult { + valid: boolean; + message: string; + suggestedRange: { min: number; max: number; unit: string } | null; + factors: string[]; +} + +function validateDose( + drug: string, + dose: number, + route: 'oral' | 'iv' | 'im' | 'sc' | 'topical', + patientWeight?: number, + patientAge?: number, + renalFunction?: number +): DoseValidationResult { + const rules = getDoseRules(drug, route); + if (!rules) return { valid: true, message: 'No validation rules available', suggestedRange: null, factors: [] }; + const factors: string[] = []; + + // SAFETY: if rules require weight but weight missing, BLOCK (not pass) + if (rules.weightBased) { + if (!patientWeight || patientWeight <= 0) { + return { valid: false, message: `Weight required for ${drug} (mg/kg drug)`, + suggestedRange: null, factors: ['weight_missing'] }; + } + factors.push('weight'); + const maxDose = rules.maxPerKg * patientWeight; + if (dose > maxDose) { + return { valid: false, message: `Dose exceeds max for ${patientWeight}kg`, + suggestedRange: { min: rules.minPerKg * patientWeight, max: maxDose, unit: rules.unit }, factors }; + } + } + + // Age-based adjustment (when rules define age brackets and age is provided) + if (rules.ageAdjusted && patientAge !== undefined) { + factors.push('age'); + const ageMax = rules.getAgeAdjustedMax(patientAge); + if (dose > ageMax) { + return { valid: false, message: `Exceeds age-adjusted max for ${patientAge}yr`, + suggestedRange: { min: rules.typicalMin, max: ageMax, unit: rules.unit }, factors }; + } + } + + // Renal adjustment (when rules define eGFR brackets and eGFR is provided) + if (rules.renalAdjusted && renalFunction !== undefined) { + factors.push('renal'); + const renalMax = rules.getRenalAdjustedMax(renalFunction); + if (dose > renalMax) { + return { valid: false, message: `Exceeds renal-adjusted max for eGFR ${renalFunction}`, + suggestedRange: { min: rules.typicalMin, max: renalMax, unit: rules.unit }, factors }; + } + } + + // Absolute max + if (dose > rules.absoluteMax) { + return { valid: false, message: `Exceeds absolute max ${rules.absoluteMax}${rules.unit}`, + suggestedRange: { min: rules.typicalMin, max: rules.absoluteMax, unit: rules.unit }, + factors: [...factors, 'absolute_max'] }; + } + return { valid: true, message: 'Within range', + suggestedRange: { min: rules.typicalMin, max: rules.typicalMax, unit: rules.unit }, factors }; +} +``` + +### Clinical Scoring: NEWS2 + +```typescript +interface NEWS2Input { + respiratoryRate: number; oxygenSaturation: number; supplementalOxygen: boolean; + temperature: number; systolicBP: number; heartRate: number; + consciousness: 'alert' | 'voice' | 'pain' | 'unresponsive'; +} +interface NEWS2Result { + total: number; // 0-20 + risk: 'low' | 'low-medium' | 'medium' | 'high'; + components: Record; + escalation: string; +} +``` + +Scoring tables must match the Royal College of Physicians specification exactly. + +### Alert Severity and UI Behavior + +| Severity | UI Behavior | Clinician Action Required | +|----------|-------------|--------------------------| +| Critical | Block action. Non-dismissable modal. Red. | Must document override reason to proceed | +| Major | Warning banner inline. Orange. | Must acknowledge before proceeding | +| Minor | Info note inline. Yellow. | Awareness only, no action required | + +Critical alerts must NEVER be auto-dismissed or implemented as toast notifications. Override reasons must be stored in the audit trail. + +### Testing CDSS (Zero Tolerance for False Negatives) + +```typescript +describe('CDSS — Patient Safety', () => { + INTERACTION_PAIRS.forEach(({ drugA, drugB, severity }) => { + it(`detects ${drugA} + ${drugB} (${severity})`, () => { + const alerts = checkInteractions(drugA, [drugB], []); + expect(alerts.length).toBeGreaterThan(0); + expect(alerts[0].severity).toBe(severity); + }); + it(`detects ${drugB} + ${drugA} (reverse)`, () => { + const alerts = checkInteractions(drugB, [drugA], []); + expect(alerts.length).toBeGreaterThan(0); + }); + }); + it('blocks mg/kg drug when weight is missing', () => { + const result = validateDose('gentamicin', 300, 'iv'); + expect(result.valid).toBe(false); + expect(result.factors).toContain('weight_missing'); + }); + it('handles malformed drug data gracefully', () => { + expect(() => checkInteractions('', [], [])).not.toThrow(); + }); +}); +``` + +Pass criteria: 100%. A single missed interaction is a patient safety event. + +### Anti-Patterns + +- Making CDSS checks optional or skippable without documented reason +- Implementing interaction checks as toast notifications +- Using `any` types for drug or clinical data +- Hardcoding interaction pairs instead of using a maintainable data structure +- Silently catching errors in CDSS engine (must surface failures loudly) +- Skipping weight-based validation when weight is not available (must block, not pass) + +## Examples + +### Example 1: Drug Interaction Check + +```typescript +const alerts = checkInteractions('warfarin', ['aspirin', 'metformin'], ['penicillin']); +// [{ severity: 'critical', pair: ['warfarin', 'aspirin'], +// message: 'Increased bleeding risk', recommendation: 'Avoid combination' }] +``` + +### Example 2: Dose Validation + +```typescript +const ok = validateDose('paracetamol', 1000, 'oral', 70, 45); +// { valid: true, suggestedRange: { min: 500, max: 4000, unit: 'mg' } } + +const bad = validateDose('paracetamol', 5000, 'oral', 70, 45); +// { valid: false, message: 'Exceeds absolute max 4000mg' } + +const noWeight = validateDose('gentamicin', 300, 'iv'); +// { valid: false, factors: ['weight_missing'] } +``` + +### Example 3: NEWS2 Scoring + +```typescript +const result = calculateNEWS2({ + respiratoryRate: 24, oxygenSaturation: 93, supplementalOxygen: true, + temperature: 38.5, systolicBP: 100, heartRate: 110, consciousness: 'voice' +}); +// { total: 13, risk: 'high', escalation: 'Urgent clinical review. Consider ICU.' } +``` diff --git a/skills/healthcare-emr-patterns/SKILL.md b/skills/healthcare-emr-patterns/SKILL.md new file mode 100644 index 00000000..af004d70 --- /dev/null +++ b/skills/healthcare-emr-patterns/SKILL.md @@ -0,0 +1,159 @@ +--- +name: healthcare-emr-patterns +description: EMR/EHR development patterns for healthcare applications. Clinical safety, encounter workflows, prescription generation, clinical decision support integration, and accessibility-first UI for medical data entry. +origin: Health1 Super Speciality Hospitals — contributed by Dr. Keyur Patel +version: "1.0.0" +--- + +# Healthcare EMR Development Patterns + +Patterns for building Electronic Medical Record (EMR) and Electronic Health Record (EHR) systems. Prioritizes patient safety, clinical accuracy, and practitioner efficiency. + +## When to Use + +- Building patient encounter workflows (complaint, exam, diagnosis, prescription) +- Implementing clinical note-taking (structured + free text + voice-to-text) +- Designing prescription/medication modules with drug interaction checking +- Integrating Clinical Decision Support Systems (CDSS) +- Building lab result displays with reference range highlighting +- Implementing audit trails for clinical data +- Designing healthcare-accessible UIs for clinical data entry + +## How It Works + +### Patient Safety First + +Every design decision must be evaluated against: "Could this harm a patient?" + +- Drug interactions MUST alert, not silently pass +- Abnormal lab values MUST be visually flagged +- Critical vitals MUST trigger escalation workflows +- No clinical data modification without audit trail + +### Single-Page Encounter Flow + +Clinical encounters should flow vertically on a single page — no tab switching: + +``` +Patient Header (sticky — always visible) +├── Demographics, allergies, active medications +│ +Encounter Flow (vertical scroll) +├── 1. Chief Complaint (structured templates + free text) +├── 2. History of Present Illness +├── 3. Physical Examination (system-wise) +├── 4. Vitals (auto-trigger clinical scoring) +├── 5. Diagnosis (ICD-10/SNOMED search) +├── 6. Medications (drug DB + interaction check) +├── 7. Investigations (lab/radiology orders) +├── 8. Plan & Follow-up +└── 9. Sign / Lock / Print +``` + +### Smart Template System + +```typescript +interface ClinicalTemplate { + id: string; + name: string; // e.g., "Chest Pain" + chips: string[]; // clickable symptom chips + requiredFields: string[]; // mandatory data points + redFlags: string[]; // triggers non-dismissable alert + icdSuggestions: string[]; // pre-mapped diagnosis codes +} +``` + +Red flags in any template must trigger a visible, non-dismissable alert — NOT a toast notification. + +### Medication Safety Pattern + +``` +User selects drug + → Check current medications for interactions + → Check encounter medications for interactions + → Check patient allergies + → Validate dose against weight/age/renal function + → If CRITICAL interaction: BLOCK prescribing entirely + → Clinician must document override reason to proceed past a block + → If MAJOR interaction: display warning, require acknowledgment + → Log all alerts and override reasons in audit trail +``` + +Critical interactions **block prescribing by default**. The clinician must explicitly override with a documented reason stored in the audit trail. The system never silently allows a critical interaction. + +### Locked Encounter Pattern + +Once a clinical encounter is signed: +- No edits allowed — only an addendum (a separate linked record) +- Both original and addendum appear in the patient timeline +- Audit trail captures who signed, when, and any addendum records + +### UI Patterns for Clinical Data + +**Vitals Display:** Current values with normal range highlighting (green/yellow/red), trend arrows vs previous, clinical scoring auto-calculated (NEWS2, qSOFA), escalation guidance inline. + +**Lab Results Display:** Normal range highlighting, previous value comparison, critical values with non-dismissable alert, collection/analysis timestamps, pending orders with expected turnaround. + +**Prescription PDF:** One-click generation with patient demographics, allergies, diagnosis, drug details (generic + brand, dose, route, frequency, duration), clinician signature block. + +### Accessibility for Healthcare + +Healthcare UIs have stricter requirements than typical web apps: +- 4.5:1 minimum contrast (WCAG AA) — clinicians work in varied lighting +- Large touch targets (44x44px minimum) — for gloved/rushed interaction +- Keyboard navigation — for power users entering data rapidly +- No color-only indicators — always pair color with text/icon (colorblind clinicians) +- Screen reader labels on all form fields +- No auto-dismissing toasts for clinical alerts — clinician must actively acknowledge + +### Anti-Patterns + +- Storing clinical data in browser localStorage +- Silent failures in drug interaction checking +- Dismissable toasts for critical clinical alerts +- Tab-based encounter UIs that fragment the clinical workflow +- Allowing edits to signed/locked encounters +- Displaying clinical data without audit trail +- Using `any` type for clinical data structures + +## Examples + +### Example 1: Patient Encounter Flow + +``` +Doctor opens encounter for Patient #4521 + → Sticky header shows: "Rajesh M, 58M, Allergies: Penicillin, Active Meds: Metformin 500mg" + → Chief Complaint: selects "Chest Pain" template + → Clicks chips: "substernal", "radiating to left arm", "crushing" + → Red flag "crushing substernal chest pain" triggers non-dismissable alert + → Examination: CVS system — "S1 S2 normal, no murmur" + → Vitals: HR 110, BP 90/60, SpO2 94% + → NEWS2 auto-calculates: score 8, risk HIGH, escalation alert shown + → Diagnosis: searches "ACS" → selects ICD-10 I21.9 + → Medications: selects Aspirin 300mg + → CDSS checks against Metformin: no interaction + → Signs encounter → locked, addendum-only from this point +``` + +### Example 2: Medication Safety Workflow + +``` +Doctor prescribes Warfarin for Patient #4521 + → CDSS detects: Warfarin + Aspirin = CRITICAL interaction + → UI: red non-dismissable modal blocks prescribing + → Doctor clicks "Override with reason" + → Types: "Benefits outweigh risks — monitored INR protocol" + → Override reason + alert stored in audit trail + → Prescription proceeds with documented override +``` + +### Example 3: Locked Encounter + Addendum + +``` +Encounter #E-2024-0891 signed by Dr. Shah at 14:30 + → All fields locked — no edit buttons visible + → "Add Addendum" button available + → Dr. Shah clicks addendum, adds: "Lab results received — Troponin elevated" + → New record E-2024-0891-A1 linked to original + → Timeline shows both: original encounter + addendum with timestamps +``` diff --git a/skills/healthcare-eval-harness/SKILL.md b/skills/healthcare-eval-harness/SKILL.md new file mode 100644 index 00000000..967d797e --- /dev/null +++ b/skills/healthcare-eval-harness/SKILL.md @@ -0,0 +1,207 @@ +--- +name: healthcare-eval-harness +description: Patient safety evaluation harness for healthcare application deployments. Automated test suites for CDSS accuracy, PHI exposure, clinical workflow integrity, and integration compliance. Blocks deployments on safety failures. +origin: Health1 Super Speciality Hospitals — contributed by Dr. Keyur Patel +version: "1.0.0" +--- + +# Healthcare Eval Harness — Patient Safety Verification + +Automated verification system for healthcare application deployments. A single CRITICAL failure blocks deployment. Patient safety is non-negotiable. + +> **Note:** Examples use Jest as the reference test runner. Adapt commands for your framework (Vitest, pytest, PHPUnit, etc.) — the test categories and pass thresholds are framework-agnostic. + +## When to Use + +- Before any deployment of EMR/EHR applications +- After modifying CDSS logic (drug interactions, dose validation, scoring) +- After changing database schemas that touch patient data +- After modifying authentication or access control +- During CI/CD pipeline configuration for healthcare apps +- After resolving merge conflicts in clinical modules + +## How It Works + +The eval harness runs five test categories in order. The first three (CDSS Accuracy, PHI Exposure, Data Integrity) are CRITICAL gates requiring 100% pass rate — a single failure blocks deployment. The remaining two (Clinical Workflow, Integration) are HIGH gates requiring 95%+ pass rate. + +Each category maps to a Jest test path pattern. The CI pipeline runs CRITICAL gates with `--bail` (stop on first failure) and enforces coverage thresholds with `--coverage --coverageThreshold`. + +### Eval Categories + +**1. CDSS Accuracy (CRITICAL — 100% required)** + +Tests all clinical decision support logic: drug interaction pairs (both directions), dose validation rules, clinical scoring vs published specs, no false negatives, no silent failures. + +```bash +npx jest --testPathPattern='tests/cdss' --bail --ci --coverage +``` + +**2. PHI Exposure (CRITICAL — 100% required)** + +Tests for protected health information leaks: API error responses, console output, URL parameters, browser storage, cross-facility isolation, unauthenticated access, service role key absence. + +```bash +npx jest --testPathPattern='tests/security/phi' --bail --ci +``` + +**3. Data Integrity (CRITICAL — 100% required)** + +Tests clinical data safety: locked encounters, audit trail entries, cascade delete protection, concurrent edit handling, no orphaned records. + +```bash +npx jest --testPathPattern='tests/data-integrity' --bail --ci +``` + +**4. Clinical Workflow (HIGH — 95%+ required)** + +Tests end-to-end flows: encounter lifecycle, template rendering, medication sets, drug/diagnosis search, prescription PDF, red flag alerts. + +```bash +tmp_json=$(mktemp) +npx jest --testPathPattern='tests/clinical' --ci --json --outputFile="$tmp_json" || true +total=$(jq '.numTotalTests // 0' "$tmp_json") +passed=$(jq '.numPassedTests // 0' "$tmp_json") +if [ "$total" -eq 0 ]; then + echo "No clinical tests found" >&2 + exit 1 +fi +rate=$(echo "scale=2; $passed * 100 / $total" | bc) +echo "Clinical pass rate: ${rate}% ($passed/$total)" +``` + +**5. Integration Compliance (HIGH — 95%+ required)** + +Tests external systems: HL7 message parsing (v2.x), FHIR validation, lab result mapping, malformed message handling. + +```bash +tmp_json=$(mktemp) +npx jest --testPathPattern='tests/integration' --ci --json --outputFile="$tmp_json" || true +total=$(jq '.numTotalTests // 0' "$tmp_json") +passed=$(jq '.numPassedTests // 0' "$tmp_json") +if [ "$total" -eq 0 ]; then + echo "No integration tests found" >&2 + exit 1 +fi +rate=$(echo "scale=2; $passed * 100 / $total" | bc) +echo "Integration pass rate: ${rate}% ($passed/$total)" +``` + +### Pass/Fail Matrix + +| Category | Threshold | On Failure | +|----------|-----------|------------| +| CDSS Accuracy | 100% | **BLOCK deployment** | +| PHI Exposure | 100% | **BLOCK deployment** | +| Data Integrity | 100% | **BLOCK deployment** | +| Clinical Workflow | 95%+ | WARN, allow with review | +| Integration | 95%+ | WARN, allow with review | + +### CI/CD Integration + +```yaml +name: Healthcare Safety Gate +on: [push, pull_request] + +jobs: + safety-gate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: '20' + - run: npm ci + + # CRITICAL gates — 100% required, bail on first failure + - name: CDSS Accuracy + run: npx jest --testPathPattern='tests/cdss' --bail --ci --coverage --coverageThreshold='{"global":{"branches":80,"functions":80,"lines":80}}' + + - name: PHI Exposure Check + run: npx jest --testPathPattern='tests/security/phi' --bail --ci + + - name: Data Integrity + run: npx jest --testPathPattern='tests/data-integrity' --bail --ci + + # HIGH gates — 95%+ required, custom threshold check + # HIGH gates — 95%+ required + - name: Clinical Workflows + run: | + TMP_JSON=$(mktemp) + npx jest --testPathPattern='tests/clinical' --ci --json --outputFile="$TMP_JSON" || true + TOTAL=$(jq '.numTotalTests // 0' "$TMP_JSON") + PASSED=$(jq '.numPassedTests // 0' "$TMP_JSON") + if [ "$TOTAL" -eq 0 ]; then + echo "::error::No clinical tests found"; exit 1 + fi + RATE=$(echo "scale=2; $PASSED * 100 / $TOTAL" | bc) + echo "Pass rate: ${RATE}% ($PASSED/$TOTAL)" + if (( $(echo "$RATE < 95" | bc -l) )); then + echo "::warning::Clinical pass rate ${RATE}% below 95%" + fi + + - name: Integration Compliance + run: | + TMP_JSON=$(mktemp) + npx jest --testPathPattern='tests/integration' --ci --json --outputFile="$TMP_JSON" || true + TOTAL=$(jq '.numTotalTests // 0' "$TMP_JSON") + PASSED=$(jq '.numPassedTests // 0' "$TMP_JSON") + if [ "$TOTAL" -eq 0 ]; then + echo "::error::No integration tests found"; exit 1 + fi + RATE=$(echo "scale=2; $PASSED * 100 / $TOTAL" | bc) + echo "Pass rate: ${RATE}% ($PASSED/$TOTAL)" + if (( $(echo "$RATE < 95" | bc -l) )); then + echo "::warning::Integration pass rate ${RATE}% below 95%" + fi +``` + +### Anti-Patterns + +- Skipping CDSS tests "because they passed last time" +- Setting CRITICAL thresholds below 100% +- Using `--no-bail` on CRITICAL test suites +- Mocking the CDSS engine in integration tests (must test real logic) +- Allowing deployments when safety gate is red +- Running tests without `--coverage` on CDSS suites + +## Examples + +### Example 1: Run All Critical Gates Locally + +```bash +npx jest --testPathPattern='tests/cdss' --bail --ci --coverage && \ +npx jest --testPathPattern='tests/security/phi' --bail --ci && \ +npx jest --testPathPattern='tests/data-integrity' --bail --ci +``` + +### Example 2: Check HIGH Gate Pass Rate + +```bash +tmp_json=$(mktemp) +npx jest --testPathPattern='tests/clinical' --ci --json --outputFile="$tmp_json" || true +jq '{ + passed: (.numPassedTests // 0), + total: (.numTotalTests // 0), + rate: (if (.numTotalTests // 0) == 0 then 0 else ((.numPassedTests // 0) / (.numTotalTests // 1) * 100) end) +}' "$tmp_json" +# Expected: { "passed": 21, "total": 22, "rate": 95.45 } +``` + +### Example 3: Eval Report + +``` +## Healthcare Eval: 2026-03-27 [commit abc1234] + +### Patient Safety: PASS + +| Category | Tests | Pass | Fail | Status | +|----------|-------|------|------|--------| +| CDSS Accuracy | 39 | 39 | 0 | PASS | +| PHI Exposure | 8 | 8 | 0 | PASS | +| Data Integrity | 12 | 12 | 0 | PASS | +| Clinical Workflow | 22 | 21 | 1 | 95.5% PASS | +| Integration | 6 | 6 | 0 | PASS | + +### Coverage: 84% (target: 80%+) +### Verdict: SAFE TO DEPLOY +``` diff --git a/skills/healthcare-phi-compliance/SKILL.md b/skills/healthcare-phi-compliance/SKILL.md new file mode 100644 index 00000000..d8822185 --- /dev/null +++ b/skills/healthcare-phi-compliance/SKILL.md @@ -0,0 +1,145 @@ +--- +name: healthcare-phi-compliance +description: Protected Health Information (PHI) and Personally Identifiable Information (PII) compliance patterns for healthcare applications. Covers data classification, access control, audit trails, encryption, and common leak vectors. +origin: Health1 Super Speciality Hospitals — contributed by Dr. Keyur Patel +version: "1.0.0" +--- + +# Healthcare PHI/PII Compliance Patterns + +Patterns for protecting patient data, clinician data, and financial data in healthcare applications. Applicable to HIPAA (US), DISHA (India), GDPR (EU), and general healthcare data protection. + +## When to Use + +- Building any feature that touches patient records +- Implementing access control or authentication for clinical systems +- Designing database schemas for healthcare data +- Building APIs that return patient or clinician data +- Implementing audit trails or logging +- Reviewing code for data exposure vulnerabilities +- Setting up Row-Level Security (RLS) for multi-tenant healthcare systems + +## How It Works + +Healthcare data protection operates on three layers: **classification** (what is sensitive), **access control** (who can see it), and **audit** (who did see it). + +### Data Classification + +**PHI (Protected Health Information)** — any data that can identify a patient AND relates to their health: patient name, date of birth, address, phone, email, national ID numbers (SSN, Aadhaar, NHS number), medical record numbers, diagnoses, medications, lab results, imaging, insurance policy and claim details, appointment and admission records, or any combination of the above. + +**PII (Non-patient-sensitive data)** in healthcare systems: clinician/staff personal details, doctor fee structures and payout amounts, employee salary and bank details, vendor payment information. + +### Access Control: Row-Level Security + +```sql +ALTER TABLE patients ENABLE ROW LEVEL SECURITY; + +-- Scope access by facility +CREATE POLICY "staff_read_own_facility" + ON patients FOR SELECT TO authenticated + USING (facility_id IN ( + SELECT facility_id FROM staff_assignments + WHERE user_id = auth.uid() AND role IN ('doctor','nurse','lab_tech','admin') + )); + +-- Audit log: insert-only (tamper-proof) +CREATE POLICY "audit_insert_only" ON audit_log FOR INSERT + TO authenticated WITH CHECK (user_id = auth.uid()); +CREATE POLICY "audit_no_modify" ON audit_log FOR UPDATE USING (false); +CREATE POLICY "audit_no_delete" ON audit_log FOR DELETE USING (false); +``` + +### Audit Trail + +Every PHI access or modification must be logged: + +```typescript +interface AuditEntry { + timestamp: string; + user_id: string; + patient_id: string; + action: 'create' | 'read' | 'update' | 'delete' | 'print' | 'export'; + resource_type: string; + resource_id: string; + changes?: { before: object; after: object }; + ip_address: string; + session_id: string; +} +``` + +### Common Leak Vectors + +**Error messages:** Never include patient-identifying data in error messages thrown to the client. Log details server-side only. + +**Console output:** Never log full patient objects. Use opaque internal record IDs (UUIDs) — not medical record numbers, national IDs, or names. + +**URL parameters:** Never put patient-identifying data in query strings or path segments that could appear in logs or browser history. Use opaque UUIDs only. + +**Browser storage:** Never store PHI in localStorage or sessionStorage. Keep PHI in memory only, fetch on demand. + +**Service role keys:** Never use the service_role key in client-side code. Always use the anon/publishable key and let RLS enforce access. + +**Logs and monitoring:** Never log full patient records. Use opaque record IDs only (not medical record numbers). Sanitize stack traces before sending to error tracking services. + +### Database Schema Tagging + +Mark PHI/PII columns at the schema level: + +```sql +COMMENT ON COLUMN patients.name IS 'PHI: patient_name'; +COMMENT ON COLUMN patients.dob IS 'PHI: date_of_birth'; +COMMENT ON COLUMN patients.aadhaar IS 'PHI: national_id'; +COMMENT ON COLUMN doctor_payouts.amount IS 'PII: financial'; +``` + +### Deployment Checklist + +Before every deployment: +- No PHI in error messages or stack traces +- No PHI in console.log/console.error +- No PHI in URL parameters +- No PHI in browser storage +- No service_role key in client code +- RLS enabled on all PHI/PII tables +- Audit trail for all data modifications +- Session timeout configured +- API authentication on all PHI endpoints +- Cross-facility data isolation verified + +## Examples + +### Example 1: Safe vs Unsafe Error Handling + +```typescript +// BAD — leaks PHI in error +throw new Error(`Patient ${patient.name} not found in ${patient.facility}`); + +// GOOD — generic error, details logged server-side with opaque IDs only +logger.error('Patient lookup failed', { recordId: patient.id, facilityId }); +throw new Error('Record not found'); +``` + +### Example 2: RLS Policy for Multi-Facility Isolation + +```sql +-- Doctor at Facility A cannot see Facility B patients +CREATE POLICY "facility_isolation" + ON patients FOR SELECT TO authenticated + USING (facility_id IN ( + SELECT facility_id FROM staff_assignments WHERE user_id = auth.uid() + )); + +-- Test: login as doctor-facility-a, query facility-b patients +-- Expected: 0 rows returned +``` + +### Example 3: Safe Logging + +```typescript +// BAD — logs identifiable patient data +console.log('Processing patient:', patient); + +// GOOD — logs only opaque internal record ID +console.log('Processing record:', patient.id); +// Note: even patient.id should be an opaque UUID, not a medical record number +``` diff --git a/skills/laravel-plugin-discovery/SKILL.md b/skills/laravel-plugin-discovery/SKILL.md new file mode 100644 index 00000000..56dc8bbf --- /dev/null +++ b/skills/laravel-plugin-discovery/SKILL.md @@ -0,0 +1,229 @@ +--- +name: laravel-plugin-discovery +description: Discover and evaluate Laravel packages via LaraPlugins.io MCP. Use when the user wants to find plugins, check package health, or assess Laravel/PHP compatibility. +origin: ECC +--- + +# Laravel Plugin Discovery + +Find, evaluate, and choose healthy Laravel packages using the LaraPlugins.io MCP server. + +## When to Use + +- User wants to find Laravel packages for a specific feature (e.g. "auth", "permissions", "admin panel") +- User asks "what package should I use for..." or "is there a Laravel package for..." +- User wants to check if a package is actively maintained +- User needs to verify Laravel version compatibility +- User wants to assess package health before adding to a project + +## MCP Requirement + +LaraPlugins MCP server must be configured. Add to your `~/.claude.json` mcpServers: + +```json +"laraplugins": { + "type": "http", + "url": "https://laraplugins.io/mcp/plugins" +} +``` + +No API key required — the server is free for the Laravel community. + +## MCP Tools + +The LaraPlugins MCP provides two primary tools: + +### SearchPluginTool + +Search packages by keyword, health score, vendor, and version compatibility. + +**Parameters:** +- `text_search` (string, optional): Keyword to search (e.g. "permission", "admin", "api") +- `health_score` (string, optional): Filter by health band — `Healthy`, `Medium`, `Unhealthy`, or `Unrated` +- `laravel_compatibility` (string, optional): Filter by Laravel version — `"5"`, `"6"`, `"7"`, `"8"`, `"9"`, `"10"`, `"11"`, `"12"`, `"13"` +- `php_compatibility` (string, optional): Filter by PHP version — `"7.4"`, `"8.0"`, `"8.1"`, `"8.2"`, `"8.3"`, `"8.4"`, `"8.5"` +- `vendor_filter` (string, optional): Filter by vendor name (e.g. "spatie", "laravel") +- `page` (number, optional): Page number for pagination + +### GetPluginDetailsTool + +Fetch detailed metrics, readme content, and version history for a specific package. + +**Parameters:** +- `package` (string, required): Full Composer package name (e.g. "spatie/laravel-permission") +- `include_versions` (boolean, optional): Include version history in response + +--- + +## How It Works + +### Finding Packages + +When the user wants to discover packages for a feature: + +1. Use `SearchPluginTool` with relevant keywords +2. Apply filters for health score, Laravel version, or PHP version +3. Review the results with package names, descriptions, and health indicators + +### Evaluating Packages + +When the user wants to assess a specific package: + +1. Use `GetPluginDetailsTool` with the package name +2. Review health score, last updated date, Laravel version support +3. Check vendor reputation and risk indicators + +### Checking Compatibility + +When the user needs Laravel or PHP version compatibility: + +1. Search with `laravel_compatibility` filter set to their version +2. Or get details on a specific package to see its supported versions + +--- + +## Examples + +### Example: Find Authentication Packages + +``` +SearchPluginTool({ + text_search: "authentication", + health_score: "Healthy" +}) +``` + +Returns packages matching "authentication" with healthy status: +- spatie/laravel-permission +- laravel/breeze +- laravel/passport +- etc. + +### Example: Find Laravel 12 Compatible Packages + +``` +SearchPluginTool({ + text_search: "admin panel", + laravel_compatibility: "12" +}) +``` + +Returns packages compatible with Laravel 12. + +### Example: Get Package Details + +``` +GetPluginDetailsTool({ + package: "spatie/laravel-permission", + include_versions: true +}) +``` + +Returns: +- Health score and last activity +- Laravel/PHP version support +- Vendor reputation (risk score) +- Version history +- Brief description + +### Example: Find Packages by Vendor + +``` +SearchPluginTool({ + vendor_filter: "spatie", + health_score: "Healthy" +}) +``` + +Returns all healthy packages from vendor "spatie". + +--- + +## Filtering Best Practices + +### By Health Score + +| Health Band | Meaning | +|-------------|---------| +| `Healthy` | Active maintenance, recent updates | +| `Medium` | Occasional updates, may need attention | +| `Unhealthy` | Abandoned or infrequently maintained | +| `Unrated` | Not yet assessed | + +**Recommendation**: Prefer `Healthy` packages for production applications. + +### By Laravel Version + +| Version | Notes | +|---------|-------| +| `13` | Latest Laravel | +| `12` | Current stable | +| `11` | Still widely used | +| `10` | Legacy but common | +| `5`-`9` | Deprecated | + +**Recommendation**: Match the target project's Laravel version. + +### Combining Filters + +```typescript +// Find healthy, Laravel 12 compatible packages for permissions +SearchPluginTool({ + text_search: "permission", + health_score: "Healthy", + laravel_compatibility: "12" +}) +``` + +--- + +## Response Interpretation + +### Search Results + +Each result includes: +- Package name (e.g. `spatie/laravel-permission`) +- Brief description +- Health status indicator +- Laravel version support badges + +### Package Details + +The detailed response includes: +- **Health Score**: Numeric or band indicator +- **Last Activity**: When the package was last updated +- **Laravel Support**: Version compatibility matrix +- **PHP Support**: PHP version compatibility +- **Risk Score**: Vendor trust indicators +- **Version History**: Recent release timeline + +--- + +## Common Use Cases + +| Scenario | Recommended Approach | +|----------|---------------------| +| "What package for auth?" | Search "auth" with healthy filter | +| "Is spatie/package still maintained?" | Get details, check health score | +| "Need Laravel 12 packages" | Search with laravel_compatibility: "12" | +| "Find admin panel packages" | Search "admin panel", review results | +| "Check vendor reputation" | Search by vendor, check details | + +--- + +## Best Practices + +1. **Always filter by health** — Use `health_score: "Healthy"` for production projects +2. **Match Laravel version** — Always check `laravel_compatibility` matches the target project +3. **Check vendor reputation** — Prefer packages from known vendors (spatie, laravel, etc.) +4. **Review before recommending** — Use GetPluginDetailsTool for a comprehensive assessment +5. **No API key needed** — The MCP is free, no authentication required + +--- + +## Related Skills + +- `laravel-patterns` — Laravel architecture and patterns +- `laravel-tdd` — Test-driven development for Laravel +- `laravel-security` — Laravel security best practices +- `documentation-lookup` — General library documentation lookup (Context7) diff --git a/skills/laravel-verification/SKILL.md b/skills/laravel-verification/SKILL.md index 138b00b2..9f2e80f7 100644 --- a/skills/laravel-verification/SKILL.md +++ b/skills/laravel-verification/SKILL.md @@ -1,6 +1,6 @@ --- name: laravel-verification -description: Verification loop for Laravel projects: env checks, linting, static analysis, tests with coverage, security scans, and deployment readiness. +description: "Verification loop for Laravel projects: env checks, linting, static analysis, tests with coverage, security scans, and deployment readiness." origin: ECC --- diff --git a/skills/product-lens/SKILL.md b/skills/product-lens/SKILL.md index 63ff7b27..91ab415e 100644 --- a/skills/product-lens/SKILL.md +++ b/skills/product-lens/SKILL.md @@ -1,3 +1,9 @@ +--- +name: product-lens +description: Use this skill to validate the "why" before building, run product diagnostics, and convert vague ideas into specs. +origin: ECC +--- + # Product Lens — Think Before You Build ## When to Use diff --git a/skills/repo-scan/SKILL.md b/skills/repo-scan/SKILL.md new file mode 100644 index 00000000..88963c62 --- /dev/null +++ b/skills/repo-scan/SKILL.md @@ -0,0 +1,78 @@ +--- +name: repo-scan +description: Cross-stack source code asset audit — classifies every file, detects embedded third-party libraries, and delivers actionable four-level verdicts per module with interactive HTML reports. +origin: community +--- + +# repo-scan + +> Every ecosystem has its own dependency manager, but no tool looks across C++, Android, iOS, and Web to tell you: how much code is actually yours, what's third-party, and what's dead weight. + +## When to Use + +- Taking over a large legacy codebase and need a structural overview +- Before major refactoring — identify what's core, what's duplicate, what's dead +- Auditing third-party dependencies embedded directly in source (not declared in package managers) +- Preparing architecture decision records for monorepo reorganization + +## Installation + +```bash +# Fetch only the pinned commit for reproducibility +mkdir -p ~/.claude/skills/repo-scan +git init repo-scan +cd repo-scan +git remote add origin https://github.com/haibindev/repo-scan.git +git fetch --depth 1 origin 2742664 +git checkout --detach FETCH_HEAD +cp -r . ~/.claude/skills/repo-scan +``` + +> Review the source before installing any agent skill. + +## Core Capabilities + +| Capability | Description | +|---|---| +| **Cross-stack scanning** | C/C++, Java/Android, iOS (OC/Swift), Web (TS/JS/Vue) in one pass | +| **File classification** | Every file tagged as project code, third-party, or build artifact | +| **Library detection** | 50+ known libraries (FFmpeg, Boost, OpenSSL…) with version extraction | +| **Four-level verdicts** | Core Asset / Extract & Merge / Rebuild / Deprecate | +| **HTML reports** | Interactive dark-theme pages with drill-down navigation | +| **Monorepo support** | Hierarchical scanning with summary + sub-project reports | + +## Analysis Depth Levels + +| Level | Files Read | Use Case | +|---|---|---| +| `fast` | 1-2 per module | Quick inventory of huge directories | +| `standard` | 2-5 per module | Default audit with full dependency + architecture checks | +| `deep` | 5-10 per module | Adds thread safety, memory management, API consistency | +| `full` | All files | Pre-merge comprehensive review | + +## How It Works + +1. **Classify the repo surface**: enumerate files, then tag each as project code, embedded third-party code, or build artifact. +2. **Detect embedded libraries**: inspect directory names, headers, license files, and version markers to identify bundled dependencies and likely versions. +3. **Score each module**: group files by module or subsystem, then assign one of the four verdicts based on ownership, duplication, and maintenance cost. +4. **Highlight structural risks**: call out dead-weight artifacts, duplicated wrappers, outdated vendored code, and modules that should be extracted, rebuilt, or deprecated. +5. **Produce the report**: return a concise summary plus the interactive HTML output with per-module drill-down so the audit can be reviewed asynchronously. + +## Examples + +On a 50,000-file C++ monorepo: +- Found FFmpeg 2.x (2015 vintage) still in production +- Discovered the same SDK wrapper duplicated 3 times +- Identified 636 MB of committed Debug/ipch/obj build artifacts +- Classified: 3 MB project code vs 596 MB third-party + +## Best Practices + +- Start with `standard` depth for first-time audits +- Use `fast` for monorepos with 100+ modules to get a quick inventory +- Run `deep` incrementally on modules flagged for refactoring +- Review the cross-module analysis for duplicate detection across sub-projects + +## Links + +- [GitHub Repository](https://github.com/haibindev/repo-scan) diff --git a/skills/safety-guard/SKILL.md b/skills/safety-guard/SKILL.md index 6b347c02..7870073b 100644 --- a/skills/safety-guard/SKILL.md +++ b/skills/safety-guard/SKILL.md @@ -1,3 +1,9 @@ +--- +name: safety-guard +description: Use this skill to prevent destructive operations when working on production systems or running agents autonomously. +origin: ECC +--- + # Safety Guard — Prevent Destructive Operations ## When to Use diff --git a/skills/tdd-workflow/SKILL.md b/skills/tdd-workflow/SKILL.md index 90c0a6df..c8e5d06f 100644 --- a/skills/tdd-workflow/SKILL.md +++ b/skills/tdd-workflow/SKILL.md @@ -47,6 +47,19 @@ ALWAYS write tests first, then implement code to make tests pass. - Browser automation - UI interactions +### 4. Git Checkpoints +- If the repository is under Git, create a checkpoint commit after each TDD stage +- Do not squash or rewrite these checkpoint commits until the workflow is complete +- Each checkpoint commit message must describe the stage and the exact evidence captured +- Count only commits created on the current active branch for the current task +- Do not treat commits from other branches, earlier unrelated work, or distant branch history as valid checkpoint evidence +- Before treating a checkpoint as satisfied, verify that the commit is reachable from the current `HEAD` on the active branch and belongs to the current task sequence +- The preferred compact workflow is: + - one commit for failing test added and RED validated + - one commit for minimal fix applied and GREEN validated + - one optional commit for refactor complete +- Separate evidence-only commits are not required if the test commit clearly corresponds to RED and the fix commit clearly corresponds to GREEN + ## TDD Workflow Steps ### Step 1: Write User Journeys @@ -87,6 +100,29 @@ npm test # Tests should fail - we haven't implemented yet ``` +This step is mandatory and is the RED gate for all production changes. + +Before modifying business logic or other production code, you must verify a valid RED state via one of these paths: +- Runtime RED: + - The relevant test target compiles successfully + - The new or changed test is actually executed + - The result is RED +- Compile-time RED: + - The new test newly instantiates, references, or exercises the buggy code path + - The compile failure is itself the intended RED signal +- In either case, the failure is caused by the intended business-logic bug, undefined behavior, or missing implementation +- The failure is not caused only by unrelated syntax errors, broken test setup, missing dependencies, or unrelated regressions + +A test that was only written but not compiled and executed does not count as RED. + +Do not edit production code until this RED state is confirmed. + +If the repository is under Git, create a checkpoint commit immediately after this stage is validated. +Recommended commit message format: +- `test: add reproducer for ` +- This commit may also serve as the RED validation checkpoint if the reproducer was compiled and executed and failed for the intended reason +- Verify that this checkpoint commit is on the current active branch before continuing + ### Step 4: Implement Code Write minimal code to make tests pass: @@ -97,12 +133,24 @@ export async function searchMarkets(query: string) { } ``` +If the repository is under Git, stage the minimal fix now but defer the checkpoint commit until GREEN is validated in Step 5. + ### Step 5: Run Tests Again ```bash npm test # Tests should now pass ``` +Rerun the same relevant test target after the fix and confirm the previously failing test is now GREEN. + +Only after a valid GREEN result may you proceed to refactor. + +If the repository is under Git, create a checkpoint commit immediately after GREEN is validated. +Recommended commit message format: +- `fix: ` +- The fix commit may also serve as the GREEN validation checkpoint if the same relevant test target was rerun and passed +- Verify that this checkpoint commit is on the current active branch before continuing + ### Step 6: Refactor Improve code quality while keeping tests green: - Remove duplication @@ -110,6 +158,11 @@ Improve code quality while keeping tests green: - Optimize performance - Enhance readability +If the repository is under Git, create a checkpoint commit immediately after refactoring is complete and tests remain green. +Recommended commit message format: +- `refactor: clean up after implementation` +- Verify that this checkpoint commit is on the current active branch before considering the TDD cycle complete + ### Step 7: Verify Coverage ```bash npm run test:coverage diff --git a/tests/hooks/observer-memory.test.js b/tests/hooks/observer-memory.test.js index 47ffe61d..8f91df40 100644 --- a/tests/hooks/observer-memory.test.js +++ b/tests/hooks/observer-memory.test.js @@ -175,7 +175,7 @@ test('prompt references analysis_file not full OBSERVATIONS_FILE', () => { assert.ok(heredocStart > 0, 'Should find prompt heredoc start'); assert.ok(heredocEnd > heredocStart, 'Should find prompt heredoc end'); const promptSection = content.substring(heredocStart, heredocEnd); - assert.ok(promptSection.includes('${analysis_file}'), 'Prompt should point Claude at the sampled analysis file, not the full observations file'); + assert.ok(promptSection.includes('${analysis_relpath}'), 'Prompt should point Claude at the sampled analysis file (via relative path), not the full observations file'); }); // ────────────────────────────────────────────────────── diff --git a/tests/hooks/pre-bash-commit-quality.test.js b/tests/hooks/pre-bash-commit-quality.test.js new file mode 100644 index 00000000..478d34d2 --- /dev/null +++ b/tests/hooks/pre-bash-commit-quality.test.js @@ -0,0 +1,81 @@ +/** + * Tests for scripts/hooks/pre-bash-commit-quality.js + * + * Run with: node tests/hooks/pre-bash-commit-quality.test.js + */ + +const assert = require('assert'); +const fs = require('fs'); +const os = require('os'); +const path = require('path'); +const { spawnSync } = require('child_process'); + +const hook = require('../../scripts/hooks/pre-bash-commit-quality'); + +function test(name, fn) { + try { + fn(); + console.log(` ✓ ${name}`); + return true; + } catch (err) { + console.log(` ✗ ${name}`); + console.log(` Error: ${err.message}`); + return false; + } +} + +function inTempRepo(fn) { + const prevCwd = process.cwd(); + const repoDir = fs.mkdtempSync(path.join(os.tmpdir(), 'pre-bash-commit-quality-')); + + try { + spawnSync('git', ['init'], { cwd: repoDir, stdio: 'pipe', encoding: 'utf8' }); + spawnSync('git', ['config', 'user.name', 'ECC Test'], { cwd: repoDir, stdio: 'pipe', encoding: 'utf8' }); + spawnSync('git', ['config', 'user.email', 'ecc@example.com'], { cwd: repoDir, stdio: 'pipe', encoding: 'utf8' }); + process.chdir(repoDir); + return fn(repoDir); + } finally { + process.chdir(prevCwd); + fs.rmSync(repoDir, { recursive: true, force: true }); + } +} + +let passed = 0; +let failed = 0; + +console.log('\nPre-Bash Commit Quality Hook Tests'); +console.log('==================================\n'); + +if (test('evaluate blocks commits when staged snapshot contains debugger', () => { + inTempRepo(repoDir => { + const filePath = path.join(repoDir, 'index.js'); + fs.writeFileSync(filePath, 'function main() {\n debugger;\n}\n', 'utf8'); + spawnSync('git', ['add', 'index.js'], { cwd: repoDir, stdio: 'pipe', encoding: 'utf8' }); + + const input = JSON.stringify({ tool_input: { command: 'git commit -m "fix: test debugger hook"' } }); + const result = hook.evaluate(input); + + assert.strictEqual(result.output, input, 'should preserve stdin payload'); + assert.strictEqual(result.exitCode, 2, 'should block commit when staged snapshot has debugger'); + }); +})) passed++; else failed++; + +if (test('evaluate inspects staged snapshot instead of newer working tree content', () => { + inTempRepo(repoDir => { + const filePath = path.join(repoDir, 'index.js'); + fs.writeFileSync(filePath, 'function main() {\n return 1;\n}\n', 'utf8'); + spawnSync('git', ['add', 'index.js'], { cwd: repoDir, stdio: 'pipe', encoding: 'utf8' }); + + // Working tree diverges after staging; hook should still inspect staged content. + fs.writeFileSync(filePath, 'function main() {\n debugger;\n return 1;\n}\n', 'utf8'); + + const input = JSON.stringify({ tool_input: { command: 'git commit -m "fix: staged snapshot only"' } }); + const result = hook.evaluate(input); + + assert.strictEqual(result.output, input, 'should preserve stdin payload'); + assert.strictEqual(result.exitCode, 0, 'should ignore unstaged debugger in working tree'); + }); +})) passed++; else failed++; + +console.log(`\nResults: Passed: ${passed}, Failed: ${failed}`); +process.exit(failed > 0 ? 1 : 0); diff --git a/tests/lib/install-config.test.js b/tests/lib/install-config.test.js index 9dc1b5c8..7ff45520 100644 --- a/tests/lib/install-config.test.js +++ b/tests/lib/install-config.test.js @@ -8,6 +8,7 @@ const os = require('os'); const path = require('path'); const { + findDefaultInstallConfigPath, loadInstallConfig, resolveInstallConfigPath, } = require('../../scripts/lib/install/config'); @@ -49,6 +50,32 @@ function runTests() { assert.strictEqual(resolved, path.join(cwd, 'configs', 'ecc-install.json')); })) passed++; else failed++; + if (test('finds the default project install config in the provided cwd', () => { + const cwd = createTempDir('install-config-'); + + try { + const configPath = path.join(cwd, 'ecc-install.json'); + writeJson(configPath, { + version: 1, + profile: 'core', + }); + + assert.strictEqual(findDefaultInstallConfigPath({ cwd }), configPath); + } finally { + cleanup(cwd); + } + })) passed++; else failed++; + + if (test('returns null when no default project install config exists', () => { + const cwd = createTempDir('install-config-'); + + try { + assert.strictEqual(findDefaultInstallConfigPath({ cwd }), null); + } finally { + cleanup(cwd); + } + })) passed++; else failed++; + if (test('loads and normalizes a valid install config', () => { const cwd = createTempDir('install-config-'); diff --git a/tests/plugin-manifest.test.js b/tests/plugin-manifest.test.js new file mode 100644 index 00000000..9f76c72f --- /dev/null +++ b/tests/plugin-manifest.test.js @@ -0,0 +1,277 @@ +/** + * Tests for plugin manifests: + * - .claude-plugin/plugin.json (Claude Code plugin) + * - .codex-plugin/plugin.json (Codex native plugin) + * - .mcp.json (MCP server config at plugin root) + * - .agents/plugins/marketplace.json (Codex marketplace discovery) + * + * Enforces rules from: + * - .claude-plugin/PLUGIN_SCHEMA_NOTES.md (Claude Code validator rules) + * - https://platform.openai.com/docs/codex/plugins (Codex official docs) + * + * Run with: node tests/run-all.js + */ + +'use strict'; + +const assert = require('assert'); +const fs = require('fs'); +const path = require('path'); + +const repoRoot = path.resolve(__dirname, '..'); +const repoRootWithSep = `${repoRoot}${path.sep}`; + +let passed = 0; +let failed = 0; + +function test(name, fn) { + try { + fn(); + console.log(` ✓ ${name}`); + passed++; + } catch (err) { + console.log(` ✗ ${name}`); + console.log(` Error: ${err.message}`); + failed++; + } +} + +function loadJsonObject(filePath, label) { + assert.ok(fs.existsSync(filePath), `Expected ${label} to exist`); + + let parsed; + try { + parsed = JSON.parse(fs.readFileSync(filePath, 'utf8')); + } catch (error) { + assert.fail(`Expected ${label} to contain valid JSON: ${error.message}`); + } + + assert.ok( + parsed && typeof parsed === 'object' && !Array.isArray(parsed), + `Expected ${label} to contain a JSON object`, + ); + + return parsed; +} + +function assertSafeRepoRelativePath(relativePath, label) { + const normalized = path.posix.normalize(relativePath.replace(/\\/g, '/')); + + assert.ok(!path.isAbsolute(relativePath), `${label} must not be absolute: ${relativePath}`); + assert.ok( + !normalized.startsWith('../') && !normalized.includes('/../'), + `${label} must not traverse directories: ${relativePath}`, + ); +} + +// ── Claude plugin manifest ──────────────────────────────────────────────────── +console.log('\n=== .claude-plugin/plugin.json ===\n'); + +const claudePluginPath = path.join(repoRoot, '.claude-plugin', 'plugin.json'); + +test('claude plugin.json exists', () => { + assert.ok(fs.existsSync(claudePluginPath), 'Expected .claude-plugin/plugin.json to exist'); +}); + +const claudePlugin = loadJsonObject(claudePluginPath, '.claude-plugin/plugin.json'); + +test('claude plugin.json has version field', () => { + assert.ok(claudePlugin.version, 'Expected version field'); +}); + +test('claude plugin.json agents is an array', () => { + assert.ok(Array.isArray(claudePlugin.agents), 'Expected agents to be an array (not a string/directory)'); +}); + +test('claude plugin.json agents uses explicit file paths (not directories)', () => { + for (const agentPath of claudePlugin.agents) { + assertSafeRepoRelativePath(agentPath, 'Agent path'); + assert.ok( + agentPath.endsWith('.md'), + `Expected explicit .md file path, got: ${agentPath}`, + ); + assert.ok( + !agentPath.endsWith('/'), + `Expected explicit file path, not directory, got: ${agentPath}`, + ); + } +}); + +test('claude plugin.json all agent files exist', () => { + for (const agentRelPath of claudePlugin.agents) { + assertSafeRepoRelativePath(agentRelPath, 'Agent path'); + const absolute = path.resolve(repoRoot, agentRelPath); + assert.ok( + absolute === repoRoot || absolute.startsWith(repoRootWithSep), + `Agent path resolves outside repo root: ${agentRelPath}`, + ); + assert.ok( + fs.existsSync(absolute), + `Agent file missing: ${agentRelPath}`, + ); + } +}); + +test('claude plugin.json skills is an array', () => { + assert.ok(Array.isArray(claudePlugin.skills), 'Expected skills to be an array'); +}); + +test('claude plugin.json commands is an array', () => { + assert.ok(Array.isArray(claudePlugin.commands), 'Expected commands to be an array'); +}); + +test('claude plugin.json does NOT have explicit hooks declaration', () => { + assert.ok( + !('hooks' in claudePlugin), + 'hooks field must NOT be declared — Claude Code v2.1+ auto-loads hooks/hooks.json by convention', + ); +}); + +// ── Codex plugin manifest ───────────────────────────────────────────────────── +// Per official docs: https://platform.openai.com/docs/codex/plugins +// - .codex-plugin/plugin.json is the required manifest +// - skills, mcpServers, apps are STRING paths relative to plugin root (not arrays) +// - .mcp.json must be at plugin root (NOT inside .codex-plugin/) +console.log('\n=== .codex-plugin/plugin.json ===\n'); + +const codexPluginPath = path.join(repoRoot, '.codex-plugin', 'plugin.json'); + +test('codex plugin.json exists', () => { + assert.ok(fs.existsSync(codexPluginPath), 'Expected .codex-plugin/plugin.json to exist'); +}); + +const codexPlugin = loadJsonObject(codexPluginPath, '.codex-plugin/plugin.json'); + +test('codex plugin.json has name field', () => { + assert.ok(codexPlugin.name, 'Expected name field'); +}); + +test('codex plugin.json has version field', () => { + assert.ok(codexPlugin.version, 'Expected version field'); +}); + +test('codex plugin.json skills is a string (not array) per official spec', () => { + assert.strictEqual( + typeof codexPlugin.skills, + 'string', + 'skills must be a string path per Codex official docs, not an array', + ); +}); + +test('codex plugin.json mcpServers is a string path (not array) per official spec', () => { + assert.strictEqual( + typeof codexPlugin.mcpServers, + 'string', + 'mcpServers must be a string path per Codex official docs', + ); +}); + +test('codex plugin.json mcpServers exactly matches "./.mcp.json"', () => { + assert.strictEqual( + codexPlugin.mcpServers, + './.mcp.json', + 'mcpServers must point exactly to "./.mcp.json" per official docs', + ); + const mcpPath = path.join(repoRoot, codexPlugin.mcpServers.replace(/^\.\//, '')); + assert.ok( + fs.existsSync(mcpPath), + `mcpServers file missing at plugin root: ${codexPlugin.mcpServers}`, + ); +}); + +test('codex plugin.json has interface.displayName', () => { + assert.ok( + codexPlugin.interface && codexPlugin.interface.displayName, + 'Expected interface.displayName for plugin directory presentation', + ); +}); + +// ── .mcp.json at plugin root ────────────────────────────────────────────────── +// Per official docs: keep .mcp.json at plugin root, NOT inside .codex-plugin/ +console.log('\n=== .mcp.json (plugin root) ===\n'); + +const mcpJsonPath = path.join(repoRoot, '.mcp.json'); + +test('.mcp.json exists at plugin root (not inside .codex-plugin/)', () => { + assert.ok(fs.existsSync(mcpJsonPath), 'Expected .mcp.json at repo root (plugin root)'); + assert.ok( + !fs.existsSync(path.join(repoRoot, '.codex-plugin', '.mcp.json')), + '.mcp.json must NOT be inside .codex-plugin/ — only plugin.json belongs there', + ); +}); + +const mcpConfig = loadJsonObject(mcpJsonPath, '.mcp.json'); + +test('.mcp.json has mcpServers object', () => { + assert.ok( + mcpConfig.mcpServers && typeof mcpConfig.mcpServers === 'object', + 'Expected mcpServers object', + ); +}); + +test('.mcp.json includes at least github, context7, and exa servers', () => { + const servers = Object.keys(mcpConfig.mcpServers); + assert.ok(servers.includes('github'), 'Expected github MCP server'); + assert.ok(servers.includes('context7'), 'Expected context7 MCP server'); + assert.ok(servers.includes('exa'), 'Expected exa MCP server'); +}); + +// ── Codex marketplace file ──────────────────────────────────────────────────── +// Per official docs: repo marketplace lives at $REPO_ROOT/.agents/plugins/marketplace.json +console.log('\n=== .agents/plugins/marketplace.json ===\n'); + +const marketplacePath = path.join(repoRoot, '.agents', 'plugins', 'marketplace.json'); + +test('marketplace.json exists at .agents/plugins/', () => { + assert.ok( + fs.existsSync(marketplacePath), + 'Expected .agents/plugins/marketplace.json for Codex repo marketplace discovery', + ); +}); + +const marketplace = loadJsonObject(marketplacePath, '.agents/plugins/marketplace.json'); + +test('marketplace.json has name field', () => { + assert.ok(marketplace.name, 'Expected name field'); +}); + +test('marketplace.json has plugins array with at least one entry', () => { + assert.ok(Array.isArray(marketplace.plugins) && marketplace.plugins.length > 0, 'Expected plugins array'); +}); + +test('marketplace.json plugin entries have required fields', () => { + for (const plugin of marketplace.plugins) { + assert.ok(plugin.name, `Plugin entry missing name`); + assert.ok(plugin.source && plugin.source.source, `Plugin "${plugin.name}" missing source.source`); + assert.ok(plugin.policy && plugin.policy.installation, `Plugin "${plugin.name}" missing policy.installation`); + assert.ok(plugin.category, `Plugin "${plugin.name}" missing category`); + } +}); + +test('marketplace local plugin path resolves to the repo-root Codex bundle', () => { + for (const plugin of marketplace.plugins) { + if (!plugin.source || plugin.source.source !== 'local') { + continue; + } + + const resolvedRoot = path.resolve(path.dirname(marketplacePath), plugin.source.path); + assert.strictEqual( + resolvedRoot, + repoRoot, + `Expected local marketplace path to resolve to repo root, got: ${plugin.source.path}`, + ); + assert.ok( + fs.existsSync(path.join(resolvedRoot, '.codex-plugin', 'plugin.json')), + `Codex plugin manifest missing under resolved marketplace root: ${plugin.source.path}`, + ); + assert.ok( + fs.existsSync(path.join(resolvedRoot, '.mcp.json')), + `Root MCP config missing under resolved marketplace root: ${plugin.source.path}`, + ); + } +}); + +// ── Summary ─────────────────────────────────────────────────────────────────── +console.log(`\nPassed: ${passed}`); +console.log(`Failed: ${failed}`); +process.exit(failed > 0 ? 1 : 0); diff --git a/tests/scripts/catalog.test.js b/tests/scripts/catalog.test.js new file mode 100644 index 00000000..1836b477 --- /dev/null +++ b/tests/scripts/catalog.test.js @@ -0,0 +1,104 @@ +/** + * Tests for scripts/catalog.js + */ + +const assert = require('assert'); +const path = require('path'); +const { execFileSync } = require('child_process'); + +const SCRIPT = path.join(__dirname, '..', '..', 'scripts', 'catalog.js'); + +function run(args = []) { + try { + const stdout = execFileSync('node', [SCRIPT, ...args], { + encoding: 'utf8', + stdio: ['pipe', 'pipe', 'pipe'], + timeout: 10000, + }); + return { code: 0, stdout, stderr: '' }; + } catch (error) { + return { + code: error.status || 1, + stdout: error.stdout || '', + stderr: error.stderr || '', + }; + } +} + +function test(name, fn) { + try { + fn(); + console.log(` \u2713 ${name}`); + return true; + } catch (error) { + console.log(` \u2717 ${name}`); + console.log(` Error: ${error.message}`); + return false; + } +} + +function runTests() { + console.log('\n=== Testing catalog.js ===\n'); + + let passed = 0; + let failed = 0; + + if (test('shows help with no arguments', () => { + const result = run(); + assert.strictEqual(result.code, 0); + assert.ok(result.stdout.includes('Discover ECC install components and profiles')); + })) passed++; else failed++; + + if (test('shows help with an explicit help flag', () => { + const result = run(['--help']); + assert.strictEqual(result.code, 0); + assert.ok(result.stdout.includes('Usage:')); + assert.ok(result.stdout.includes('node scripts/catalog.js show ')); + })) passed++; else failed++; + + if (test('lists install profiles', () => { + const result = run(['profiles']); + assert.strictEqual(result.code, 0); + assert.ok(result.stdout.includes('Install profiles')); + assert.ok(result.stdout.includes('core')); + })) passed++; else failed++; + + if (test('filters components by family and emits JSON', () => { + const result = run(['components', '--family', 'language', '--json']); + assert.strictEqual(result.code, 0, result.stderr); + const parsed = JSON.parse(result.stdout); + assert.ok(Array.isArray(parsed.components)); + assert.ok(parsed.components.length > 0); + assert.ok(parsed.components.every(component => component.family === 'language')); + assert.ok(parsed.components.some(component => component.id === 'lang:typescript')); + assert.ok(parsed.components.every(component => component.id !== 'framework:nextjs')); + })) passed++; else failed++; + + if (test('shows a resolved component payload', () => { + const result = run(['show', 'framework:nextjs', '--json']); + assert.strictEqual(result.code, 0, result.stderr); + const parsed = JSON.parse(result.stdout); + assert.strictEqual(parsed.id, 'framework:nextjs'); + assert.strictEqual(parsed.family, 'framework'); + assert.deepStrictEqual(parsed.moduleIds, ['framework-language']); + assert.ok(Array.isArray(parsed.modules)); + assert.strictEqual(parsed.modules[0].id, 'framework-language'); + })) passed++; else failed++; + + if (test('fails on unknown subcommands', () => { + const result = run(['bogus']); + assert.strictEqual(result.code, 1); + assert.ok(result.stderr.includes('Unknown catalog command')); + })) passed++; else failed++; + + if (test('fails on unknown component ids', () => { + const result = run(['show', 'framework:not-real']); + assert.strictEqual(result.code, 1); + assert.ok(result.stderr.includes('Unknown install component')); + })) passed++; else failed++; + + console.log(`\nResults: Passed: ${passed}, Failed: ${failed}`); + process.exit(failed > 0 ? 1 : 0); +} + +runTests(); diff --git a/tests/scripts/ecc.test.js b/tests/scripts/ecc.test.js index 85cb6dc5..33817d1c 100644 --- a/tests/scripts/ecc.test.js +++ b/tests/scripts/ecc.test.js @@ -65,6 +65,7 @@ function main() { const result = runCli(['--help']); assert.strictEqual(result.status, 0); assert.match(result.stdout, /ECC selective-install CLI/); + assert.match(result.stdout, /catalog/); assert.match(result.stdout, /list-installed/); assert.match(result.stdout, /doctor/); }], @@ -93,6 +94,13 @@ function main() { assert.ok(Array.isArray(payload.profiles)); assert.ok(payload.profiles.length > 0); }], + ['delegates catalog command', () => { + const result = runCli(['catalog', 'show', 'framework:nextjs', '--json']); + assert.strictEqual(result.status, 0, result.stderr); + const payload = parseJson(result.stdout); + assert.strictEqual(payload.id, 'framework:nextjs'); + assert.deepStrictEqual(payload.moduleIds, ['framework-language']); + }], ['delegates lifecycle commands', () => { const homeDir = createTempDir('ecc-cli-home-'); const projectRoot = createTempDir('ecc-cli-project-'); @@ -127,6 +135,11 @@ function main() { assert.strictEqual(result.status, 0, result.stderr); assert.match(result.stdout, /Usage: node scripts\/repair\.js/); }], + ['supports help for the catalog subcommand', () => { + const result = runCli(['help', 'catalog']); + assert.strictEqual(result.status, 0, result.stderr); + assert.match(result.stdout, /node scripts\/catalog\.js show /); + }], ['fails on unknown commands instead of treating them as installs', () => { const result = runCli(['bogus']); assert.strictEqual(result.status, 1); diff --git a/tests/scripts/install-apply.test.js b/tests/scripts/install-apply.test.js index 811ebe2b..1416489c 100644 --- a/tests/scripts/install-apply.test.js +++ b/tests/scripts/install-apply.test.js @@ -22,6 +22,8 @@ function readJson(filePath) { return JSON.parse(fs.readFileSync(filePath, 'utf8')); } +const REPO_ROOT = path.join(__dirname, '..', '..'); + function run(args = [], options = {}) { const env = { ...process.env, @@ -326,6 +328,170 @@ function runTests() { assert.ok(result.stderr.includes('Unknown install module: ghost-module')); })) passed++; else failed++; + if (test('merges hooks into settings.json for claude target install', () => { + const homeDir = createTempDir('install-apply-home-'); + const projectDir = createTempDir('install-apply-project-'); + + try { + const result = run(['--profile', 'core'], { cwd: projectDir, homeDir }); + assert.strictEqual(result.code, 0, result.stderr); + + const claudeRoot = path.join(homeDir, '.claude'); + assert.ok(fs.existsSync(path.join(claudeRoot, 'hooks', 'hooks.json')), 'hooks.json should be copied'); + + const settingsPath = path.join(claudeRoot, 'settings.json'); + assert.ok(fs.existsSync(settingsPath), 'settings.json should exist after install'); + + const settings = readJson(settingsPath); + assert.ok(settings.hooks, 'settings.json should contain hooks key'); + assert.ok(settings.hooks.PreToolUse, 'hooks should include PreToolUse'); + assert.ok(Array.isArray(settings.hooks.PreToolUse), 'PreToolUse should be an array'); + assert.ok(settings.hooks.PreToolUse.length > 0, 'PreToolUse should have entries'); + } finally { + cleanup(homeDir); + cleanup(projectDir); + } + })) passed++; else failed++; + + if (test('preserves existing settings fields and hook entries when merging hooks', () => { + const homeDir = createTempDir('install-apply-home-'); + const projectDir = createTempDir('install-apply-project-'); + + try { + const claudeRoot = path.join(homeDir, '.claude'); + fs.mkdirSync(claudeRoot, { recursive: true }); + fs.writeFileSync( + path.join(claudeRoot, 'settings.json'), + JSON.stringify({ + effortLevel: 'high', + env: { MY_VAR: '1' }, + hooks: { + PreToolUse: [{ matcher: 'Write', hooks: [{ type: 'command', command: 'echo custom-pretool' }] }], + UserPromptSubmit: [{ matcher: '*', hooks: [{ type: 'command', command: 'echo custom-submit' }] }], + }, + }, null, 2) + ); + + const result = run(['--profile', 'core'], { cwd: projectDir, homeDir }); + assert.strictEqual(result.code, 0, result.stderr); + + const settings = readJson(path.join(claudeRoot, 'settings.json')); + assert.strictEqual(settings.effortLevel, 'high', 'existing effortLevel should be preserved'); + assert.deepStrictEqual(settings.env, { MY_VAR: '1' }, 'existing env should be preserved'); + assert.ok(settings.hooks, 'hooks should be merged in'); + assert.ok(settings.hooks.PreToolUse, 'PreToolUse hooks should exist'); + assert.ok( + settings.hooks.PreToolUse.some(entry => JSON.stringify(entry).includes('echo custom-pretool')), + 'existing PreToolUse entries should be preserved' + ); + assert.ok(settings.hooks.PreToolUse.length > 1, 'ECC PreToolUse hooks should be appended'); + assert.deepStrictEqual( + settings.hooks.UserPromptSubmit, + [{ matcher: '*', hooks: [{ type: 'command', command: 'echo custom-submit' }] }], + 'user-defined hook event types should be preserved' + ); + } finally { + cleanup(homeDir); + cleanup(projectDir); + } + })) passed++; else failed++; + + if (test('reinstall does not duplicate managed hook entries', () => { + const homeDir = createTempDir('install-apply-home-'); + const projectDir = createTempDir('install-apply-project-'); + + try { + const firstInstall = run(['--profile', 'core'], { cwd: projectDir, homeDir }); + assert.strictEqual(firstInstall.code, 0, firstInstall.stderr); + + const settingsPath = path.join(homeDir, '.claude', 'settings.json'); + const afterFirstInstall = readJson(settingsPath); + const preToolUseLength = afterFirstInstall.hooks.PreToolUse.length; + + const secondInstall = run(['--profile', 'core'], { cwd: projectDir, homeDir }); + assert.strictEqual(secondInstall.code, 0, secondInstall.stderr); + + const afterSecondInstall = readJson(settingsPath); + assert.strictEqual( + afterSecondInstall.hooks.PreToolUse.length, + preToolUseLength, + 'managed hook entries should not duplicate on reinstall' + ); + } finally { + cleanup(homeDir); + cleanup(projectDir); + } + })) passed++; else failed++; + + if (test('fails when existing settings.json is malformed', () => { + const homeDir = createTempDir('install-apply-home-'); + const projectDir = createTempDir('install-apply-project-'); + + try { + const claudeRoot = path.join(homeDir, '.claude'); + fs.mkdirSync(claudeRoot, { recursive: true }); + const settingsPath = path.join(claudeRoot, 'settings.json'); + fs.writeFileSync(settingsPath, '{ invalid json\n'); + + const result = run(['--profile', 'core'], { cwd: projectDir, homeDir }); + assert.strictEqual(result.code, 1); + assert.ok(result.stderr.includes('Failed to parse existing settings at')); + assert.strictEqual(fs.readFileSync(settingsPath, 'utf8'), '{ invalid json\n'); + assert.ok(!fs.existsSync(path.join(claudeRoot, 'hooks', 'hooks.json')), 'hooks.json should not be copied on validation failure'); + assert.ok(!fs.existsSync(path.join(claudeRoot, 'ecc', 'install-state.json')), 'install state should not be written on validation failure'); + } finally { + cleanup(homeDir); + cleanup(projectDir); + } + })) passed++; else failed++; + + if (test('fails when existing settings.json root is not an object', () => { + const homeDir = createTempDir('install-apply-home-'); + const projectDir = createTempDir('install-apply-project-'); + + try { + const claudeRoot = path.join(homeDir, '.claude'); + fs.mkdirSync(claudeRoot, { recursive: true }); + const settingsPath = path.join(claudeRoot, 'settings.json'); + fs.writeFileSync(settingsPath, '[]\n'); + + const result = run(['--profile', 'core'], { cwd: projectDir, homeDir }); + assert.strictEqual(result.code, 1); + assert.ok(result.stderr.includes('Invalid existing settings at')); + assert.ok(result.stderr.includes('expected a JSON object')); + assert.strictEqual(fs.readFileSync(settingsPath, 'utf8'), '[]\n'); + assert.ok(!fs.existsSync(path.join(claudeRoot, 'hooks', 'hooks.json')), 'hooks.json should not be copied on validation failure'); + assert.ok(!fs.existsSync(path.join(claudeRoot, 'ecc', 'install-state.json')), 'install state should not be written on validation failure'); + } finally { + cleanup(homeDir); + cleanup(projectDir); + } + })) passed++; else failed++; + + if (test('fails when source hooks.json root is not an object before copying files', () => { + const homeDir = createTempDir('install-apply-home-'); + const projectDir = createTempDir('install-apply-project-'); + const sourceHooksPath = path.join(REPO_ROOT, 'hooks', 'hooks.json'); + const originalHooks = fs.readFileSync(sourceHooksPath, 'utf8'); + + try { + fs.writeFileSync(sourceHooksPath, '[]\n'); + + const result = run(['--profile', 'core'], { cwd: projectDir, homeDir }); + assert.strictEqual(result.code, 1); + assert.ok(result.stderr.includes('Invalid hooks config at')); + assert.ok(result.stderr.includes('expected a JSON object')); + + const claudeRoot = path.join(homeDir, '.claude'); + assert.ok(!fs.existsSync(path.join(claudeRoot, 'hooks', 'hooks.json')), 'hooks.json should not be copied when source hooks are invalid'); + assert.ok(!fs.existsSync(path.join(claudeRoot, 'ecc', 'install-state.json')), 'install state should not be written when source hooks are invalid'); + } finally { + fs.writeFileSync(sourceHooksPath, originalHooks); + cleanup(homeDir); + cleanup(projectDir); + } + })) passed++; else failed++; + if (test('installs from ecc-install.json and persists component selections', () => { const homeDir = createTempDir('install-apply-home-'); const projectDir = createTempDir('install-apply-project-'); @@ -358,6 +524,67 @@ function runTests() { } })) passed++; else failed++; + if (test('auto-detects ecc-install.json from the project root', () => { + const homeDir = createTempDir('install-apply-home-'); + const projectDir = createTempDir('install-apply-project-'); + const configPath = path.join(projectDir, 'ecc-install.json'); + + try { + fs.writeFileSync(configPath, JSON.stringify({ + version: 1, + target: 'claude', + profile: 'developer', + include: ['capability:security'], + exclude: ['capability:orchestration'], + }, null, 2)); + + const result = run([], { cwd: projectDir, homeDir }); + assert.strictEqual(result.code, 0, result.stderr); + + assert.ok(fs.existsSync(path.join(homeDir, '.claude', 'skills', 'security-review', 'SKILL.md'))); + assert.ok(!fs.existsSync(path.join(homeDir, '.claude', 'skills', 'dmux-workflows', 'SKILL.md'))); + + const state = readJson(path.join(homeDir, '.claude', 'ecc', 'install-state.json')); + assert.strictEqual(state.request.profile, 'developer'); + assert.deepStrictEqual(state.request.includeComponents, ['capability:security']); + assert.deepStrictEqual(state.request.excludeComponents, ['capability:orchestration']); + assert.ok(state.resolution.selectedModules.includes('security')); + assert.ok(!state.resolution.selectedModules.includes('orchestration')); + } finally { + cleanup(homeDir); + cleanup(projectDir); + } + })) passed++; else failed++; + + if (test('preserves legacy language installs when a project config is present', () => { + const homeDir = createTempDir('install-apply-home-'); + const projectDir = createTempDir('install-apply-project-'); + const configPath = path.join(projectDir, 'ecc-install.json'); + + try { + fs.writeFileSync(configPath, JSON.stringify({ + version: 1, + target: 'claude', + profile: 'developer', + include: ['capability:security'], + }, null, 2)); + + const result = run(['typescript'], { cwd: projectDir, homeDir }); + assert.strictEqual(result.code, 0, result.stderr); + + const state = readJson(path.join(homeDir, '.claude', 'ecc', 'install-state.json')); + assert.strictEqual(state.request.legacyMode, true); + assert.deepStrictEqual(state.request.legacyLanguages, ['typescript']); + assert.strictEqual(state.request.profile, null); + assert.deepStrictEqual(state.request.includeComponents, []); + assert.ok(state.resolution.selectedModules.includes('framework-language')); + assert.ok(!state.resolution.selectedModules.includes('security')); + } finally { + cleanup(homeDir); + cleanup(projectDir); + } + })) passed++; else failed++; + console.log(`\nResults: Passed: ${passed}, Failed: ${failed}`); process.exit(failed > 0 ? 1 : 0); } diff --git a/tests/scripts/install-plan.test.js b/tests/scripts/install-plan.test.js index ad9341a5..c0d14034 100644 --- a/tests/scripts/install-plan.test.js +++ b/tests/scripts/install-plan.test.js @@ -8,11 +8,12 @@ const { execFileSync } = require('child_process'); const SCRIPT = path.join(__dirname, '..', '..', 'scripts', 'install-plan.js'); -function run(args = []) { +function run(args = [], options = {}) { try { const stdout = execFileSync('node', [SCRIPT, ...args], { encoding: 'utf8', stdio: ['pipe', 'pipe', 'pipe'], + cwd: options.cwd, timeout: 10000, }); return { code: 0, stdout, stderr: '' }; @@ -135,6 +136,31 @@ function runTests() { } })) passed++; else failed++; + if (test('auto-detects planning intent from project ecc-install.json', () => { + const configDir = path.join(__dirname, '..', 'fixtures', 'tmp-install-plan-autodetect'); + const configPath = path.join(configDir, 'ecc-install.json'); + + try { + require('fs').mkdirSync(configDir, { recursive: true }); + require('fs').writeFileSync(configPath, JSON.stringify({ + version: 1, + target: 'cursor', + profile: 'core', + include: ['capability:security'], + }, null, 2)); + + const result = run(['--json'], { cwd: configDir }); + assert.strictEqual(result.code, 0, result.stderr); + const parsed = JSON.parse(result.stdout); + assert.strictEqual(parsed.target, 'cursor'); + assert.strictEqual(parsed.profileId, 'core'); + assert.deepStrictEqual(parsed.includedComponentIds, ['capability:security']); + assert.ok(parsed.selectedModuleIds.includes('security')); + } finally { + require('fs').rmSync(configDir, { recursive: true, force: true }); + } + })) passed++; else failed++; + if (test('fails on unknown arguments', () => { const result = run(['--unknown-flag']); assert.strictEqual(result.code, 1); diff --git a/tests/scripts/sync-ecc-to-codex.test.js b/tests/scripts/sync-ecc-to-codex.test.js index e5b9cfe2..3a9281b2 100644 --- a/tests/scripts/sync-ecc-to-codex.test.js +++ b/tests/scripts/sync-ecc-to-codex.test.js @@ -69,8 +69,9 @@ function runTests() { if (test('filesystem-changing calls use argv-form run_or_echo invocations', () => { assert.ok(source.includes('run_or_echo mkdir -p "$BACKUP_DIR"'), 'mkdir should use argv form'); - assert.ok(source.includes('run_or_echo rm -rf "$dest"'), 'rm should use argv form'); - assert.ok(source.includes('run_or_echo cp -R "$skill_dir" "$dest"'), 'recursive copy should use argv form'); + // Skills sync rm/cp calls were removed — Codex reads from ~/.agents/skills/ natively + assert.ok(!source.includes('run_or_echo rm -rf "$dest"'), 'skill sync rm should be removed'); + assert.ok(!source.includes('run_or_echo cp -R "$skill_dir" "$dest"'), 'skill sync cp should be removed'); })) passed++; else failed++; console.log(`\nResults: Passed: ${passed}, Failed: ${failed}`); diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 00000000..50c26622 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,1953 @@ +# This file is generated by running "yarn install" inside your project. +# Manual changes might be lost - proceed with caution! + +__metadata: + version: 8 + cacheKey: 10c0 + +"@bcoe/v8-coverage@npm:^1.0.1": + version: 1.0.2 + resolution: "@bcoe/v8-coverage@npm:1.0.2" + checksum: 10c0/1eb1dc93cc17fb7abdcef21a6e7b867d6aa99a7ec88ec8207402b23d9083ab22a8011213f04b2cf26d535f1d22dc26139b7929e6c2134c254bd1e14ba5e678c3 + languageName: node + linkType: hard + +"@eslint-community/eslint-utils@npm:^4.8.0": + version: 4.9.1 + resolution: "@eslint-community/eslint-utils@npm:4.9.1" + dependencies: + eslint-visitor-keys: "npm:^3.4.3" + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + checksum: 10c0/dc4ab5e3e364ef27e33666b11f4b86e1a6c1d7cbf16f0c6ff87b1619b3562335e9201a3d6ce806221887ff780ec9d828962a290bb910759fd40a674686503f02 + languageName: node + linkType: hard + +"@eslint-community/regexpp@npm:^4.12.1": + version: 4.12.2 + resolution: "@eslint-community/regexpp@npm:4.12.2" + checksum: 10c0/fddcbc66851b308478d04e302a4d771d6917a0b3740dc351513c0da9ca2eab8a1adf99f5e0aa7ab8b13fa0df005c81adeee7e63a92f3effd7d367a163b721c2d + languageName: node + linkType: hard + +"@eslint/config-array@npm:^0.21.1": + version: 0.21.1 + resolution: "@eslint/config-array@npm:0.21.1" + dependencies: + "@eslint/object-schema": "npm:^2.1.7" + debug: "npm:^4.3.1" + minimatch: "npm:^3.1.2" + checksum: 10c0/2f657d4edd6ddcb920579b72e7a5b127865d4c3fb4dda24f11d5c4f445a93ca481aebdbd6bf3291c536f5d034458dbcbb298ee3b698bc6c9dd02900fe87eec3c + languageName: node + linkType: hard + +"@eslint/config-helpers@npm:^0.4.2": + version: 0.4.2 + resolution: "@eslint/config-helpers@npm:0.4.2" + dependencies: + "@eslint/core": "npm:^0.17.0" + checksum: 10c0/92efd7a527b2d17eb1a148409d71d80f9ac160b565ac73ee092252e8bf08ecd08670699f46b306b94f13d22e88ac88a612120e7847570dd7cdc72f234d50dcb4 + languageName: node + linkType: hard + +"@eslint/core@npm:^0.17.0": + version: 0.17.0 + resolution: "@eslint/core@npm:0.17.0" + dependencies: + "@types/json-schema": "npm:^7.0.15" + checksum: 10c0/9a580f2246633bc752298e7440dd942ec421860d1946d0801f0423830e67887e4aeba10ab9a23d281727a978eb93d053d1922a587d502942a713607f40ed704e + languageName: node + linkType: hard + +"@eslint/eslintrc@npm:^3.3.1": + version: 3.3.3 + resolution: "@eslint/eslintrc@npm:3.3.3" + dependencies: + ajv: "npm:^6.12.4" + debug: "npm:^4.3.2" + espree: "npm:^10.0.1" + globals: "npm:^14.0.0" + ignore: "npm:^5.2.0" + import-fresh: "npm:^3.2.1" + js-yaml: "npm:^4.1.1" + minimatch: "npm:^3.1.2" + strip-json-comments: "npm:^3.1.1" + checksum: 10c0/532c7acc7ddd042724c28b1f020bd7bf148fcd4653bb44c8314168b5f772508c842ce4ee070299cac51c5c5757d2124bdcfcef5551c8c58ff9986e3e17f2260d + languageName: node + linkType: hard + +"@eslint/js@npm:9.39.2, @eslint/js@npm:^9.39.2": + version: 9.39.2 + resolution: "@eslint/js@npm:9.39.2" + checksum: 10c0/00f51c52b04ac79faebfaa65a9652b2093b9c924e945479f1f3945473f78aee83cbc76c8d70bbffbf06f7024626575b16d97b66eab16182e1d0d39daff2f26f5 + languageName: node + linkType: hard + +"@eslint/object-schema@npm:^2.1.7": + version: 2.1.7 + resolution: "@eslint/object-schema@npm:2.1.7" + checksum: 10c0/936b6e499853d1335803f556d526c86f5fe2259ed241bc665000e1d6353828edd913feed43120d150adb75570cae162cf000b5b0dfc9596726761c36b82f4e87 + languageName: node + linkType: hard + +"@eslint/plugin-kit@npm:^0.4.1": + version: 0.4.1 + resolution: "@eslint/plugin-kit@npm:0.4.1" + dependencies: + "@eslint/core": "npm:^0.17.0" + levn: "npm:^0.4.1" + checksum: 10c0/51600f78b798f172a9915dffb295e2ffb44840d583427bc732baf12ecb963eb841b253300e657da91d890f4b323d10a1bd12934bf293e3018d8bb66fdce5217b + languageName: node + linkType: hard + +"@humanfs/core@npm:^0.19.1": + version: 0.19.1 + resolution: "@humanfs/core@npm:0.19.1" + checksum: 10c0/aa4e0152171c07879b458d0e8a704b8c3a89a8c0541726c6b65b81e84fd8b7564b5d6c633feadc6598307d34564bd53294b533491424e8e313d7ab6c7bc5dc67 + languageName: node + linkType: hard + +"@humanfs/node@npm:^0.16.6": + version: 0.16.7 + resolution: "@humanfs/node@npm:0.16.7" + dependencies: + "@humanfs/core": "npm:^0.19.1" + "@humanwhocodes/retry": "npm:^0.4.0" + checksum: 10c0/9f83d3cf2cfa37383e01e3cdaead11cd426208e04c44adcdd291aa983aaf72d7d3598844d2fe9ce54896bb1bf8bd4b56883376611c8905a19c44684642823f30 + languageName: node + linkType: hard + +"@humanwhocodes/module-importer@npm:^1.0.1": + version: 1.0.1 + resolution: "@humanwhocodes/module-importer@npm:1.0.1" + checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529 + languageName: node + linkType: hard + +"@humanwhocodes/retry@npm:^0.4.0, @humanwhocodes/retry@npm:^0.4.2": + version: 0.4.3 + resolution: "@humanwhocodes/retry@npm:0.4.3" + checksum: 10c0/3775bb30087d4440b3f7406d5a057777d90e4b9f435af488a4923ef249e93615fb78565a85f173a186a076c7706a81d0d57d563a2624e4de2c5c9c66c486ce42 + languageName: node + linkType: hard + +"@iarna/toml@npm:^2.2.5": + version: 2.2.5 + resolution: "@iarna/toml@npm:2.2.5" + checksum: 10c0/d095381ad4554aca233b7cf5a91f243ef619e5e15efd3157bc640feac320545450d14b394aebbf6f02a2047437ced778ae598d5879a995441ab7b6c0b2c2f201 + languageName: node + linkType: hard + +"@isaacs/cliui@npm:^8.0.2": + version: 8.0.2 + resolution: "@isaacs/cliui@npm:8.0.2" + dependencies: + string-width: "npm:^5.1.2" + string-width-cjs: "npm:string-width@^4.2.0" + strip-ansi: "npm:^7.0.1" + strip-ansi-cjs: "npm:strip-ansi@^6.0.1" + wrap-ansi: "npm:^8.1.0" + wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" + checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e + languageName: node + linkType: hard + +"@istanbuljs/schema@npm:^0.1.2, @istanbuljs/schema@npm:^0.1.3": + version: 0.1.3 + resolution: "@istanbuljs/schema@npm:0.1.3" + checksum: 10c0/61c5286771676c9ca3eb2bd8a7310a9c063fb6e0e9712225c8471c582d157392c88f5353581c8c9adbe0dff98892317d2fdfc56c3499aa42e0194405206a963a + languageName: node + linkType: hard + +"@jridgewell/resolve-uri@npm:^3.1.0": + version: 3.1.2 + resolution: "@jridgewell/resolve-uri@npm:3.1.2" + checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e + languageName: node + linkType: hard + +"@jridgewell/sourcemap-codec@npm:^1.4.14": + version: 1.5.5 + resolution: "@jridgewell/sourcemap-codec@npm:1.5.5" + checksum: 10c0/f9e538f302b63c0ebc06eecb1dd9918dd4289ed36147a0ddce35d6ea4d7ebbda243cda7b2213b6a5e1d8087a298d5cf630fb2bd39329cdecb82017023f6081a0 + languageName: node + linkType: hard + +"@jridgewell/trace-mapping@npm:^0.3.12": + version: 0.3.31 + resolution: "@jridgewell/trace-mapping@npm:0.3.31" + dependencies: + "@jridgewell/resolve-uri": "npm:^3.1.0" + "@jridgewell/sourcemap-codec": "npm:^1.4.14" + checksum: 10c0/4b30ec8cd56c5fd9a661f088230af01e0c1a3888d11ffb6b47639700f71225be21d1f7e168048d6d4f9449207b978a235c07c8f15c07705685d16dc06280e9d9 + languageName: node + linkType: hard + +"@pkgjs/parseargs@npm:^0.11.0": + version: 0.11.0 + resolution: "@pkgjs/parseargs@npm:0.11.0" + checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd + languageName: node + linkType: hard + +"@types/debug@npm:^4.0.0": + version: 4.1.12 + resolution: "@types/debug@npm:4.1.12" + dependencies: + "@types/ms": "npm:*" + checksum: 10c0/5dcd465edbb5a7f226e9a5efd1f399c6172407ef5840686b73e3608ce135eeca54ae8037dcd9f16bdb2768ac74925b820a8b9ecc588a58ca09eca6acabe33e2f + languageName: node + linkType: hard + +"@types/estree@npm:^1.0.6": + version: 1.0.8 + resolution: "@types/estree@npm:1.0.8" + checksum: 10c0/39d34d1afaa338ab9763f37ad6066e3f349444f9052b9676a7cc0252ef9485a41c6d81c9c4e0d26e9077993354edf25efc853f3224dd4b447175ef62bdcc86a5 + languageName: node + linkType: hard + +"@types/istanbul-lib-coverage@npm:^2.0.1": + version: 2.0.6 + resolution: "@types/istanbul-lib-coverage@npm:2.0.6" + checksum: 10c0/3948088654f3eeb45363f1db158354fb013b362dba2a5c2c18c559484d5eb9f6fd85b23d66c0a7c2fcfab7308d0a585b14dadaca6cc8bf89ebfdc7f8f5102fb7 + languageName: node + linkType: hard + +"@types/json-schema@npm:^7.0.15": + version: 7.0.15 + resolution: "@types/json-schema@npm:7.0.15" + checksum: 10c0/a996a745e6c5d60292f36731dd41341339d4eeed8180bb09226e5c8d23759067692b1d88e5d91d72ee83dfc00d3aca8e7bd43ea120516c17922cbcb7c3e252db + languageName: node + linkType: hard + +"@types/katex@npm:^0.16.0": + version: 0.16.8 + resolution: "@types/katex@npm:0.16.8" + checksum: 10c0/0661609353f4f5e62bd2dc78da99e842761c6474b19f2268b195bbe9dbf20e6f766a31155d79eec2e7c3eff4e7eba4b30f4f519e9c6a11c75bb45e257a2ddb69 + languageName: node + linkType: hard + +"@types/ms@npm:*": + version: 2.1.0 + resolution: "@types/ms@npm:2.1.0" + checksum: 10c0/5ce692ffe1549e1b827d99ef8ff71187457e0eb44adbae38fdf7b9a74bae8d20642ee963c14516db1d35fa2652e65f47680fdf679dcbde52bbfadd021f497225 + languageName: node + linkType: hard + +"@types/unist@npm:^2.0.0": + version: 2.0.11 + resolution: "@types/unist@npm:2.0.11" + checksum: 10c0/24dcdf25a168f453bb70298145eb043cfdbb82472db0bc0b56d6d51cd2e484b9ed8271d4ac93000a80da568f2402e9339723db262d0869e2bf13bc58e081768d + languageName: node + linkType: hard + +"acorn-jsx@npm:^5.3.2": + version: 5.3.2 + resolution: "acorn-jsx@npm:5.3.2" + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + checksum: 10c0/4c54868fbef3b8d58927d5e33f0a4de35f59012fe7b12cf9dfbb345fb8f46607709e1c4431be869a23fb63c151033d84c4198fa9f79385cec34fcb1dd53974c1 + languageName: node + linkType: hard + +"acorn@npm:^8.15.0": + version: 8.15.0 + resolution: "acorn@npm:8.15.0" + bin: + acorn: bin/acorn + checksum: 10c0/dec73ff59b7d6628a01eebaece7f2bdb8bb62b9b5926dcad0f8931f2b8b79c2be21f6c68ac095592adb5adb15831a3635d9343e6a91d028bbe85d564875ec3ec + languageName: node + linkType: hard + +"ajv@npm:^6.12.4": + version: 6.14.0 + resolution: "ajv@npm:6.14.0" + dependencies: + fast-deep-equal: "npm:^3.1.1" + fast-json-stable-stringify: "npm:^2.0.0" + json-schema-traverse: "npm:^0.4.1" + uri-js: "npm:^4.2.2" + checksum: 10c0/a2bc39b0555dc9802c899f86990eb8eed6e366cddbf65be43d5aa7e4f3c4e1a199d5460fd7ca4fb3d864000dbbc049253b72faa83b3b30e641ca52cb29a68c22 + languageName: node + linkType: hard + +"ajv@npm:^8.18.0": + version: 8.18.0 + resolution: "ajv@npm:8.18.0" + dependencies: + fast-deep-equal: "npm:^3.1.3" + fast-uri: "npm:^3.0.1" + json-schema-traverse: "npm:^1.0.0" + require-from-string: "npm:^2.0.2" + checksum: 10c0/e7517c426173513a07391be951879932bdf3348feaebd2199f5b901c20f99d60db8cd1591502d4d551dc82f594e82a05c4fe1c70139b15b8937f7afeaed9532f + languageName: node + linkType: hard + +"ansi-regex@npm:^5.0.1": + version: 5.0.1 + resolution: "ansi-regex@npm:5.0.1" + checksum: 10c0/9a64bb8627b434ba9327b60c027742e5d17ac69277960d041898596271d992d4d52ba7267a63ca10232e29f6107fc8a835f6ce8d719b88c5f8493f8254813737 + languageName: node + linkType: hard + +"ansi-regex@npm:^6.0.1": + version: 6.2.2 + resolution: "ansi-regex@npm:6.2.2" + checksum: 10c0/05d4acb1d2f59ab2cf4b794339c7b168890d44dda4bf0ce01152a8da0213aca207802f930442ce8cd22d7a92f44907664aac6508904e75e038fa944d2601b30f + languageName: node + linkType: hard + +"ansi-styles@npm:^4.0.0, ansi-styles@npm:^4.1.0": + version: 4.3.0 + resolution: "ansi-styles@npm:4.3.0" + dependencies: + color-convert: "npm:^2.0.1" + checksum: 10c0/895a23929da416f2bd3de7e9cb4eabd340949328ab85ddd6e484a637d8f6820d485f53933446f5291c3b760cbc488beb8e88573dd0f9c7daf83dccc8fe81b041 + languageName: node + linkType: hard + +"ansi-styles@npm:^6.1.0": + version: 6.2.3 + resolution: "ansi-styles@npm:6.2.3" + checksum: 10c0/23b8a4ce14e18fb854693b95351e286b771d23d8844057ed2e7d083cd3e708376c3323707ec6a24365f7d7eda3ca00327fe04092e29e551499ec4c8b7bfac868 + languageName: node + linkType: hard + +"argparse@npm:^2.0.1": + version: 2.0.1 + resolution: "argparse@npm:2.0.1" + checksum: 10c0/c5640c2d89045371c7cedd6a70212a04e360fd34d6edeae32f6952c63949e3525ea77dbec0289d8213a99bbaeab5abfa860b5c12cf88a2e6cf8106e90dd27a7e + languageName: node + linkType: hard + +"balanced-match@npm:^1.0.0": + version: 1.0.2 + resolution: "balanced-match@npm:1.0.2" + checksum: 10c0/9308baf0a7e4838a82bbfd11e01b1cb0f0cf2893bc1676c27c2a8c0e70cbae1c59120c3268517a8ae7fb6376b4639ef81ca22582611dbee4ed28df945134aaee + languageName: node + linkType: hard + +"balanced-match@npm:^4.0.2": + version: 4.0.4 + resolution: "balanced-match@npm:4.0.4" + checksum: 10c0/07e86102a3eb2ee2a6a1a89164f29d0dbaebd28f2ca3f5ca786f36b8b23d9e417eb3be45a4acf754f837be5ac0a2317de90d3fcb7f4f4dc95720a1f36b26a17b + languageName: node + linkType: hard + +"brace-expansion@npm:^1.1.7": + version: 1.1.12 + resolution: "brace-expansion@npm:1.1.12" + dependencies: + balanced-match: "npm:^1.0.0" + concat-map: "npm:0.0.1" + checksum: 10c0/975fecac2bb7758c062c20d0b3b6288c7cc895219ee25f0a64a9de662dbac981ff0b6e89909c3897c1f84fa353113a721923afdec5f8b2350255b097f12b1f73 + languageName: node + linkType: hard + +"brace-expansion@npm:^2.0.2": + version: 2.0.2 + resolution: "brace-expansion@npm:2.0.2" + dependencies: + balanced-match: "npm:^1.0.0" + checksum: 10c0/6d117a4c793488af86b83172deb6af143e94c17bc53b0b3cec259733923b4ca84679d506ac261f4ba3c7ed37c46018e2ff442f9ce453af8643ecd64f4a54e6cf + languageName: node + linkType: hard + +"brace-expansion@npm:^5.0.2": + version: 5.0.4 + resolution: "brace-expansion@npm:5.0.4" + dependencies: + balanced-match: "npm:^4.0.2" + checksum: 10c0/359cbcfa80b2eb914ca1f3440e92313fbfe7919ee6b274c35db55bec555aded69dac5ee78f102cec90c35f98c20fa43d10936d0cd9978158823c249257e1643a + languageName: node + linkType: hard + +"c8@npm:^10.1.2": + version: 10.1.3 + resolution: "c8@npm:10.1.3" + dependencies: + "@bcoe/v8-coverage": "npm:^1.0.1" + "@istanbuljs/schema": "npm:^0.1.3" + find-up: "npm:^5.0.0" + foreground-child: "npm:^3.1.1" + istanbul-lib-coverage: "npm:^3.2.0" + istanbul-lib-report: "npm:^3.0.1" + istanbul-reports: "npm:^3.1.6" + test-exclude: "npm:^7.0.1" + v8-to-istanbul: "npm:^9.0.0" + yargs: "npm:^17.7.2" + yargs-parser: "npm:^21.1.1" + peerDependencies: + monocart-coverage-reports: ^2 + peerDependenciesMeta: + monocart-coverage-reports: + optional: true + bin: + c8: bin/c8.js + checksum: 10c0/1265ddbcb0e624fe200978e9263faf948cb9694ce8e6b858adbb14f1186de2e6c451aa4aabb821e9eb7f1972859e14691eaf2ff12ad96be7a3fc0e39946fc569 + languageName: node + linkType: hard + +"callsites@npm:^3.0.0": + version: 3.1.0 + resolution: "callsites@npm:3.1.0" + checksum: 10c0/fff92277400eb06c3079f9e74f3af120db9f8ea03bad0e84d9aede54bbe2d44a56cccb5f6cf12211f93f52306df87077ecec5b712794c5a9b5dac6d615a3f301 + languageName: node + linkType: hard + +"chalk@npm:^4.0.0": + version: 4.1.2 + resolution: "chalk@npm:4.1.2" + dependencies: + ansi-styles: "npm:^4.1.0" + supports-color: "npm:^7.1.0" + checksum: 10c0/4a3fef5cc34975c898ffe77141450f679721df9dde00f6c304353fa9c8b571929123b26a0e4617bde5018977eb655b31970c297b91b63ee83bb82aeb04666880 + languageName: node + linkType: hard + +"character-entities-legacy@npm:^3.0.0": + version: 3.0.0 + resolution: "character-entities-legacy@npm:3.0.0" + checksum: 10c0/ec4b430af873661aa754a896a2b55af089b4e938d3d010fad5219299a6b6d32ab175142699ee250640678cd64bdecd6db3c9af0b8759ab7b155d970d84c4c7d1 + languageName: node + linkType: hard + +"character-entities@npm:^2.0.0": + version: 2.0.2 + resolution: "character-entities@npm:2.0.2" + checksum: 10c0/b0c645a45bcc90ff24f0e0140f4875a8436b8ef13b6bcd31ec02cfb2ca502b680362aa95386f7815bdc04b6464d48cf191210b3840d7c04241a149ede591a308 + languageName: node + linkType: hard + +"character-reference-invalid@npm:^2.0.0": + version: 2.0.1 + resolution: "character-reference-invalid@npm:2.0.1" + checksum: 10c0/2ae0dec770cd8659d7e8b0ce24392d83b4c2f0eb4a3395c955dce5528edd4cc030a794cfa06600fcdd700b3f2de2f9b8e40e309c0011c4180e3be64a0b42e6a1 + languageName: node + linkType: hard + +"cliui@npm:^8.0.1": + version: 8.0.1 + resolution: "cliui@npm:8.0.1" + dependencies: + string-width: "npm:^4.2.0" + strip-ansi: "npm:^6.0.1" + wrap-ansi: "npm:^7.0.0" + checksum: 10c0/4bda0f09c340cbb6dfdc1ed508b3ca080f12992c18d68c6be4d9cf51756033d5266e61ec57529e610dacbf4da1c634423b0c1b11037709cc6b09045cbd815df5 + languageName: node + linkType: hard + +"color-convert@npm:^2.0.1": + version: 2.0.1 + resolution: "color-convert@npm:2.0.1" + dependencies: + color-name: "npm:~1.1.4" + checksum: 10c0/37e1150172f2e311fe1b2df62c6293a342ee7380da7b9cfdba67ea539909afbd74da27033208d01d6d5cfc65ee7868a22e18d7e7648e004425441c0f8a15a7d7 + languageName: node + linkType: hard + +"color-name@npm:~1.1.4": + version: 1.1.4 + resolution: "color-name@npm:1.1.4" + checksum: 10c0/a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95 + languageName: node + linkType: hard + +"commander@npm:^8.3.0": + version: 8.3.0 + resolution: "commander@npm:8.3.0" + checksum: 10c0/8b043bb8322ea1c39664a1598a95e0495bfe4ca2fad0d84a92d7d1d8d213e2a155b441d2470c8e08de7c4a28cf2bc6e169211c49e1b21d9f7edc6ae4d9356060 + languageName: node + linkType: hard + +"commander@npm:~14.0.2": + version: 14.0.3 + resolution: "commander@npm:14.0.3" + checksum: 10c0/755652564bbf56ff2ff083313912b326450d3f8d8c85f4b71416539c9a05c3c67dbd206821ca72635bf6b160e2afdefcb458e86b317827d5cb333b69ce7f1a24 + languageName: node + linkType: hard + +"concat-map@npm:0.0.1": + version: 0.0.1 + resolution: "concat-map@npm:0.0.1" + checksum: 10c0/c996b1cfdf95b6c90fee4dae37e332c8b6eb7d106430c17d538034c0ad9a1630cb194d2ab37293b1bdd4d779494beee7786d586a50bd9376fd6f7bcc2bd4c98f + languageName: node + linkType: hard + +"convert-source-map@npm:^2.0.0": + version: 2.0.0 + resolution: "convert-source-map@npm:2.0.0" + checksum: 10c0/8f2f7a27a1a011cc6cc88cc4da2d7d0cfa5ee0369508baae3d98c260bb3ac520691464e5bbe4ae7cdf09860c1d69ecc6f70c63c6e7c7f7e3f18ec08484dc7d9b + languageName: node + linkType: hard + +"cross-spawn@npm:^7.0.6": + version: 7.0.6 + resolution: "cross-spawn@npm:7.0.6" + dependencies: + path-key: "npm:^3.1.0" + shebang-command: "npm:^2.0.0" + which: "npm:^2.0.1" + checksum: 10c0/053ea8b2135caff68a9e81470e845613e374e7309a47731e81639de3eaeb90c3d01af0e0b44d2ab9d50b43467223b88567dfeb3262db942dc063b9976718ffc1 + languageName: node + linkType: hard + +"debug@npm:^4.0.0, debug@npm:^4.3.1, debug@npm:^4.3.2": + version: 4.4.3 + resolution: "debug@npm:4.4.3" + dependencies: + ms: "npm:^2.1.3" + peerDependenciesMeta: + supports-color: + optional: true + checksum: 10c0/d79136ec6c83ecbefd0f6a5593da6a9c91ec4d7ddc4b54c883d6e71ec9accb5f67a1a5e96d00a328196b5b5c86d365e98d8a3a70856aaf16b4e7b1985e67f5a6 + languageName: node + linkType: hard + +"decode-named-character-reference@npm:^1.0.0": + version: 1.3.0 + resolution: "decode-named-character-reference@npm:1.3.0" + dependencies: + character-entities: "npm:^2.0.0" + checksum: 10c0/787f4c87f3b82ea342aa7c2d7b1882b6fb9511bb77f72ae44dcaabea0470bacd1e9c6a0080ab886545019fa0cb3a7109573fad6b61a362844c3a0ac52b36e4bb + languageName: node + linkType: hard + +"deep-extend@npm:^0.6.0, deep-extend@npm:~0.6.0": + version: 0.6.0 + resolution: "deep-extend@npm:0.6.0" + checksum: 10c0/1c6b0abcdb901e13a44c7d699116d3d4279fdb261983122a3783e7273844d5f2537dc2e1c454a23fcf645917f93fbf8d07101c1d03c015a87faa662755212566 + languageName: node + linkType: hard + +"deep-is@npm:^0.1.3": + version: 0.1.4 + resolution: "deep-is@npm:0.1.4" + checksum: 10c0/7f0ee496e0dff14a573dc6127f14c95061b448b87b995fc96c017ce0a1e66af1675e73f1d6064407975bc4ea6ab679497a29fff7b5b9c4e99cb10797c1ad0b4c + languageName: node + linkType: hard + +"dequal@npm:^2.0.0": + version: 2.0.3 + resolution: "dequal@npm:2.0.3" + checksum: 10c0/f98860cdf58b64991ae10205137c0e97d384c3a4edc7f807603887b7c4b850af1224a33d88012009f150861cbee4fa2d322c4cc04b9313bee312e47f6ecaa888 + languageName: node + linkType: hard + +"devlop@npm:^1.0.0": + version: 1.1.0 + resolution: "devlop@npm:1.1.0" + dependencies: + dequal: "npm:^2.0.0" + checksum: 10c0/e0928ab8f94c59417a2b8389c45c55ce0a02d9ac7fd74ef62d01ba48060129e1d594501b77de01f3eeafc7cb00773819b0df74d96251cf20b31c5b3071f45c0e + languageName: node + linkType: hard + +"eastasianwidth@npm:^0.2.0": + version: 0.2.0 + resolution: "eastasianwidth@npm:0.2.0" + checksum: 10c0/26f364ebcdb6395f95124fda411f63137a4bfb5d3a06453f7f23dfe52502905bd84e0488172e0f9ec295fdc45f05c23d5d91baf16bd26f0fe9acd777a188dc39 + languageName: node + linkType: hard + +"ecc-universal@workspace:.": + version: 0.0.0-use.local + resolution: "ecc-universal@workspace:." + dependencies: + "@eslint/js": "npm:^9.39.2" + "@iarna/toml": "npm:^2.2.5" + ajv: "npm:^8.18.0" + c8: "npm:^10.1.2" + eslint: "npm:^9.39.2" + globals: "npm:^17.1.0" + markdownlint-cli: "npm:^0.47.0" + sql.js: "npm:^1.14.1" + bin: + ecc: scripts/ecc.js + ecc-install: scripts/install-apply.js + languageName: unknown + linkType: soft + +"emoji-regex@npm:^8.0.0": + version: 8.0.0 + resolution: "emoji-regex@npm:8.0.0" + checksum: 10c0/b6053ad39951c4cf338f9092d7bfba448cdfd46fe6a2a034700b149ac9ffbc137e361cbd3c442297f86bed2e5f7576c1b54cc0a6bf8ef5106cc62f496af35010 + languageName: node + linkType: hard + +"emoji-regex@npm:^9.2.2": + version: 9.2.2 + resolution: "emoji-regex@npm:9.2.2" + checksum: 10c0/af014e759a72064cf66e6e694a7fc6b0ed3d8db680427b021a89727689671cefe9d04151b2cad51dbaf85d5ba790d061cd167f1cf32eb7b281f6368b3c181639 + languageName: node + linkType: hard + +"entities@npm:^4.4.0": + version: 4.5.0 + resolution: "entities@npm:4.5.0" + checksum: 10c0/5b039739f7621f5d1ad996715e53d964035f75ad3b9a4d38c6b3804bb226e282ffeae2443624d8fdd9c47d8e926ae9ac009c54671243f0c3294c26af7cc85250 + languageName: node + linkType: hard + +"escalade@npm:^3.1.1": + version: 3.2.0 + resolution: "escalade@npm:3.2.0" + checksum: 10c0/ced4dd3a78e15897ed3be74e635110bbf3b08877b0a41be50dcb325ee0e0b5f65fc2d50e9845194d7c4633f327e2e1c6cce00a71b617c5673df0374201d67f65 + languageName: node + linkType: hard + +"escape-string-regexp@npm:^4.0.0": + version: 4.0.0 + resolution: "escape-string-regexp@npm:4.0.0" + checksum: 10c0/9497d4dd307d845bd7f75180d8188bb17ea8c151c1edbf6b6717c100e104d629dc2dfb687686181b0f4b7d732c7dfdc4d5e7a8ff72de1b0ca283a75bbb3a9cd9 + languageName: node + linkType: hard + +"eslint-scope@npm:^8.4.0": + version: 8.4.0 + resolution: "eslint-scope@npm:8.4.0" + dependencies: + esrecurse: "npm:^4.3.0" + estraverse: "npm:^5.2.0" + checksum: 10c0/407f6c600204d0f3705bd557f81bd0189e69cd7996f408f8971ab5779c0af733d1af2f1412066b40ee1588b085874fc37a2333986c6521669cdbdd36ca5058e0 + languageName: node + linkType: hard + +"eslint-visitor-keys@npm:^3.4.3": + version: 3.4.3 + resolution: "eslint-visitor-keys@npm:3.4.3" + checksum: 10c0/92708e882c0a5ffd88c23c0b404ac1628cf20104a108c745f240a13c332a11aac54f49a22d5762efbffc18ecbc9a580d1b7ad034bf5f3cc3307e5cbff2ec9820 + languageName: node + linkType: hard + +"eslint-visitor-keys@npm:^4.2.1": + version: 4.2.1 + resolution: "eslint-visitor-keys@npm:4.2.1" + checksum: 10c0/fcd43999199d6740db26c58dbe0c2594623e31ca307e616ac05153c9272f12f1364f5a0b1917a8e962268fdecc6f3622c1c2908b4fcc2e047a106fe6de69dc43 + languageName: node + linkType: hard + +"eslint@npm:^9.39.2": + version: 9.39.2 + resolution: "eslint@npm:9.39.2" + dependencies: + "@eslint-community/eslint-utils": "npm:^4.8.0" + "@eslint-community/regexpp": "npm:^4.12.1" + "@eslint/config-array": "npm:^0.21.1" + "@eslint/config-helpers": "npm:^0.4.2" + "@eslint/core": "npm:^0.17.0" + "@eslint/eslintrc": "npm:^3.3.1" + "@eslint/js": "npm:9.39.2" + "@eslint/plugin-kit": "npm:^0.4.1" + "@humanfs/node": "npm:^0.16.6" + "@humanwhocodes/module-importer": "npm:^1.0.1" + "@humanwhocodes/retry": "npm:^0.4.2" + "@types/estree": "npm:^1.0.6" + ajv: "npm:^6.12.4" + chalk: "npm:^4.0.0" + cross-spawn: "npm:^7.0.6" + debug: "npm:^4.3.2" + escape-string-regexp: "npm:^4.0.0" + eslint-scope: "npm:^8.4.0" + eslint-visitor-keys: "npm:^4.2.1" + espree: "npm:^10.4.0" + esquery: "npm:^1.5.0" + esutils: "npm:^2.0.2" + fast-deep-equal: "npm:^3.1.3" + file-entry-cache: "npm:^8.0.0" + find-up: "npm:^5.0.0" + glob-parent: "npm:^6.0.2" + ignore: "npm:^5.2.0" + imurmurhash: "npm:^0.1.4" + is-glob: "npm:^4.0.0" + json-stable-stringify-without-jsonify: "npm:^1.0.1" + lodash.merge: "npm:^4.6.2" + minimatch: "npm:^3.1.2" + natural-compare: "npm:^1.4.0" + optionator: "npm:^0.9.3" + peerDependencies: + jiti: "*" + peerDependenciesMeta: + jiti: + optional: true + bin: + eslint: bin/eslint.js + checksum: 10c0/bb88ca8fd16bb7e1ac3e13804c54d41c583214460c0faa7b3e7c574e69c5600c7122295500fb4b0c06067831111db740931e98da1340329527658e1cf80073d3 + languageName: node + linkType: hard + +"espree@npm:^10.0.1, espree@npm:^10.4.0": + version: 10.4.0 + resolution: "espree@npm:10.4.0" + dependencies: + acorn: "npm:^8.15.0" + acorn-jsx: "npm:^5.3.2" + eslint-visitor-keys: "npm:^4.2.1" + checksum: 10c0/c63fe06131c26c8157b4083313cb02a9a54720a08e21543300e55288c40e06c3fc284bdecf108d3a1372c5934a0a88644c98714f38b6ae8ed272b40d9ea08d6b + languageName: node + linkType: hard + +"esquery@npm:^1.5.0": + version: 1.7.0 + resolution: "esquery@npm:1.7.0" + dependencies: + estraverse: "npm:^5.1.0" + checksum: 10c0/77d5173db450b66f3bc685d11af4c90cffeedb340f34a39af96d43509a335ce39c894fd79233df32d38f5e4e219fa0f7076f6ec90bae8320170ba082c0db4793 + languageName: node + linkType: hard + +"esrecurse@npm:^4.3.0": + version: 4.3.0 + resolution: "esrecurse@npm:4.3.0" + dependencies: + estraverse: "npm:^5.2.0" + checksum: 10c0/81a37116d1408ded88ada45b9fb16dbd26fba3aadc369ce50fcaf82a0bac12772ebd7b24cd7b91fc66786bf2c1ac7b5f196bc990a473efff972f5cb338877cf5 + languageName: node + linkType: hard + +"estraverse@npm:^5.1.0, estraverse@npm:^5.2.0": + version: 5.3.0 + resolution: "estraverse@npm:5.3.0" + checksum: 10c0/1ff9447b96263dec95d6d67431c5e0771eb9776427421260a3e2f0fdd5d6bd4f8e37a7338f5ad2880c9f143450c9b1e4fc2069060724570a49cf9cf0312bd107 + languageName: node + linkType: hard + +"esutils@npm:^2.0.2": + version: 2.0.3 + resolution: "esutils@npm:2.0.3" + checksum: 10c0/9a2fe69a41bfdade834ba7c42de4723c97ec776e40656919c62cbd13607c45e127a003f05f724a1ea55e5029a4cf2de444b13009f2af71271e42d93a637137c7 + languageName: node + linkType: hard + +"fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3": + version: 3.1.3 + resolution: "fast-deep-equal@npm:3.1.3" + checksum: 10c0/40dedc862eb8992c54579c66d914635afbec43350afbbe991235fdcb4e3a8d5af1b23ae7e79bef7d4882d0ecee06c3197488026998fb19f72dc95acff1d1b1d0 + languageName: node + linkType: hard + +"fast-json-stable-stringify@npm:^2.0.0": + version: 2.1.0 + resolution: "fast-json-stable-stringify@npm:2.1.0" + checksum: 10c0/7f081eb0b8a64e0057b3bb03f974b3ef00135fbf36c1c710895cd9300f13c94ba809bb3a81cf4e1b03f6e5285610a61abbd7602d0652de423144dfee5a389c9b + languageName: node + linkType: hard + +"fast-levenshtein@npm:^2.0.6": + version: 2.0.6 + resolution: "fast-levenshtein@npm:2.0.6" + checksum: 10c0/111972b37338bcb88f7d9e2c5907862c280ebf4234433b95bc611e518d192ccb2d38119c4ac86e26b668d75f7f3894f4ff5c4982899afced7ca78633b08287c4 + languageName: node + linkType: hard + +"fast-uri@npm:^3.0.1": + version: 3.1.0 + resolution: "fast-uri@npm:3.1.0" + checksum: 10c0/44364adca566f70f40d1e9b772c923138d47efeac2ae9732a872baafd77061f26b097ba2f68f0892885ad177becd065520412b8ffeec34b16c99433c5b9e2de7 + languageName: node + linkType: hard + +"fdir@npm:^6.5.0": + version: 6.5.0 + resolution: "fdir@npm:6.5.0" + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + checksum: 10c0/e345083c4306b3aed6cb8ec551e26c36bab5c511e99ea4576a16750ddc8d3240e63826cc624f5ae17ad4dc82e68a253213b60d556c11bfad064b7607847ed07f + languageName: node + linkType: hard + +"file-entry-cache@npm:^8.0.0": + version: 8.0.0 + resolution: "file-entry-cache@npm:8.0.0" + dependencies: + flat-cache: "npm:^4.0.0" + checksum: 10c0/9e2b5938b1cd9b6d7e3612bdc533afd4ac17b2fc646569e9a8abbf2eb48e5eb8e316bc38815a3ef6a1b456f4107f0d0f055a614ca613e75db6bf9ff4d72c1638 + languageName: node + linkType: hard + +"find-up@npm:^5.0.0": + version: 5.0.0 + resolution: "find-up@npm:5.0.0" + dependencies: + locate-path: "npm:^6.0.0" + path-exists: "npm:^4.0.0" + checksum: 10c0/062c5a83a9c02f53cdd6d175a37ecf8f87ea5bbff1fdfb828f04bfa021441bc7583e8ebc0872a4c1baab96221fb8a8a275a19809fb93fbc40bd69ec35634069a + languageName: node + linkType: hard + +"flat-cache@npm:^4.0.0": + version: 4.0.1 + resolution: "flat-cache@npm:4.0.1" + dependencies: + flatted: "npm:^3.2.9" + keyv: "npm:^4.5.4" + checksum: 10c0/2c59d93e9faa2523e4fda6b4ada749bed432cfa28c8e251f33b25795e426a1c6dbada777afb1f74fcfff33934fdbdea921ee738fcc33e71adc9d6eca984a1cfc + languageName: node + linkType: hard + +"flatted@npm:^3.2.9": + version: 3.4.2 + resolution: "flatted@npm:3.4.2" + checksum: 10c0/a65b67aae7172d6cdf63691be7de6c5cd5adbdfdfe2e9da1a09b617c9512ed794037741ee53d93114276bff3f93cd3b0d97d54f9b316e1e4885dde6e9ffdf7ed + languageName: node + linkType: hard + +"foreground-child@npm:^3.1.0, foreground-child@npm:^3.1.1": + version: 3.3.1 + resolution: "foreground-child@npm:3.3.1" + dependencies: + cross-spawn: "npm:^7.0.6" + signal-exit: "npm:^4.0.1" + checksum: 10c0/8986e4af2430896e65bc2788d6679067294d6aee9545daefc84923a0a4b399ad9c7a3ea7bd8c0b2b80fdf4a92de4c69df3f628233ff3224260e9c1541a9e9ed3 + languageName: node + linkType: hard + +"get-caller-file@npm:^2.0.5": + version: 2.0.5 + resolution: "get-caller-file@npm:2.0.5" + checksum: 10c0/c6c7b60271931fa752aeb92f2b47e355eac1af3a2673f47c9589e8f8a41adc74d45551c1bc57b5e66a80609f10ffb72b6f575e4370d61cc3f7f3aaff01757cde + languageName: node + linkType: hard + +"get-east-asian-width@npm:^1.3.0": + version: 1.4.0 + resolution: "get-east-asian-width@npm:1.4.0" + checksum: 10c0/4e481d418e5a32061c36fbb90d1b225a254cc5b2df5f0b25da215dcd335a3c111f0c2023ffda43140727a9cafb62dac41d022da82c08f31083ee89f714ee3b83 + languageName: node + linkType: hard + +"glob-parent@npm:^6.0.2": + version: 6.0.2 + resolution: "glob-parent@npm:6.0.2" + dependencies: + is-glob: "npm:^4.0.3" + checksum: 10c0/317034d88654730230b3f43bb7ad4f7c90257a426e872ea0bf157473ac61c99bf5d205fad8f0185f989be8d2fa6d3c7dce1645d99d545b6ea9089c39f838e7f8 + languageName: node + linkType: hard + +"glob@npm:^10.4.1": + version: 10.5.0 + resolution: "glob@npm:10.5.0" + dependencies: + foreground-child: "npm:^3.1.0" + jackspeak: "npm:^3.1.2" + minimatch: "npm:^9.0.4" + minipass: "npm:^7.1.2" + package-json-from-dist: "npm:^1.0.0" + path-scurry: "npm:^1.11.1" + bin: + glob: dist/esm/bin.mjs + checksum: 10c0/100705eddbde6323e7b35e1d1ac28bcb58322095bd8e63a7d0bef1a2cdafe0d0f7922a981b2b48369a4f8c1b077be5c171804534c3509dfe950dde15fbe6d828 + languageName: node + linkType: hard + +"globals@npm:^14.0.0": + version: 14.0.0 + resolution: "globals@npm:14.0.0" + checksum: 10c0/b96ff42620c9231ad468d4c58ff42afee7777ee1c963013ff8aabe095a451d0ceeb8dcd8ef4cbd64d2538cef45f787a78ba3a9574f4a634438963e334471302d + languageName: node + linkType: hard + +"globals@npm:^17.1.0": + version: 17.1.0 + resolution: "globals@npm:17.1.0" + checksum: 10c0/4a4a17847676a09f164b8bdce7df105a4f484d6d44586e374087ba9ec7089cbf4c578b8648838dee9917074199c542ce157ea3c07b266f708dfb1652010900c8 + languageName: node + linkType: hard + +"has-flag@npm:^4.0.0": + version: 4.0.0 + resolution: "has-flag@npm:4.0.0" + checksum: 10c0/2e789c61b7888d66993e14e8331449e525ef42aac53c627cc53d1c3334e768bcb6abdc4f5f0de1478a25beec6f0bd62c7549058b7ac53e924040d4f301f02fd1 + languageName: node + linkType: hard + +"html-escaper@npm:^2.0.0": + version: 2.0.2 + resolution: "html-escaper@npm:2.0.2" + checksum: 10c0/208e8a12de1a6569edbb14544f4567e6ce8ecc30b9394fcaa4e7bb1e60c12a7c9a1ed27e31290817157e8626f3a4f29e76c8747030822eb84a6abb15c255f0a0 + languageName: node + linkType: hard + +"ignore@npm:^5.2.0": + version: 5.3.2 + resolution: "ignore@npm:5.3.2" + checksum: 10c0/f9f652c957983634ded1e7f02da3b559a0d4cc210fca3792cb67f1b153623c9c42efdc1c4121af171e295444459fc4a9201101fb041b1104a3c000bccb188337 + languageName: node + linkType: hard + +"ignore@npm:~7.0.5": + version: 7.0.5 + resolution: "ignore@npm:7.0.5" + checksum: 10c0/ae00db89fe873064a093b8999fe4cc284b13ef2a178636211842cceb650b9c3e390d3339191acb145d81ed5379d2074840cf0c33a20bdbd6f32821f79eb4ad5d + languageName: node + linkType: hard + +"import-fresh@npm:^3.2.1": + version: 3.3.1 + resolution: "import-fresh@npm:3.3.1" + dependencies: + parent-module: "npm:^1.0.0" + resolve-from: "npm:^4.0.0" + checksum: 10c0/bf8cc494872fef783249709385ae883b447e3eb09db0ebd15dcead7d9afe7224dad7bd7591c6b73b0b19b3c0f9640eb8ee884f01cfaf2887ab995b0b36a0cbec + languageName: node + linkType: hard + +"imurmurhash@npm:^0.1.4": + version: 0.1.4 + resolution: "imurmurhash@npm:0.1.4" + checksum: 10c0/8b51313850dd33605c6c9d3fd9638b714f4c4c40250cff658209f30d40da60f78992fb2df5dabee4acf589a6a82bbc79ad5486550754bd9ec4e3fc0d4a57d6a6 + languageName: node + linkType: hard + +"ini@npm:~4.1.0": + version: 4.1.3 + resolution: "ini@npm:4.1.3" + checksum: 10c0/0d27eff094d5f3899dd7c00d0c04ea733ca03a8eb6f9406ce15daac1a81de022cb417d6eaff7e4342451ffa663389c565ffc68d6825eaf686bf003280b945764 + languageName: node + linkType: hard + +"is-alphabetical@npm:^2.0.0": + version: 2.0.1 + resolution: "is-alphabetical@npm:2.0.1" + checksum: 10c0/932367456f17237533fd1fc9fe179df77957271020b83ea31da50e5cc472d35ef6b5fb8147453274ffd251134472ce24eb6f8d8398d96dee98237cdb81a6c9a7 + languageName: node + linkType: hard + +"is-alphanumerical@npm:^2.0.0": + version: 2.0.1 + resolution: "is-alphanumerical@npm:2.0.1" + dependencies: + is-alphabetical: "npm:^2.0.0" + is-decimal: "npm:^2.0.0" + checksum: 10c0/4b35c42b18e40d41378293f82a3ecd9de77049b476f748db5697c297f686e1e05b072a6aaae2d16f54d2a57f85b00cbbe755c75f6d583d1c77d6657bd0feb5a2 + languageName: node + linkType: hard + +"is-decimal@npm:^2.0.0": + version: 2.0.1 + resolution: "is-decimal@npm:2.0.1" + checksum: 10c0/8085dd66f7d82f9de818fba48b9e9c0429cb4291824e6c5f2622e96b9680b54a07a624cfc663b24148b8e853c62a1c987cfe8b0b5a13f5156991afaf6736e334 + languageName: node + linkType: hard + +"is-extglob@npm:^2.1.1": + version: 2.1.1 + resolution: "is-extglob@npm:2.1.1" + checksum: 10c0/5487da35691fbc339700bbb2730430b07777a3c21b9ebaecb3072512dfd7b4ba78ac2381a87e8d78d20ea08affb3f1971b4af629173a6bf435ff8a4c47747912 + languageName: node + linkType: hard + +"is-fullwidth-code-point@npm:^3.0.0": + version: 3.0.0 + resolution: "is-fullwidth-code-point@npm:3.0.0" + checksum: 10c0/bb11d825e049f38e04c06373a8d72782eee0205bda9d908cc550ccb3c59b99d750ff9537982e01733c1c94a58e35400661f57042158ff5e8f3e90cf936daf0fc + languageName: node + linkType: hard + +"is-glob@npm:^4.0.0, is-glob@npm:^4.0.3": + version: 4.0.3 + resolution: "is-glob@npm:4.0.3" + dependencies: + is-extglob: "npm:^2.1.1" + checksum: 10c0/17fb4014e22be3bbecea9b2e3a76e9e34ff645466be702f1693e8f1ee1adac84710d0be0bd9f967d6354036fd51ab7c2741d954d6e91dae6bb69714de92c197a + languageName: node + linkType: hard + +"is-hexadecimal@npm:^2.0.0": + version: 2.0.1 + resolution: "is-hexadecimal@npm:2.0.1" + checksum: 10c0/3eb60fe2f1e2bbc760b927dcad4d51eaa0c60138cf7fc671803f66353ad90c301605b502c7ea4c6bb0548e1c7e79dfd37b73b632652e3b76030bba603a7e9626 + languageName: node + linkType: hard + +"isexe@npm:^2.0.0": + version: 2.0.0 + resolution: "isexe@npm:2.0.0" + checksum: 10c0/228cfa503fadc2c31596ab06ed6aa82c9976eec2bfd83397e7eaf06d0ccf42cd1dfd6743bf9aeb01aebd4156d009994c5f76ea898d2832c1fe342da923ca457d + languageName: node + linkType: hard + +"istanbul-lib-coverage@npm:^3.0.0, istanbul-lib-coverage@npm:^3.2.0": + version: 3.2.2 + resolution: "istanbul-lib-coverage@npm:3.2.2" + checksum: 10c0/6c7ff2106769e5f592ded1fb418f9f73b4411fd5a084387a5410538332b6567cd1763ff6b6cadca9b9eb2c443cce2f7ea7d7f1b8d315f9ce58539793b1e0922b + languageName: node + linkType: hard + +"istanbul-lib-report@npm:^3.0.0, istanbul-lib-report@npm:^3.0.1": + version: 3.0.1 + resolution: "istanbul-lib-report@npm:3.0.1" + dependencies: + istanbul-lib-coverage: "npm:^3.0.0" + make-dir: "npm:^4.0.0" + supports-color: "npm:^7.1.0" + checksum: 10c0/84323afb14392de8b6a5714bd7e9af845cfbd56cfe71ed276cda2f5f1201aea673c7111901227ee33e68e4364e288d73861eb2ed48f6679d1e69a43b6d9b3ba7 + languageName: node + linkType: hard + +"istanbul-reports@npm:^3.1.6": + version: 3.2.0 + resolution: "istanbul-reports@npm:3.2.0" + dependencies: + html-escaper: "npm:^2.0.0" + istanbul-lib-report: "npm:^3.0.0" + checksum: 10c0/d596317cfd9c22e1394f22a8d8ba0303d2074fe2e971887b32d870e4b33f8464b10f8ccbe6847808f7db485f084eba09e6c2ed706b3a978e4b52f07085b8f9bc + languageName: node + linkType: hard + +"jackspeak@npm:^3.1.2": + version: 3.4.3 + resolution: "jackspeak@npm:3.4.3" + dependencies: + "@isaacs/cliui": "npm:^8.0.2" + "@pkgjs/parseargs": "npm:^0.11.0" + dependenciesMeta: + "@pkgjs/parseargs": + optional: true + checksum: 10c0/6acc10d139eaefdbe04d2f679e6191b3abf073f111edf10b1de5302c97ec93fffeb2fdd8681ed17f16268aa9dd4f8c588ed9d1d3bffbbfa6e8bf897cbb3149b9 + languageName: node + linkType: hard + +"js-yaml@npm:^4.1.1, js-yaml@npm:~4.1.1": + version: 4.1.1 + resolution: "js-yaml@npm:4.1.1" + dependencies: + argparse: "npm:^2.0.1" + bin: + js-yaml: bin/js-yaml.js + checksum: 10c0/561c7d7088c40a9bb53cc75becbfb1df6ae49b34b5e6e5a81744b14ae8667ec564ad2527709d1a6e7d5e5fa6d483aa0f373a50ad98d42fde368ec4a190d4fae7 + languageName: node + linkType: hard + +"json-buffer@npm:3.0.1": + version: 3.0.1 + resolution: "json-buffer@npm:3.0.1" + checksum: 10c0/0d1c91569d9588e7eef2b49b59851f297f3ab93c7b35c7c221e288099322be6b562767d11e4821da500f3219542b9afd2e54c5dc573107c1126ed1080f8e96d7 + languageName: node + linkType: hard + +"json-schema-traverse@npm:^0.4.1": + version: 0.4.1 + resolution: "json-schema-traverse@npm:0.4.1" + checksum: 10c0/108fa90d4cc6f08243aedc6da16c408daf81793bf903e9fd5ab21983cda433d5d2da49e40711da016289465ec2e62e0324dcdfbc06275a607fe3233fde4942ce + languageName: node + linkType: hard + +"json-schema-traverse@npm:^1.0.0": + version: 1.0.0 + resolution: "json-schema-traverse@npm:1.0.0" + checksum: 10c0/71e30015d7f3d6dc1c316d6298047c8ef98a06d31ad064919976583eb61e1018a60a0067338f0f79cabc00d84af3fcc489bd48ce8a46ea165d9541ba17fb30c6 + languageName: node + linkType: hard + +"json-stable-stringify-without-jsonify@npm:^1.0.1": + version: 1.0.1 + resolution: "json-stable-stringify-without-jsonify@npm:1.0.1" + checksum: 10c0/cb168b61fd4de83e58d09aaa6425ef71001bae30d260e2c57e7d09a5fd82223e2f22a042dedaab8db23b7d9ae46854b08bb1f91675a8be11c5cffebef5fb66a5 + languageName: node + linkType: hard + +"jsonc-parser@npm:~3.3.1": + version: 3.3.1 + resolution: "jsonc-parser@npm:3.3.1" + checksum: 10c0/269c3ae0a0e4f907a914bf334306c384aabb9929bd8c99f909275ebd5c2d3bc70b9bcd119ad794f339dec9f24b6a4ee9cd5a8ab2e6435e730ad4075388fc2ab6 + languageName: node + linkType: hard + +"jsonpointer@npm:~5.0.1": + version: 5.0.1 + resolution: "jsonpointer@npm:5.0.1" + checksum: 10c0/89929e58b400fcb96928c0504fcf4fc3f919d81e9543ceb055df125538470ee25290bb4984251e172e6ef8fcc55761eb998c118da763a82051ad89d4cb073fe7 + languageName: node + linkType: hard + +"katex@npm:^0.16.0": + version: 0.16.28 + resolution: "katex@npm:0.16.28" + dependencies: + commander: "npm:^8.3.0" + bin: + katex: cli.js + checksum: 10c0/9c6e100ecb10c8e8315ab1d6ae16642b91e05642d821158149be520d629c3b47f30d8475fa8978d2d765a1d8e1bd66ab6afffe3a0409265de520edccab346b3e + languageName: node + linkType: hard + +"keyv@npm:^4.5.4": + version: 4.5.4 + resolution: "keyv@npm:4.5.4" + dependencies: + json-buffer: "npm:3.0.1" + checksum: 10c0/aa52f3c5e18e16bb6324876bb8b59dd02acf782a4b789c7b2ae21107fab95fab3890ed448d4f8dba80ce05391eeac4bfabb4f02a20221342982f806fa2cf271e + languageName: node + linkType: hard + +"levn@npm:^0.4.1": + version: 0.4.1 + resolution: "levn@npm:0.4.1" + dependencies: + prelude-ls: "npm:^1.2.1" + type-check: "npm:~0.4.0" + checksum: 10c0/effb03cad7c89dfa5bd4f6989364bfc79994c2042ec5966cb9b95990e2edee5cd8969ddf42616a0373ac49fac1403437deaf6e9050fbbaa3546093a59b9ac94e + languageName: node + linkType: hard + +"linkify-it@npm:^5.0.0": + version: 5.0.0 + resolution: "linkify-it@npm:5.0.0" + dependencies: + uc.micro: "npm:^2.0.0" + checksum: 10c0/ff4abbcdfa2003472fc3eb4b8e60905ec97718e11e33cca52059919a4c80cc0e0c2a14d23e23d8c00e5402bc5a885cdba8ca053a11483ab3cc8b3c7a52f88e2d + languageName: node + linkType: hard + +"locate-path@npm:^6.0.0": + version: 6.0.0 + resolution: "locate-path@npm:6.0.0" + dependencies: + p-locate: "npm:^5.0.0" + checksum: 10c0/d3972ab70dfe58ce620e64265f90162d247e87159b6126b01314dd67be43d50e96a50b517bce2d9452a79409c7614054c277b5232377de50416564a77ac7aad3 + languageName: node + linkType: hard + +"lodash.merge@npm:^4.6.2": + version: 4.6.2 + resolution: "lodash.merge@npm:4.6.2" + checksum: 10c0/402fa16a1edd7538de5b5903a90228aa48eb5533986ba7fa26606a49db2572bf414ff73a2c9f5d5fd36b31c46a5d5c7e1527749c07cbcf965ccff5fbdf32c506 + languageName: node + linkType: hard + +"lru-cache@npm:^10.2.0": + version: 10.4.3 + resolution: "lru-cache@npm:10.4.3" + checksum: 10c0/ebd04fbca961e6c1d6c0af3799adcc966a1babe798f685bb84e6599266599cd95d94630b10262f5424539bc4640107e8a33aa28585374abf561d30d16f4b39fb + languageName: node + linkType: hard + +"make-dir@npm:^4.0.0": + version: 4.0.0 + resolution: "make-dir@npm:4.0.0" + dependencies: + semver: "npm:^7.5.3" + checksum: 10c0/69b98a6c0b8e5c4fe9acb61608a9fbcfca1756d910f51e5dbe7a9e5cfb74fca9b8a0c8a0ffdf1294a740826c1ab4871d5bf3f62f72a3049e5eac6541ddffed68 + languageName: node + linkType: hard + +"markdown-it@npm:~14.1.0": + version: 14.1.1 + resolution: "markdown-it@npm:14.1.1" + dependencies: + argparse: "npm:^2.0.1" + entities: "npm:^4.4.0" + linkify-it: "npm:^5.0.0" + mdurl: "npm:^2.0.0" + punycode.js: "npm:^2.3.1" + uc.micro: "npm:^2.1.0" + bin: + markdown-it: bin/markdown-it.mjs + checksum: 10c0/c67f2a4c8069a307c78d8c15104bbcb15a2c6b17f4c904364ca218ec2eccf76a397eba1ea05f5ac5de72c4b67fcf115d422d22df0bfb86a09b663f55b9478d4f + languageName: node + linkType: hard + +"markdownlint-cli@npm:^0.47.0": + version: 0.47.0 + resolution: "markdownlint-cli@npm:0.47.0" + dependencies: + commander: "npm:~14.0.2" + deep-extend: "npm:~0.6.0" + ignore: "npm:~7.0.5" + js-yaml: "npm:~4.1.1" + jsonc-parser: "npm:~3.3.1" + jsonpointer: "npm:~5.0.1" + markdown-it: "npm:~14.1.0" + markdownlint: "npm:~0.40.0" + minimatch: "npm:~10.1.1" + run-con: "npm:~1.3.2" + smol-toml: "npm:~1.5.2" + tinyglobby: "npm:~0.2.15" + bin: + markdownlint: markdownlint.js + checksum: 10c0/466e2e0f288844a129bfcbdbfb1f08fef81e42f6c0d9760fc3d9a8e668cfc34fdfd055f08d780b9bc73abad7d5827eb94ec100405b38cde1eadadca66bfe0188 + languageName: node + linkType: hard + +"markdownlint@npm:~0.40.0": + version: 0.40.0 + resolution: "markdownlint@npm:0.40.0" + dependencies: + micromark: "npm:4.0.2" + micromark-core-commonmark: "npm:2.0.3" + micromark-extension-directive: "npm:4.0.0" + micromark-extension-gfm-autolink-literal: "npm:2.1.0" + micromark-extension-gfm-footnote: "npm:2.1.0" + micromark-extension-gfm-table: "npm:2.1.1" + micromark-extension-math: "npm:3.1.0" + micromark-util-types: "npm:2.0.2" + string-width: "npm:8.1.0" + checksum: 10c0/1543fcf4a433bc54e0e565cb1c8111e5e3d0df3742df0cc840d470bced21a1e3b5593e4e380ad0d8d5e490d9b399699d48aeabed33719f3fbdc6d00128138f20 + languageName: node + linkType: hard + +"mdurl@npm:^2.0.0": + version: 2.0.0 + resolution: "mdurl@npm:2.0.0" + checksum: 10c0/633db522272f75ce4788440669137c77540d74a83e9015666a9557a152c02e245b192edc20bc90ae953bbab727503994a53b236b4d9c99bdaee594d0e7dd2ce0 + languageName: node + linkType: hard + +"micromark-core-commonmark@npm:2.0.3, micromark-core-commonmark@npm:^2.0.0": + version: 2.0.3 + resolution: "micromark-core-commonmark@npm:2.0.3" + dependencies: + decode-named-character-reference: "npm:^1.0.0" + devlop: "npm:^1.0.0" + micromark-factory-destination: "npm:^2.0.0" + micromark-factory-label: "npm:^2.0.0" + micromark-factory-space: "npm:^2.0.0" + micromark-factory-title: "npm:^2.0.0" + micromark-factory-whitespace: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-chunked: "npm:^2.0.0" + micromark-util-classify-character: "npm:^2.0.0" + micromark-util-html-tag-name: "npm:^2.0.0" + micromark-util-normalize-identifier: "npm:^2.0.0" + micromark-util-resolve-all: "npm:^2.0.0" + micromark-util-subtokenize: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/bd4a794fdc9e88dbdf59eaf1c507ddf26e5f7ddf4e52566c72239c0f1b66adbcd219ba2cd42350debbe24471434d5f5e50099d2b3f4e5762ca222ba8e5b549ee + languageName: node + linkType: hard + +"micromark-extension-directive@npm:4.0.0": + version: 4.0.0 + resolution: "micromark-extension-directive@npm:4.0.0" + dependencies: + devlop: "npm:^1.0.0" + micromark-factory-space: "npm:^2.0.0" + micromark-factory-whitespace: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + parse-entities: "npm:^4.0.0" + checksum: 10c0/b4aef0f44339543466ae186130a4514985837b6b12d0c155bd1162e740f631e58f0883a39d0c723206fa0ff53a9b579965c79116f902236f6f123c3340b5fefb + languageName: node + linkType: hard + +"micromark-extension-gfm-autolink-literal@npm:2.1.0": + version: 2.1.0 + resolution: "micromark-extension-gfm-autolink-literal@npm:2.1.0" + dependencies: + micromark-util-character: "npm:^2.0.0" + micromark-util-sanitize-uri: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/84e6fbb84ea7c161dfa179665dc90d51116de4c28f3e958260c0423e5a745372b7dcbc87d3cde98213b532e6812f847eef5ae561c9397d7f7da1e59872ef3efe + languageName: node + linkType: hard + +"micromark-extension-gfm-footnote@npm:2.1.0": + version: 2.1.0 + resolution: "micromark-extension-gfm-footnote@npm:2.1.0" + dependencies: + devlop: "npm:^1.0.0" + micromark-core-commonmark: "npm:^2.0.0" + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-normalize-identifier: "npm:^2.0.0" + micromark-util-sanitize-uri: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/d172e4218968b7371b9321af5cde8c77423f73b233b2b0fcf3ff6fd6f61d2e0d52c49123a9b7910612478bf1f0d5e88c75a3990dd68f70f3933fe812b9f77edc + languageName: node + linkType: hard + +"micromark-extension-gfm-table@npm:2.1.1": + version: 2.1.1 + resolution: "micromark-extension-gfm-table@npm:2.1.1" + dependencies: + devlop: "npm:^1.0.0" + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/04bc00e19b435fa0add62cd029d8b7eb6137522f77832186b1d5ef34544a9bd030c9cf85e92ddfcc5c31f6f0a58a43d4b96dba4fc21316037c734630ee12c912 + languageName: node + linkType: hard + +"micromark-extension-math@npm:3.1.0": + version: 3.1.0 + resolution: "micromark-extension-math@npm:3.1.0" + dependencies: + "@types/katex": "npm:^0.16.0" + devlop: "npm:^1.0.0" + katex: "npm:^0.16.0" + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/56e6f2185a4613f9d47e7e98cf8605851c990957d9229c942b005e286c8087b61dc9149448d38b2f8be6d42cc6a64aad7e1f2778ddd86fbbb1a2f48a3ca1872f + languageName: node + linkType: hard + +"micromark-factory-destination@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-factory-destination@npm:2.0.1" + dependencies: + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/bbafcf869cee5bf511161354cb87d61c142592fbecea051000ff116068dc85216e6d48519d147890b9ea5d7e2864a6341c0c09d9948c203bff624a80a476023c + languageName: node + linkType: hard + +"micromark-factory-label@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-factory-label@npm:2.0.1" + dependencies: + devlop: "npm:^1.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/0137716b4ecb428114165505e94a2f18855c8bbea21b07a8b5ce514b32a595ed789d2b967125718fc44c4197ceaa48f6609d58807a68e778138d2e6b91b824e8 + languageName: node + linkType: hard + +"micromark-factory-space@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-factory-space@npm:2.0.1" + dependencies: + micromark-util-character: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/f9ed43f1c0652d8d898de0ac2be3f77f776fffe7dd96bdbba1e02d7ce33d3853c6ff5daa52568fc4fa32cdf3a62d86b85ead9b9189f7211e1d69ff2163c450fb + languageName: node + linkType: hard + +"micromark-factory-title@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-factory-title@npm:2.0.1" + dependencies: + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/e72fad8d6e88823514916890099a5af20b6a9178ccf78e7e5e05f4de99bb8797acb756257d7a3a57a53854cb0086bf8aab15b1a9e9db8982500dd2c9ff5948b6 + languageName: node + linkType: hard + +"micromark-factory-whitespace@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-factory-whitespace@npm:2.0.1" + dependencies: + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/20a1ec58698f24b766510a309b23a10175034fcf1551eaa9da3adcbed3e00cd53d1ebe5f030cf873f76a1cec3c34eb8c50cc227be3344caa9ed25d56cf611224 + languageName: node + linkType: hard + +"micromark-util-character@npm:^2.0.0": + version: 2.1.1 + resolution: "micromark-util-character@npm:2.1.1" + dependencies: + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/d3fe7a5e2c4060fc2a076f9ce699c82a2e87190a3946e1e5eea77f563869b504961f5668d9c9c014724db28ac32fa909070ea8b30c3a39bd0483cc6c04cc76a1 + languageName: node + linkType: hard + +"micromark-util-chunked@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-util-chunked@npm:2.0.1" + dependencies: + micromark-util-symbol: "npm:^2.0.0" + checksum: 10c0/b68c0c16fe8106949537bdcfe1be9cf36c0ccd3bc54c4007003cb0984c3750b6cdd0fd77d03f269a3382b85b0de58bde4f6eedbe7ecdf7244759112289b1ab56 + languageName: node + linkType: hard + +"micromark-util-classify-character@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-util-classify-character@npm:2.0.1" + dependencies: + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/8a02e59304005c475c332f581697e92e8c585bcd45d5d225a66c1c1b14ab5a8062705188c2ccec33cc998d33502514121478b2091feddbc751887fc9c290ed08 + languageName: node + linkType: hard + +"micromark-util-combine-extensions@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-util-combine-extensions@npm:2.0.1" + dependencies: + micromark-util-chunked: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/f15e282af24c8372cbb10b9b0b3e2c0aa681fea0ca323a44d6bc537dc1d9382c819c3689f14eaa000118f5a163245358ce6276b2cda9a84439cdb221f5d86ae7 + languageName: node + linkType: hard + +"micromark-util-decode-numeric-character-reference@npm:^2.0.0": + version: 2.0.2 + resolution: "micromark-util-decode-numeric-character-reference@npm:2.0.2" + dependencies: + micromark-util-symbol: "npm:^2.0.0" + checksum: 10c0/9c8a9f2c790e5593ffe513901c3a110e9ec8882a08f466da014112a25e5059b51551ca0aeb7ff494657d86eceb2f02ee556c6558b8d66aadc61eae4a240da0df + languageName: node + linkType: hard + +"micromark-util-encode@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-util-encode@npm:2.0.1" + checksum: 10c0/b2b29f901093845da8a1bf997ea8b7f5e061ffdba85070dfe14b0197c48fda64ffcf82bfe53c90cf9dc185e69eef8c5d41cae3ba918b96bc279326921b59008a + languageName: node + linkType: hard + +"micromark-util-html-tag-name@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-util-html-tag-name@npm:2.0.1" + checksum: 10c0/ae80444db786fde908e9295f19a27a4aa304171852c77414516418650097b8afb401961c9edb09d677b06e97e8370cfa65638dde8438ebd41d60c0a8678b85b9 + languageName: node + linkType: hard + +"micromark-util-normalize-identifier@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-util-normalize-identifier@npm:2.0.1" + dependencies: + micromark-util-symbol: "npm:^2.0.0" + checksum: 10c0/5299265fa360769fc499a89f40142f10a9d4a5c3dd8e6eac8a8ef3c2e4a6570e4c009cf75ea46dce5ee31c01f25587bde2f4a5cc0a935584ae86dd857f2babbd + languageName: node + linkType: hard + +"micromark-util-resolve-all@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-util-resolve-all@npm:2.0.1" + dependencies: + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/bb6ca28764696bb479dc44a2d5b5fe003e7177aeae1d6b0d43f24cc223bab90234092d9c3ce4a4d2b8df095ccfd820537b10eb96bb7044d635f385d65a4c984a + languageName: node + linkType: hard + +"micromark-util-sanitize-uri@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-util-sanitize-uri@npm:2.0.1" + dependencies: + micromark-util-character: "npm:^2.0.0" + micromark-util-encode: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + checksum: 10c0/60e92166e1870fd4f1961468c2651013ff760617342918e0e0c3c4e872433aa2e60c1e5a672bfe5d89dc98f742d6b33897585cf86ae002cda23e905a3c02527c + languageName: node + linkType: hard + +"micromark-util-subtokenize@npm:^2.0.0": + version: 2.1.0 + resolution: "micromark-util-subtokenize@npm:2.1.0" + dependencies: + devlop: "npm:^1.0.0" + micromark-util-chunked: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/bee69eece4393308e657c293ba80d92ebcb637e5f55e21dcf9c3fa732b91a8eda8ac248d76ff375e675175bfadeae4712e5158ef97eef1111789da1ce7ab5067 + languageName: node + linkType: hard + +"micromark-util-symbol@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-util-symbol@npm:2.0.1" + checksum: 10c0/f2d1b207771e573232436618e78c5e46cd4b5c560dd4a6d63863d58018abbf49cb96ec69f7007471e51434c60de3c9268ef2bf46852f26ff4aacd10f9da16fe9 + languageName: node + linkType: hard + +"micromark-util-types@npm:2.0.2, micromark-util-types@npm:^2.0.0": + version: 2.0.2 + resolution: "micromark-util-types@npm:2.0.2" + checksum: 10c0/c8c15b96c858db781c4393f55feec10004bf7df95487636c9a9f7209e51002a5cca6a047c5d2a5dc669ff92da20e57aaa881e81a268d9ccadb647f9dce305298 + languageName: node + linkType: hard + +"micromark@npm:4.0.2": + version: 4.0.2 + resolution: "micromark@npm:4.0.2" + dependencies: + "@types/debug": "npm:^4.0.0" + debug: "npm:^4.0.0" + decode-named-character-reference: "npm:^1.0.0" + devlop: "npm:^1.0.0" + micromark-core-commonmark: "npm:^2.0.0" + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-chunked: "npm:^2.0.0" + micromark-util-combine-extensions: "npm:^2.0.0" + micromark-util-decode-numeric-character-reference: "npm:^2.0.0" + micromark-util-encode: "npm:^2.0.0" + micromark-util-normalize-identifier: "npm:^2.0.0" + micromark-util-resolve-all: "npm:^2.0.0" + micromark-util-sanitize-uri: "npm:^2.0.0" + micromark-util-subtokenize: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10c0/07462287254219d6eda6eac8a3cebaff2994e0575499e7088027b825105e096e4f51e466b14b2a81b71933a3b6c48ee069049d87bc2c2127eee50d9cc69e8af6 + languageName: node + linkType: hard + +"minimatch@npm:^10.2.2": + version: 10.2.4 + resolution: "minimatch@npm:10.2.4" + dependencies: + brace-expansion: "npm:^5.0.2" + checksum: 10c0/35f3dfb7b99b51efd46afd378486889f590e7efb10e0f6a10ba6800428cf65c9a8dedb74427d0570b318d749b543dc4e85f06d46d2858bc8cac7e1eb49a95945 + languageName: node + linkType: hard + +"minimatch@npm:^3.1.2": + version: 3.1.5 + resolution: "minimatch@npm:3.1.5" + dependencies: + brace-expansion: "npm:^1.1.7" + checksum: 10c0/2ecbdc0d33f07bddb0315a8b5afbcb761307a8778b48f0b312418ccbced99f104a2d17d8aca7573433c70e8ccd1c56823a441897a45e384ea76ef401a26ace70 + languageName: node + linkType: hard + +"minimatch@npm:^9.0.4": + version: 9.0.9 + resolution: "minimatch@npm:9.0.9" + dependencies: + brace-expansion: "npm:^2.0.2" + checksum: 10c0/0b6a58530dbb00361745aa6c8cffaba4c90f551afe7c734830bd95fd88ebf469dd7355a027824ea1d09e37181cfeb0a797fb17df60c15ac174303ac110eb7e86 + languageName: node + linkType: hard + +"minimatch@npm:~10.1.1": + version: 10.1.3 + resolution: "minimatch@npm:10.1.3" + dependencies: + brace-expansion: "npm:^5.0.2" + checksum: 10c0/374603b9e2a3a4339001f8d6943fad944906751c92b459ea0362ec93ec478009b4238a368bed9141763626210b6f0b84f9c48f295a6f87c5d35f9aa452e0a4bc + languageName: node + linkType: hard + +"minimist@npm:^1.2.8": + version: 1.2.8 + resolution: "minimist@npm:1.2.8" + checksum: 10c0/19d3fcdca050087b84c2029841a093691a91259a47def2f18222f41e7645a0b7c44ef4b40e88a1e58a40c84d2ef0ee6047c55594d298146d0eb3f6b737c20ce6 + languageName: node + linkType: hard + +"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.1.2": + version: 7.1.3 + resolution: "minipass@npm:7.1.3" + checksum: 10c0/539da88daca16533211ea5a9ee98dc62ff5742f531f54640dd34429e621955e91cc280a91a776026264b7f9f6735947629f920944e9c1558369e8bf22eb33fbb + languageName: node + linkType: hard + +"ms@npm:^2.1.3": + version: 2.1.3 + resolution: "ms@npm:2.1.3" + checksum: 10c0/d924b57e7312b3b63ad21fc5b3dc0af5e78d61a1fc7cfb5457edaf26326bf62be5307cc87ffb6862ef1c2b33b0233cdb5d4f01c4c958cc0d660948b65a287a48 + languageName: node + linkType: hard + +"natural-compare@npm:^1.4.0": + version: 1.4.0 + resolution: "natural-compare@npm:1.4.0" + checksum: 10c0/f5f9a7974bfb28a91afafa254b197f0f22c684d4a1731763dda960d2c8e375b36c7d690e0d9dc8fba774c537af14a7e979129bca23d88d052fbeb9466955e447 + languageName: node + linkType: hard + +"optionator@npm:^0.9.3": + version: 0.9.4 + resolution: "optionator@npm:0.9.4" + dependencies: + deep-is: "npm:^0.1.3" + fast-levenshtein: "npm:^2.0.6" + levn: "npm:^0.4.1" + prelude-ls: "npm:^1.2.1" + type-check: "npm:^0.4.0" + word-wrap: "npm:^1.2.5" + checksum: 10c0/4afb687a059ee65b61df74dfe87d8d6815cd6883cb8b3d5883a910df72d0f5d029821f37025e4bccf4048873dbdb09acc6d303d27b8f76b1a80dd5a7d5334675 + languageName: node + linkType: hard + +"p-limit@npm:^3.0.2": + version: 3.1.0 + resolution: "p-limit@npm:3.1.0" + dependencies: + yocto-queue: "npm:^0.1.0" + checksum: 10c0/9db675949dbdc9c3763c89e748d0ef8bdad0afbb24d49ceaf4c46c02c77d30db4e0652ed36d0a0a7a95154335fab810d95c86153105bb73b3a90448e2bb14e1a + languageName: node + linkType: hard + +"p-locate@npm:^5.0.0": + version: 5.0.0 + resolution: "p-locate@npm:5.0.0" + dependencies: + p-limit: "npm:^3.0.2" + checksum: 10c0/2290d627ab7903b8b70d11d384fee714b797f6040d9278932754a6860845c4d3190603a0772a663c8cb5a7b21d1b16acb3a6487ebcafa9773094edc3dfe6009a + languageName: node + linkType: hard + +"package-json-from-dist@npm:^1.0.0": + version: 1.0.1 + resolution: "package-json-from-dist@npm:1.0.1" + checksum: 10c0/62ba2785eb655fec084a257af34dbe24292ab74516d6aecef97ef72d4897310bc6898f6c85b5cd22770eaa1ce60d55a0230e150fb6a966e3ecd6c511e23d164b + languageName: node + linkType: hard + +"parent-module@npm:^1.0.0": + version: 1.0.1 + resolution: "parent-module@npm:1.0.1" + dependencies: + callsites: "npm:^3.0.0" + checksum: 10c0/c63d6e80000d4babd11978e0d3fee386ca7752a02b035fd2435960ffaa7219dc42146f07069fb65e6e8bf1caef89daf9af7535a39bddf354d78bf50d8294f556 + languageName: node + linkType: hard + +"parse-entities@npm:^4.0.0": + version: 4.0.2 + resolution: "parse-entities@npm:4.0.2" + dependencies: + "@types/unist": "npm:^2.0.0" + character-entities-legacy: "npm:^3.0.0" + character-reference-invalid: "npm:^2.0.0" + decode-named-character-reference: "npm:^1.0.0" + is-alphanumerical: "npm:^2.0.0" + is-decimal: "npm:^2.0.0" + is-hexadecimal: "npm:^2.0.0" + checksum: 10c0/a13906b1151750b78ed83d386294066daf5fb559e08c5af9591b2d98cc209123103016a01df776f65f8219ad26652d6d6b210d0974d452049cddfc53a8916c34 + languageName: node + linkType: hard + +"path-exists@npm:^4.0.0": + version: 4.0.0 + resolution: "path-exists@npm:4.0.0" + checksum: 10c0/8c0bd3f5238188197dc78dced15207a4716c51cc4e3624c44fc97acf69558f5ebb9a2afff486fe1b4ee148e0c133e96c5e11a9aa5c48a3006e3467da070e5e1b + languageName: node + linkType: hard + +"path-key@npm:^3.1.0": + version: 3.1.1 + resolution: "path-key@npm:3.1.1" + checksum: 10c0/748c43efd5a569c039d7a00a03b58eecd1d75f3999f5a28303d75f521288df4823bc057d8784eb72358b2895a05f29a070bc9f1f17d28226cc4e62494cc58c4c + languageName: node + linkType: hard + +"path-scurry@npm:^1.11.1": + version: 1.11.1 + resolution: "path-scurry@npm:1.11.1" + dependencies: + lru-cache: "npm:^10.2.0" + minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0" + checksum: 10c0/32a13711a2a505616ae1cc1b5076801e453e7aae6ac40ab55b388bb91b9d0547a52f5aaceff710ea400205f18691120d4431e520afbe4266b836fadede15872d + languageName: node + linkType: hard + +"picomatch@npm:^4.0.3": + version: 4.0.4 + resolution: "picomatch@npm:4.0.4" + checksum: 10c0/e2c6023372cc7b5764719a5ffb9da0f8e781212fa7ca4bd0562db929df8e117460f00dff3cb7509dacfc06b86de924b247f504d0ce1806a37fac4633081466b0 + languageName: node + linkType: hard + +"prelude-ls@npm:^1.2.1": + version: 1.2.1 + resolution: "prelude-ls@npm:1.2.1" + checksum: 10c0/b00d617431e7886c520a6f498a2e14c75ec58f6d93ba48c3b639cf241b54232d90daa05d83a9e9b9fef6baa63cb7e1e4602c2372fea5bc169668401eb127d0cd + languageName: node + linkType: hard + +"punycode.js@npm:^2.3.1": + version: 2.3.1 + resolution: "punycode.js@npm:2.3.1" + checksum: 10c0/1d12c1c0e06127fa5db56bd7fdf698daf9a78104456a6b67326877afc21feaa821257b171539caedd2f0524027fa38e67b13dd094159c8d70b6d26d2bea4dfdb + languageName: node + linkType: hard + +"punycode@npm:^2.1.0": + version: 2.3.1 + resolution: "punycode@npm:2.3.1" + checksum: 10c0/14f76a8206bc3464f794fb2e3d3cc665ae416c01893ad7a02b23766eb07159144ee612ad67af5e84fa4479ccfe67678c4feb126b0485651b302babf66f04f9e9 + languageName: node + linkType: hard + +"require-directory@npm:^2.1.1": + version: 2.1.1 + resolution: "require-directory@npm:2.1.1" + checksum: 10c0/83aa76a7bc1531f68d92c75a2ca2f54f1b01463cb566cf3fbc787d0de8be30c9dbc211d1d46be3497dac5785fe296f2dd11d531945ac29730643357978966e99 + languageName: node + linkType: hard + +"require-from-string@npm:^2.0.2": + version: 2.0.2 + resolution: "require-from-string@npm:2.0.2" + checksum: 10c0/aaa267e0c5b022fc5fd4eef49d8285086b15f2a1c54b28240fdf03599cbd9c26049fee3eab894f2e1f6ca65e513b030a7c264201e3f005601e80c49fb2937ce2 + languageName: node + linkType: hard + +"resolve-from@npm:^4.0.0": + version: 4.0.0 + resolution: "resolve-from@npm:4.0.0" + checksum: 10c0/8408eec31a3112ef96e3746c37be7d64020cda07c03a920f5024e77290a218ea758b26ca9529fd7b1ad283947f34b2291c1c0f6aa0ed34acfdda9c6014c8d190 + languageName: node + linkType: hard + +"run-con@npm:~1.3.2": + version: 1.3.2 + resolution: "run-con@npm:1.3.2" + dependencies: + deep-extend: "npm:^0.6.0" + ini: "npm:~4.1.0" + minimist: "npm:^1.2.8" + strip-json-comments: "npm:~3.1.1" + bin: + run-con: cli.js + checksum: 10c0/b0bdd3083cf9f188e72df8905a1a40a1478e2a7437b0312ab1b824e058129388b811705ee7874e9a707e5de0e8fb8eb790da3aa0a23375323feecd1da97d5cf6 + languageName: node + linkType: hard + +"semver@npm:^7.5.3": + version: 7.7.4 + resolution: "semver@npm:7.7.4" + bin: + semver: bin/semver.js + checksum: 10c0/5215ad0234e2845d4ea5bb9d836d42b03499546ddafb12075566899fc617f68794bb6f146076b6881d755de17d6c6cc73372555879ec7dce2c2feee947866ad2 + languageName: node + linkType: hard + +"shebang-command@npm:^2.0.0": + version: 2.0.0 + resolution: "shebang-command@npm:2.0.0" + dependencies: + shebang-regex: "npm:^3.0.0" + checksum: 10c0/a41692e7d89a553ef21d324a5cceb5f686d1f3c040759c50aab69688634688c5c327f26f3ecf7001ebfd78c01f3c7c0a11a7c8bfd0a8bc9f6240d4f40b224e4e + languageName: node + linkType: hard + +"shebang-regex@npm:^3.0.0": + version: 3.0.0 + resolution: "shebang-regex@npm:3.0.0" + checksum: 10c0/1dbed0726dd0e1152a92696c76c7f06084eb32a90f0528d11acd764043aacf76994b2fb30aa1291a21bd019d6699164d048286309a278855ee7bec06cf6fb690 + languageName: node + linkType: hard + +"signal-exit@npm:^4.0.1": + version: 4.1.0 + resolution: "signal-exit@npm:4.1.0" + checksum: 10c0/41602dce540e46d599edba9d9860193398d135f7ff72cab629db5171516cfae628d21e7bfccde1bbfdf11c48726bc2a6d1a8fb8701125852fbfda7cf19c6aa83 + languageName: node + linkType: hard + +"smol-toml@npm:~1.5.2": + version: 1.5.2 + resolution: "smol-toml@npm:1.5.2" + checksum: 10c0/ccfe5dda80c1d0c45869140b1e695a13a81ba7c57c1ca083146fe2f475d6f57031c12410f95d53a5acb3a1504e8e8e12cab36871909e8c8ce0c7011ccd22a2ac + languageName: node + linkType: hard + +"sql.js@npm:^1.14.1": + version: 1.14.1 + resolution: "sql.js@npm:1.14.1" + checksum: 10c0/3491b7642b8b6d89926e4cf1807c01697df7e3f7283b94aaebc026e6c38aaf9496065e9daf25de3109e51df835150d4f795f5249f22a1d3e6a3bb1f2e32c0710 + languageName: node + linkType: hard + +"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^4.1.0, string-width@npm:^4.2.0, string-width@npm:^4.2.3": + version: 4.2.3 + resolution: "string-width@npm:4.2.3" + dependencies: + emoji-regex: "npm:^8.0.0" + is-fullwidth-code-point: "npm:^3.0.0" + strip-ansi: "npm:^6.0.1" + checksum: 10c0/1e525e92e5eae0afd7454086eed9c818ee84374bb80328fc41217ae72ff5f065ef1c9d7f72da41de40c75fa8bb3dee63d92373fd492c84260a552c636392a47b + languageName: node + linkType: hard + +"string-width@npm:8.1.0": + version: 8.1.0 + resolution: "string-width@npm:8.1.0" + dependencies: + get-east-asian-width: "npm:^1.3.0" + strip-ansi: "npm:^7.1.0" + checksum: 10c0/749b5d0dab2532b4b6b801064230f4da850f57b3891287023117ab63a464ad79dd208f42f793458f48f3ad121fe2e1f01dd525ff27ead957ed9f205e27406593 + languageName: node + linkType: hard + +"string-width@npm:^5.0.1, string-width@npm:^5.1.2": + version: 5.1.2 + resolution: "string-width@npm:5.1.2" + dependencies: + eastasianwidth: "npm:^0.2.0" + emoji-regex: "npm:^9.2.2" + strip-ansi: "npm:^7.0.1" + checksum: 10c0/ab9c4264443d35b8b923cbdd513a089a60de339216d3b0ed3be3ba57d6880e1a192b70ae17225f764d7adbf5994e9bb8df253a944736c15a0240eff553c678ca + languageName: node + linkType: hard + +"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": + version: 6.0.1 + resolution: "strip-ansi@npm:6.0.1" + dependencies: + ansi-regex: "npm:^5.0.1" + checksum: 10c0/1ae5f212a126fe5b167707f716942490e3933085a5ff6c008ab97ab2f272c8025d3aa218b7bd6ab25729ca20cc81cddb252102f8751e13482a5199e873680952 + languageName: node + linkType: hard + +"strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0": + version: 7.1.2 + resolution: "strip-ansi@npm:7.1.2" + dependencies: + ansi-regex: "npm:^6.0.1" + checksum: 10c0/0d6d7a023de33368fd042aab0bf48f4f4077abdfd60e5393e73c7c411e85e1b3a83507c11af2e656188511475776215df9ca589b4da2295c9455cc399ce1858b + languageName: node + linkType: hard + +"strip-json-comments@npm:^3.1.1, strip-json-comments@npm:~3.1.1": + version: 3.1.1 + resolution: "strip-json-comments@npm:3.1.1" + checksum: 10c0/9681a6257b925a7fa0f285851c0e613cc934a50661fa7bb41ca9cbbff89686bb4a0ee366e6ecedc4daafd01e83eee0720111ab294366fe7c185e935475ebcecd + languageName: node + linkType: hard + +"supports-color@npm:^7.1.0": + version: 7.2.0 + resolution: "supports-color@npm:7.2.0" + dependencies: + has-flag: "npm:^4.0.0" + checksum: 10c0/afb4c88521b8b136b5f5f95160c98dee7243dc79d5432db7efc27efb219385bbc7d9427398e43dd6cc730a0f87d5085ce1652af7efbe391327bc0a7d0f7fc124 + languageName: node + linkType: hard + +"test-exclude@npm:^7.0.1": + version: 7.0.2 + resolution: "test-exclude@npm:7.0.2" + dependencies: + "@istanbuljs/schema": "npm:^0.1.2" + glob: "npm:^10.4.1" + minimatch: "npm:^10.2.2" + checksum: 10c0/b79b855af9168c6a362146015ccf40f5e3a25e307304ba9bea930818507f6319d230380d5d7b5baa659c981ccc11f1bd21b6f012f85606353dec07e02dee67c9 + languageName: node + linkType: hard + +"tinyglobby@npm:~0.2.15": + version: 0.2.15 + resolution: "tinyglobby@npm:0.2.15" + dependencies: + fdir: "npm:^6.5.0" + picomatch: "npm:^4.0.3" + checksum: 10c0/869c31490d0d88eedb8305d178d4c75e7463e820df5a9b9d388291daf93e8b1eb5de1dad1c1e139767e4269fe75f3b10d5009b2cc14db96ff98986920a186844 + languageName: node + linkType: hard + +"type-check@npm:^0.4.0, type-check@npm:~0.4.0": + version: 0.4.0 + resolution: "type-check@npm:0.4.0" + dependencies: + prelude-ls: "npm:^1.2.1" + checksum: 10c0/7b3fd0ed43891e2080bf0c5c504b418fbb3e5c7b9708d3d015037ba2e6323a28152ec163bcb65212741fa5d2022e3075ac3c76440dbd344c9035f818e8ecee58 + languageName: node + linkType: hard + +"uc.micro@npm:^2.0.0, uc.micro@npm:^2.1.0": + version: 2.1.0 + resolution: "uc.micro@npm:2.1.0" + checksum: 10c0/8862eddb412dda76f15db8ad1c640ccc2f47cdf8252a4a30be908d535602c8d33f9855dfcccb8b8837855c1ce1eaa563f7fa7ebe3c98fd0794351aab9b9c55fa + languageName: node + linkType: hard + +"uri-js@npm:^4.2.2": + version: 4.4.1 + resolution: "uri-js@npm:4.4.1" + dependencies: + punycode: "npm:^2.1.0" + checksum: 10c0/4ef57b45aa820d7ac6496e9208559986c665e49447cb072744c13b66925a362d96dd5a46c4530a6b8e203e5db5fe849369444440cb22ecfc26c679359e5dfa3c + languageName: node + linkType: hard + +"v8-to-istanbul@npm:^9.0.0": + version: 9.3.0 + resolution: "v8-to-istanbul@npm:9.3.0" + dependencies: + "@jridgewell/trace-mapping": "npm:^0.3.12" + "@types/istanbul-lib-coverage": "npm:^2.0.1" + convert-source-map: "npm:^2.0.0" + checksum: 10c0/968bcf1c7c88c04df1ffb463c179558a2ec17aa49e49376120504958239d9e9dad5281aa05f2a78542b8557f2be0b0b4c325710262f3b838b40d703d5ed30c23 + languageName: node + linkType: hard + +"which@npm:^2.0.1": + version: 2.0.2 + resolution: "which@npm:2.0.2" + dependencies: + isexe: "npm:^2.0.0" + bin: + node-which: ./bin/node-which + checksum: 10c0/66522872a768b60c2a65a57e8ad184e5372f5b6a9ca6d5f033d4b0dc98aff63995655a7503b9c0a2598936f532120e81dd8cc155e2e92ed662a2b9377cc4374f + languageName: node + linkType: hard + +"word-wrap@npm:^1.2.5": + version: 1.2.5 + resolution: "word-wrap@npm:1.2.5" + checksum: 10c0/e0e4a1ca27599c92a6ca4c32260e8a92e8a44f4ef6ef93f803f8ed823f486e0889fc0b93be4db59c8d51b3064951d25e43d434e95dc8c960cc3a63d65d00ba20 + languageName: node + linkType: hard + +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0, wrap-ansi@npm:^7.0.0": + version: 7.0.0 + resolution: "wrap-ansi@npm:7.0.0" + dependencies: + ansi-styles: "npm:^4.0.0" + string-width: "npm:^4.1.0" + strip-ansi: "npm:^6.0.0" + checksum: 10c0/d15fc12c11e4cbc4044a552129ebc75ee3f57aa9c1958373a4db0292d72282f54373b536103987a4a7594db1ef6a4f10acf92978f79b98c49306a4b58c77d4da + languageName: node + linkType: hard + +"wrap-ansi@npm:^8.1.0": + version: 8.1.0 + resolution: "wrap-ansi@npm:8.1.0" + dependencies: + ansi-styles: "npm:^6.1.0" + string-width: "npm:^5.0.1" + strip-ansi: "npm:^7.0.1" + checksum: 10c0/138ff58a41d2f877eae87e3282c0630fc2789012fc1af4d6bd626eeb9a2f9a65ca92005e6e69a75c7b85a68479fe7443c7dbe1eb8fbaa681a4491364b7c55c60 + languageName: node + linkType: hard + +"y18n@npm:^5.0.5": + version: 5.0.8 + resolution: "y18n@npm:5.0.8" + checksum: 10c0/4df2842c36e468590c3691c894bc9cdbac41f520566e76e24f59401ba7d8b4811eb1e34524d57e54bc6d864bcb66baab7ffd9ca42bf1eda596618f9162b91249 + languageName: node + linkType: hard + +"yargs-parser@npm:^21.1.1": + version: 21.1.1 + resolution: "yargs-parser@npm:21.1.1" + checksum: 10c0/f84b5e48169479d2f402239c59f084cfd1c3acc197a05c59b98bab067452e6b3ea46d4dd8ba2985ba7b3d32a343d77df0debd6b343e5dae3da2aab2cdf5886b2 + languageName: node + linkType: hard + +"yargs@npm:^17.7.2": + version: 17.7.2 + resolution: "yargs@npm:17.7.2" + dependencies: + cliui: "npm:^8.0.1" + escalade: "npm:^3.1.1" + get-caller-file: "npm:^2.0.5" + require-directory: "npm:^2.1.1" + string-width: "npm:^4.2.3" + y18n: "npm:^5.0.5" + yargs-parser: "npm:^21.1.1" + checksum: 10c0/ccd7e723e61ad5965fffbb791366db689572b80cca80e0f96aad968dfff4156cd7cd1ad18607afe1046d8241e6fb2d6c08bf7fa7bfb5eaec818735d8feac8f05 + languageName: node + linkType: hard + +"yocto-queue@npm:^0.1.0": + version: 0.1.0 + resolution: "yocto-queue@npm:0.1.0" + checksum: 10c0/dceb44c28578b31641e13695d200d34ec4ab3966a5729814d5445b194933c096b7ced71494ce53a0e8820685d1d010df8b2422e5bf2cdea7e469d97ffbea306f + languageName: node + linkType: hard