add-language-rules
Workflow command scaffold for add-language-rules in everything-claude-code.
Run the ECC formatter quality gate for a single file and report remediation steps.
> /plugin marketplace add affaan-m/everything-claude-code > /plugin install ecc@ecc
How it fires
How this command gets triggered: by you, by Claude, or both.
/quality-gateContext preview
What this command does when you run it.
Run the ECC formatter quality gate for a single file and report remediation steps.
description: Run the ECC formatter quality gate for a single file and report remediation steps.
Operator entry point for the formatter quality gate that normally runs as the `post:quality-gate` PostToolUse hook (`scripts/hooks/quality-gate.js`).
The gate is a single-file formatter check driven by hook input, not CLI flags:
(`tool_input.file_path`); it does not take a path argument.
whichever the project ships (JS/TS under Biome is skipped here because `post-edit-format` already runs `biome check --write`)
skill or the language verification skills for lint/type/test pipelines.
To run the gate manually against one file, pipe hook-style JSON into the script (set the env toggles first if you want fix or strict behavior):
echo '{"tool_input":{"file_path":"src/example.ts"}}' \
| ECC_QUALITY_GATE_FIX=true node scripts/hooks/quality-gate.jsThen report formatter findings and concrete remediation steps.
Hook wiring enters through the async PostToolUse dispatcher in `hooks/hooks.json`. Its internal registry preserves the `post:quality-gate` ID and the `standard`/`strict` profiles.
$ARGUMENTS:
arguments - when a path is given, substitute it as `tool_input.file_path` in the stdin JSON shown above before running the command
Your agent can write code, but ECC gives it a coordinated engineering system and toolbox: it plans before it builds, verifies changes with tests, reviews its own work from a fresh context, remembers what matters, and turns repeated wins into reusable skills
Repo: affaan-m/everything-claude-code
Workflow command scaffold for add-language-rules in everything-claude-code.
Workflow command scaffold for database-migration in everything-claude-code.
Workflow command scaffold for feature-development in everything-claude-code.
Answer a quick side question without interrupting or losing context from the current task. Resume work automatically after answering.
Pull the latest ECC repo changes and reinstall the current managed targets.