Compare commits

..

15 Commits

Author SHA1 Message Date
ecc-tools[bot]
ebe8776253 feat: add everything-claude-code ECC bundle (.claude/commands/add-new-skill.md) 2026-04-02 03:21:55 +00:00
ecc-tools[bot]
240656547c feat: add everything-claude-code ECC bundle (.claude/commands/refactoring.md) 2026-04-02 03:21:54 +00:00
ecc-tools[bot]
abc2d99e1e feat: add everything-claude-code ECC bundle (.claude/commands/feature-development.md) 2026-04-02 03:21:54 +00:00
ecc-tools[bot]
f27d6aa8d5 feat: add everything-claude-code ECC bundle (.claude/enterprise/controls.md) 2026-04-02 03:21:53 +00:00
ecc-tools[bot]
44d85d9916 feat: add everything-claude-code ECC bundle (.claude/team/everything-claude-code-team-config.json) 2026-04-02 03:21:52 +00:00
ecc-tools[bot]
f60803677a feat: add everything-claude-code ECC bundle (.claude/research/everything-claude-code-research-playbook.md) 2026-04-02 03:21:51 +00:00
ecc-tools[bot]
0a66c0edb9 feat: add everything-claude-code ECC bundle (.claude/rules/everything-claude-code-guardrails.md) 2026-04-02 03:21:50 +00:00
ecc-tools[bot]
4a733a4e20 feat: add everything-claude-code ECC bundle (.codex/agents/docs-researcher.toml) 2026-04-02 03:21:49 +00:00
ecc-tools[bot]
94239fa9a3 feat: add everything-claude-code ECC bundle (.codex/agents/reviewer.toml) 2026-04-02 03:21:49 +00:00
ecc-tools[bot]
ac2af42761 feat: add everything-claude-code ECC bundle (.codex/agents/explorer.toml) 2026-04-02 03:21:48 +00:00
ecc-tools[bot]
7df118b882 feat: add everything-claude-code ECC bundle (.claude/identity.json) 2026-04-02 03:21:47 +00:00
ecc-tools[bot]
e5b726176e feat: add everything-claude-code ECC bundle (.agents/skills/everything-claude-code/agents/openai.yaml) 2026-04-02 03:21:44 +00:00
ecc-tools[bot]
9fcd5c4660 feat: add everything-claude-code ECC bundle (.agents/skills/everything-claude-code/SKILL.md) 2026-04-02 03:21:43 +00:00
ecc-tools[bot]
21868f3492 feat: add everything-claude-code ECC bundle (.claude/skills/everything-claude-code/SKILL.md) 2026-04-02 03:21:43 +00:00
ecc-tools[bot]
5962f0e04b feat: add everything-claude-code ECC bundle (.claude/ecc-tools.json) 2026-04-02 03:21:42 +00:00
7 changed files with 312 additions and 237 deletions

View File

@@ -5,161 +5,199 @@
## Overview
This skill teaches the core development patterns, coding conventions, and collaborative workflows used in the `everything-claude-code` JavaScript repository. The project is modular, skill-oriented, and emphasizes clear documentation, conventional commits, and extensibility via skills, agents, commands, and install targets. This guide will help you contribute effectively by following established patterns and using the right commands for common tasks.
This skill introduces the core development patterns, workflows, and conventions used in the `everything-claude-code` repository. It covers how to contribute new skills, agents, commands, install targets, and documentation, as well as how to follow the project's coding and commit standards. This guide is essential for consistent, high-quality contributions to the codebase.
## Coding Conventions
**File Naming**
- Use `camelCase` for JavaScript files and directories.
- Example: `mySkill.js`, `installTarget.js`
**Language:** JavaScript
**Framework:** None detected
**Import Style**
- Use relative imports.
### File Naming
- Use **camelCase** for file names.
- Example: `mySkillHandler.js`, `installTargetManager.js`
### Import Style
- Use **relative imports** for modules within the repository.
- Example:
```js
const helper = require('./helper');
import { doSomething } from '../utils/doSomething';
const utils = require('./utils');
import { runTest } from '../testHelpers';
```
**Export Style**
- Mixed: both CommonJS (`module.exports`) and ES6 (`export`) exports are used.
### Export Style
- **Mixed**: Both CommonJS (`module.exports`) and ES module (`export`) styles may be present.
- Example (CommonJS):
```js
module.exports = function myFunction() { ... };
module.exports = function doSomething() { ... };
```
- Example (ES6):
- Example (ES Module):
```js
export function myFunction() { ... }
export function doSomethingElse() { ... }
```
**Commit Messages**
- Use [Conventional Commits](https://www.conventionalcommits.org/):
- Prefixes: `fix`, `feat`, `docs`, `chore`
- Example: `feat: add new agent pipeline for document processing`
### Commit Messages
- Use **conventional commit** prefixes: `fix`, `feat`, `docs`, `chore`.
- Average commit message length: ~56 characters.
- Example:
```
feat: add new agent pipeline for document summarization
fix: correct import path in installTargetManager.js
```
## Workflows
### Add New Skill
**Trigger:** When introducing a new skill (capability/module) to the platform
**Trigger:** When introducing a new skill (capability, workflow, or integration) to the platform
**Command:** `/add-skill`
1. Create a new `SKILL.md` under `skills/<skill-name>/` or `.agents/skills/<skill-name>/`.
2. Optionally add related assets or references in the skill directory.
3. Update documentation:
- `AGENTS.md`
- `README.md`
- `README.zh-CN.md`
- `docs/zh-CN/AGENTS.md`
4. If the skill is installable, update:
- `manifests/install-components.json` or
- `manifests/install-modules.json`
5. Optionally update `WORKING-CONTEXT.md`.
**Example directory structure:**
```
skills/
myNewSkill/
SKILL.md
index.js
assets/
```
---
### Add New Agent or Pipeline
**Trigger:** When introducing a new agent or orchestrated workflow (pipeline)
**Command:** `/add-agent-pipeline`
1. Create agent definition files under `agents/`.
2. Create or update a `SKILL.md` for the orchestrator under `skills/<pipeline-name>/`.
3. Update `AGENTS.md` and `README.md` to document the new agent(s)/pipeline.
4. Optionally add supporting commands, scripts, or documentation.
---
### Add or Extend Command
**Trigger:** When adding or enhancing CLI commands
**Command:** `/add-command`
1. Create or update command markdown files under `commands/`.
2. Incorporate review feedback and fixes as needed.
3. Document new commands in `AGENTS.md` or other relevant docs.
---
### Add Install Target or Adapter
**Trigger:** When supporting a new install target (plugin, IDE, platform)
**Command:** `/add-install-target`
1. Create a new directory for the install target (e.g., `.codebuddy/`, `.gemini/`).
2. Add install/uninstall scripts and documentation in the new directory.
3. Update `manifests/install-modules.json` and relevant schemas.
4. Update or add scripts in `scripts/lib/install-targets/<target>.js`.
5. Update or add tests for the new install target.
1. Create or update `skills/<skill-name>/SKILL.md` (and/or `.agents/skills/<skill-name>/SKILL.md`).
2. Optionally add related references or assets (e.g., `references/`, `assets/`).
3. Update documentation: `AGENTS.md`, `README.md`, `README.zh-CN.md`, and `docs/zh-CN/AGENTS.md`.
4. If the skill is installable, update `manifests/install-components.json` or `install-modules.json`.
**Example:**
```
.codebuddy/
install.sh
uninstall.sh
README.md
scripts/lib/install-targets/codebuddy.js
tests/lib/install-targets.test.js
```bash
# Add a new skill called "summarizer"
mkdir -p skills/summarizer
touch skills/summarizer/SKILL.md
# Document the skill and update manifests if needed
```
---
### Update or Harden Hooks
**Trigger:** When improving, refactoring, or fixing hooks (e.g., CI, formatting, session management)
### Add New Agent or Agent Pipeline
**Trigger:** When adding a new agent or multi-agent workflow to the system
**Command:** `/add-agent-pipeline`
1. Create `agents/<agent-name>.md` for each new agent.
2. Create or update `skills/<pipeline-or-skill-name>/SKILL.md` to document/orchestrate the pipeline.
3. Optionally add related commands (`commands/<command>.md`) or scripts.
4. Update `AGENTS.md` and related documentation.
**Example:**
```bash
touch agents/summarizerAgent.md
touch skills/summarizerPipeline/SKILL.md
```
---
### Add or Extend Command Workflow
**Trigger:** When adding or updating a workflow command (e.g., PRP, review, GAN)
**Command:** `/add-command`
1. Create or update `commands/<command-name>.md` with YAML frontmatter, usage, and output sections.
2. Iterate on the command file to address review feedback.
3. Optionally update related skills or agent documentation.
**Example:**
```markdown
---
name: summarize
description: Summarizes input text using the summarizer agent.
---
# Usage
...
```
---
### Add New Install Target or Adapter
**Trigger:** When supporting a new install target (platform, IDE, or agent runtime)
**Command:** `/add-install-target`
1. Add a new directory for the install target (e.g., `.codebuddy/`, `.gemini/`).
2. Add install/uninstall scripts and README files.
3. Update `manifests/install-modules.json` and `schemas/ecc-install-config.schema.json`.
4. Update scripts in `scripts/lib/install-manifests.js` and `scripts/lib/install-targets/<target>.js`.
5. Update or add tests for the new target.
**Example:**
```bash
mkdir .codebuddy
touch .codebuddy/README.md
```
---
### Update Hooks or Hook Scripts
**Trigger:** When changing how hooks are triggered, processed, or validated
**Command:** `/update-hook`
1. Update `hooks/hooks.json` to change hook configuration.
2. Update or add scripts in `scripts/hooks/*.js` or `scripts/hooks/*.sh`.
3. Update or add tests for the affected hooks.
4. Optionally update related documentation.
1. Edit `hooks/hooks.json` to add, remove, or modify hook definitions.
2. Update or add scripts in `scripts/hooks/` (e.g., `session-start.js`, `post-edit-accumulator.js`).
3. Update or add tests in `tests/hooks/`.
4. Optionally update related documentation or configuration.
**Example:**
```json
// hooks/hooks.json
{
"pre-commit": ["scripts/hooks/format.js"]
}
```
---
### Documentation Sync and Guidance Update
**Trigger:** When updating documentation to reflect new features, skills, or workflows
**Command:** `/sync-docs`
1. Update `README.md`, `README.zh-CN.md`, and/or `AGENTS.md`.
2. Update `docs/zh-CN/AGENTS.md` and `docs/zh-CN/README.md`.
3. Update or add `WORKING-CONTEXT.md`.
4. Optionally update `the-shortform-guide.md` or other guidance files.
---
### Dependency Bump via Dependabot
**Trigger:** When a dependency update is triggered by Dependabot or similar automation
### Dependency Update via Dependabot
**Trigger:** When a new version of a dependency is available
**Command:** `/bump-dependency`
1. Update `package.json` and/or `yarn.lock` for npm dependencies.
2. Update `.github/workflows/*.yml` for GitHub Actions dependencies.
3. Commit with a standardized message and co-author.
3. Commit with a standardized message and co-authored-by dependabot.
**Example:**
```bash
npm install some-package@latest
git commit -m "chore: bump some-package to 1.2.3"
```
---
### Docs and Guidance Update
**Trigger:** When improving or adding documentation or guidance
**Command:** `/update-docs`
1. Edit or add markdown files in the root, `docs/`, or `skills/` directories.
2. Update `WORKING-CONTEXT.md`, `AGENTS.md`, `README.md`, and/or `docs/zh-CN/*`.
3. Optionally update plugin or skill documentation.
**Example:**
```bash
vim README.md
git commit -m "docs: clarify agent pipeline usage"
```
## Testing Patterns
- Test files use the pattern `*.test.js`.
- Testing framework is not explicitly specified; check test files for usage.
- Place tests alongside or within a `tests/` directory, matching the structure of the code under test.
- Example test file:
```
tests/lib/install-targets.test.js
```
- **Test files:** Use the `*.test.js` pattern.
- **Testing framework:** Not explicitly detected; use standard Node.js testing or your preferred framework.
- **Location:** Tests are typically placed alongside implementation files or in a `tests/` directory.
**Example:**
```js
// skills/summarizer/summarizer.test.js
const summarizer = require('./summarizer');
test('summarizes text', () => {
expect(summarizer('This is a long text.')).toBe('Summary.');
});
```
## Commands
| Command | Purpose |
|--------------------|------------------------------------------------------------------|
| /add-skill | Add a new skill, including docs and registration |
| /add-agent-pipeline| Add a new agent or orchestrated pipeline |
| /add-command | Add or extend a CLI command |
| /add-install-target| Add support for a new install target or adapter |
| /update-hook | Refactor or fix hooks and related scripts |
| /sync-docs | Synchronize and update documentation across contexts/languages |
| /bump-dependency | Automated dependency update via Dependabot or similar automation |
| Command | Purpose |
|--------------------|------------------------------------------------------------|
| /add-skill | Add a new skill, including documentation and assets |
| /add-agent-pipeline| Add a new agent or multi-agent pipeline |
| /add-command | Add or extend a workflow command |
| /add-install-target| Add support for a new install target or adapter |
| /update-hook | Update hooks or hook scripts |
| /bump-dependency | Update dependencies via Dependabot |
| /update-docs | Update documentation or guidance |
```

View File

@@ -10,7 +10,7 @@ Use this workflow when working on **add-new-skill** in `everything-claude-code`.
## Goal
Adds a new skill to the system, including documentation and registration in relevant indexes.
Adds a new skill to the system, including documentation and sometimes references/assets.
## Common Files
@@ -30,11 +30,10 @@ Adds a new skill to the system, including documentation and registration in rele
## Typical Commit Signals
- Create a new SKILL.md file under skills/<skill-name>/ or .agents/skills/<skill-name>/
- Optionally add related assets or references under the skill directory
- Create or update skills/<skill-name>/SKILL.md (and/or .agents/skills/<skill-name>/SKILL.md)
- Optionally add related references or assets (e.g., references/, assets/)
- Update AGENTS.md, README.md, README.zh-CN.md, and docs/zh-CN/AGENTS.md to document the new skill
- Update manifests/install-components.json or manifests/install-modules.json if the skill is installable
- Optionally update WORKING-CONTEXT.md
- Update manifests/install-components.json or install-modules.json if the skill is installable
## Notes

View File

@@ -2,7 +2,7 @@
"version": "1.3",
"schemaVersion": "1.0",
"generatedBy": "ecc-tools",
"generatedAt": "2026-04-02T03:20:48.238Z",
"generatedAt": "2026-04-02T03:20:59.009Z",
"repo": "https://github.com/affaan-m/everything-claude-code",
"profiles": {
"requested": "full",

View File

@@ -10,5 +10,5 @@
"javascript"
],
"suggestedBy": "ecc-tools-repo-analysis",
"createdAt": "2026-04-02T03:21:37.492Z"
"createdAt": "2026-04-02T03:21:40.334Z"
}

View File

@@ -26,7 +26,7 @@ Generated by ECC Tools from repository history. Review before treating it as a h
- feature-development: Standard feature implementation workflow
- refactoring: Code refactoring and cleanup workflow
- add-new-skill: Adds a new skill to the system, including documentation and registration in relevant indexes.
- add-new-skill: Adds a new skill to the system, including documentation and sometimes references/assets.
## Review Reminder

View File

@@ -5,161 +5,199 @@
## Overview
This skill teaches the core development patterns, coding conventions, and collaborative workflows used in the `everything-claude-code` JavaScript repository. The project is modular, skill-oriented, and emphasizes clear documentation, conventional commits, and extensibility via skills, agents, commands, and install targets. This guide will help you contribute effectively by following established patterns and using the right commands for common tasks.
This skill introduces the core development patterns, workflows, and conventions used in the `everything-claude-code` repository. It covers how to contribute new skills, agents, commands, install targets, and documentation, as well as how to follow the project's coding and commit standards. This guide is essential for consistent, high-quality contributions to the codebase.
## Coding Conventions
**File Naming**
- Use `camelCase` for JavaScript files and directories.
- Example: `mySkill.js`, `installTarget.js`
**Language:** JavaScript
**Framework:** None detected
**Import Style**
- Use relative imports.
### File Naming
- Use **camelCase** for file names.
- Example: `mySkillHandler.js`, `installTargetManager.js`
### Import Style
- Use **relative imports** for modules within the repository.
- Example:
```js
const helper = require('./helper');
import { doSomething } from '../utils/doSomething';
const utils = require('./utils');
import { runTest } from '../testHelpers';
```
**Export Style**
- Mixed: both CommonJS (`module.exports`) and ES6 (`export`) exports are used.
### Export Style
- **Mixed**: Both CommonJS (`module.exports`) and ES module (`export`) styles may be present.
- Example (CommonJS):
```js
module.exports = function myFunction() { ... };
module.exports = function doSomething() { ... };
```
- Example (ES6):
- Example (ES Module):
```js
export function myFunction() { ... }
export function doSomethingElse() { ... }
```
**Commit Messages**
- Use [Conventional Commits](https://www.conventionalcommits.org/):
- Prefixes: `fix`, `feat`, `docs`, `chore`
- Example: `feat: add new agent pipeline for document processing`
### Commit Messages
- Use **conventional commit** prefixes: `fix`, `feat`, `docs`, `chore`.
- Average commit message length: ~56 characters.
- Example:
```
feat: add new agent pipeline for document summarization
fix: correct import path in installTargetManager.js
```
## Workflows
### Add New Skill
**Trigger:** When introducing a new skill (capability/module) to the platform
**Trigger:** When introducing a new skill (capability, workflow, or integration) to the platform
**Command:** `/add-skill`
1. Create a new `SKILL.md` under `skills/<skill-name>/` or `.agents/skills/<skill-name>/`.
2. Optionally add related assets or references in the skill directory.
3. Update documentation:
- `AGENTS.md`
- `README.md`
- `README.zh-CN.md`
- `docs/zh-CN/AGENTS.md`
4. If the skill is installable, update:
- `manifests/install-components.json` or
- `manifests/install-modules.json`
5. Optionally update `WORKING-CONTEXT.md`.
**Example directory structure:**
```
skills/
myNewSkill/
SKILL.md
index.js
assets/
```
---
### Add New Agent or Pipeline
**Trigger:** When introducing a new agent or orchestrated workflow (pipeline)
**Command:** `/add-agent-pipeline`
1. Create agent definition files under `agents/`.
2. Create or update a `SKILL.md` for the orchestrator under `skills/<pipeline-name>/`.
3. Update `AGENTS.md` and `README.md` to document the new agent(s)/pipeline.
4. Optionally add supporting commands, scripts, or documentation.
---
### Add or Extend Command
**Trigger:** When adding or enhancing CLI commands
**Command:** `/add-command`
1. Create or update command markdown files under `commands/`.
2. Incorporate review feedback and fixes as needed.
3. Document new commands in `AGENTS.md` or other relevant docs.
---
### Add Install Target or Adapter
**Trigger:** When supporting a new install target (plugin, IDE, platform)
**Command:** `/add-install-target`
1. Create a new directory for the install target (e.g., `.codebuddy/`, `.gemini/`).
2. Add install/uninstall scripts and documentation in the new directory.
3. Update `manifests/install-modules.json` and relevant schemas.
4. Update or add scripts in `scripts/lib/install-targets/<target>.js`.
5. Update or add tests for the new install target.
1. Create or update `skills/<skill-name>/SKILL.md` (and/or `.agents/skills/<skill-name>/SKILL.md`).
2. Optionally add related references or assets (e.g., `references/`, `assets/`).
3. Update documentation: `AGENTS.md`, `README.md`, `README.zh-CN.md`, and `docs/zh-CN/AGENTS.md`.
4. If the skill is installable, update `manifests/install-components.json` or `install-modules.json`.
**Example:**
```
.codebuddy/
install.sh
uninstall.sh
README.md
scripts/lib/install-targets/codebuddy.js
tests/lib/install-targets.test.js
```bash
# Add a new skill called "summarizer"
mkdir -p skills/summarizer
touch skills/summarizer/SKILL.md
# Document the skill and update manifests if needed
```
---
### Update or Harden Hooks
**Trigger:** When improving, refactoring, or fixing hooks (e.g., CI, formatting, session management)
### Add New Agent or Agent Pipeline
**Trigger:** When adding a new agent or multi-agent workflow to the system
**Command:** `/add-agent-pipeline`
1. Create `agents/<agent-name>.md` for each new agent.
2. Create or update `skills/<pipeline-or-skill-name>/SKILL.md` to document/orchestrate the pipeline.
3. Optionally add related commands (`commands/<command>.md`) or scripts.
4. Update `AGENTS.md` and related documentation.
**Example:**
```bash
touch agents/summarizerAgent.md
touch skills/summarizerPipeline/SKILL.md
```
---
### Add or Extend Command Workflow
**Trigger:** When adding or updating a workflow command (e.g., PRP, review, GAN)
**Command:** `/add-command`
1. Create or update `commands/<command-name>.md` with YAML frontmatter, usage, and output sections.
2. Iterate on the command file to address review feedback.
3. Optionally update related skills or agent documentation.
**Example:**
```markdown
---
name: summarize
description: Summarizes input text using the summarizer agent.
---
# Usage
...
```
---
### Add New Install Target or Adapter
**Trigger:** When supporting a new install target (platform, IDE, or agent runtime)
**Command:** `/add-install-target`
1. Add a new directory for the install target (e.g., `.codebuddy/`, `.gemini/`).
2. Add install/uninstall scripts and README files.
3. Update `manifests/install-modules.json` and `schemas/ecc-install-config.schema.json`.
4. Update scripts in `scripts/lib/install-manifests.js` and `scripts/lib/install-targets/<target>.js`.
5. Update or add tests for the new target.
**Example:**
```bash
mkdir .codebuddy
touch .codebuddy/README.md
```
---
### Update Hooks or Hook Scripts
**Trigger:** When changing how hooks are triggered, processed, or validated
**Command:** `/update-hook`
1. Update `hooks/hooks.json` to change hook configuration.
2. Update or add scripts in `scripts/hooks/*.js` or `scripts/hooks/*.sh`.
3. Update or add tests for the affected hooks.
4. Optionally update related documentation.
1. Edit `hooks/hooks.json` to add, remove, or modify hook definitions.
2. Update or add scripts in `scripts/hooks/` (e.g., `session-start.js`, `post-edit-accumulator.js`).
3. Update or add tests in `tests/hooks/`.
4. Optionally update related documentation or configuration.
**Example:**
```json
// hooks/hooks.json
{
"pre-commit": ["scripts/hooks/format.js"]
}
```
---
### Documentation Sync and Guidance Update
**Trigger:** When updating documentation to reflect new features, skills, or workflows
**Command:** `/sync-docs`
1. Update `README.md`, `README.zh-CN.md`, and/or `AGENTS.md`.
2. Update `docs/zh-CN/AGENTS.md` and `docs/zh-CN/README.md`.
3. Update or add `WORKING-CONTEXT.md`.
4. Optionally update `the-shortform-guide.md` or other guidance files.
---
### Dependency Bump via Dependabot
**Trigger:** When a dependency update is triggered by Dependabot or similar automation
### Dependency Update via Dependabot
**Trigger:** When a new version of a dependency is available
**Command:** `/bump-dependency`
1. Update `package.json` and/or `yarn.lock` for npm dependencies.
2. Update `.github/workflows/*.yml` for GitHub Actions dependencies.
3. Commit with a standardized message and co-author.
3. Commit with a standardized message and co-authored-by dependabot.
**Example:**
```bash
npm install some-package@latest
git commit -m "chore: bump some-package to 1.2.3"
```
---
### Docs and Guidance Update
**Trigger:** When improving or adding documentation or guidance
**Command:** `/update-docs`
1. Edit or add markdown files in the root, `docs/`, or `skills/` directories.
2. Update `WORKING-CONTEXT.md`, `AGENTS.md`, `README.md`, and/or `docs/zh-CN/*`.
3. Optionally update plugin or skill documentation.
**Example:**
```bash
vim README.md
git commit -m "docs: clarify agent pipeline usage"
```
## Testing Patterns
- Test files use the pattern `*.test.js`.
- Testing framework is not explicitly specified; check test files for usage.
- Place tests alongside or within a `tests/` directory, matching the structure of the code under test.
- Example test file:
```
tests/lib/install-targets.test.js
```
- **Test files:** Use the `*.test.js` pattern.
- **Testing framework:** Not explicitly detected; use standard Node.js testing or your preferred framework.
- **Location:** Tests are typically placed alongside implementation files or in a `tests/` directory.
**Example:**
```js
// skills/summarizer/summarizer.test.js
const summarizer = require('./summarizer');
test('summarizes text', () => {
expect(summarizer('This is a long text.')).toBe('Summary.');
});
```
## Commands
| Command | Purpose |
|--------------------|------------------------------------------------------------------|
| /add-skill | Add a new skill, including docs and registration |
| /add-agent-pipeline| Add a new agent or orchestrated pipeline |
| /add-command | Add or extend a CLI command |
| /add-install-target| Add support for a new install target or adapter |
| /update-hook | Refactor or fix hooks and related scripts |
| /sync-docs | Synchronize and update documentation across contexts/languages |
| /bump-dependency | Automated dependency update via Dependabot or similar automation |
| Command | Purpose |
|--------------------|------------------------------------------------------------|
| /add-skill | Add a new skill, including documentation and assets |
| /add-agent-pipeline| Add a new agent or multi-agent pipeline |
| /add-command | Add or extend a workflow command |
| /add-install-target| Add support for a new install target or adapter |
| /update-hook | Update hooks or hook scripts |
| /bump-dependency | Update dependencies via Dependabot |
| /update-docs | Update documentation or guidance |
```

View File

@@ -11,5 +11,5 @@
".claude/commands/refactoring.md",
".claude/commands/add-new-skill.md"
],
"updatedAt": "2026-04-02T03:20:48.238Z"
"updatedAt": "2026-04-02T03:20:59.009Z"
}