mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-17 15:43:30 +08:00
1.5 KiB
1.5 KiB
name, description, allowed_tools
| name | description | allowed_tools | |||||
|---|---|---|---|---|---|---|---|
| add-new-install-target | Workflow command scaffold for add-new-install-target in everything-claude-code. |
|
/add-new-install-target
Use this workflow when working on add-new-install-target in everything-claude-code.
Goal
Adds support for a new install target (e.g., CodeBuddy, Gemini) to the system, including scripts, manifests, schemas, and tests.
Common Files
manifests/install-modules.jsonschemas/ecc-install-config.schema.jsonschemas/install-modules.schema.jsonscripts/lib/install-manifests.jsscripts/lib/install-targets/*.jstests/lib/install-targets.test.js
Suggested Sequence
- Understand the current state and failure mode before editing.
- Make the smallest coherent change that satisfies the workflow goal.
- Run the most relevant verification for touched files.
- Summarize what changed and what still needs review.
Typical Commit Signals
- Create new install scripts (install.js, install.sh, uninstall.js, uninstall.sh) in a dedicated directory (e.g., .codebuddy/ or .gemini/).
- Add or update a README or documentation file for the new target.
- Update manifests/install-modules.json to register the new target.
- Update schemas/ecc-install-config.schema.json and schemas/install-modules.schema.json as needed.
- Update scripts/lib/install-manifests.js and scripts/lib/install-targets/-project.js.
Notes
- Treat this as a scaffold, not a hard-coded script.
- Update the command if the workflow evolves materially.