add-language-rules
Workflow command scaffold for add-language-rules in everything-claude-code.
Answer a quick side question without interrupting or losing context from the current task. Resume work automatically after answering.
> /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.
/asideContext preview
What this command does when you run it.
Answer a quick side question without interrupting or losing context from the current task. Resume work automatically after answering.
description: Answer a quick side question without interrupting or losing context from the current task. Resume work automatically after answering.
Ask a question mid-task and get an immediate, focused answer — then continue right where you left off. The current task, files, and context are never modified.
/aside <your question> /aside what does this function actually return? /aside is this pattern thread-safe? /aside why are we using X instead of Y here? /aside what's the difference between foo() and bar()? /aside should we be worried about the N+1 query we just added?
Before answering anything, mentally note:
Do NOT touch, edit, create, or delete any files during the aside.
Answer the question in the most concise form that is still complete and useful.
Format the response as:
ASIDE: [restate the question briefly] [Your answer here] — Back to task: [one-line description of what was being done]
After delivering the answer, immediately continue the active task from the exact point it was paused. Do not ask for permission to resume unless the aside answer revealed a blocker or a reason to reconsider the current approach (see Edge Cases).
---
**No question provided (`/aside` with nothing after it):** Respond:
ASIDE: no question provided What would you like to know? (ask your question and I'll answer without losing the current task context) — Back to task: [one-line description of what was being done]
**Question reveals a potential problem with the current task:** Flag it clearly before resuming:
ASIDE: [answer] WARNING: Note: This answer suggests [issue] with the current approach. Want to address this before continuing, or proceed as planned?
Wait for the user's decision before resuming.
**Question is actually a task redirect (not a side question):** If the question implies changing what is being built (e.g., `/aside actually, let's use Redis instead`), clarify:
ASIDE: That sounds like a direction change, not just a side question. Do you want to: (a) Answer this as information only and keep the current plan (b) Pause the current task and change approach
Wait for the user's answer — do not make assumptions.
**Question is about the currently open file or code:** Answer from the live context. If the file was read earlier in the session, reference it directly. If not, read it now (read-only) and answer with a file:line reference.
**No active task (nothing in progress when `/aside` is invoked):** Still use the standard wrapper so the response shape stays consistent:
ASIDE: [restate the question briefly] [Your answer here] — Back to task: no active task to resume
**Question requires a long answer:** Give the essential answer concisely, then offer:
That's the short version. Want a deeper explanation after we finish [current task]?
**Multiple `/aside` questions in a row:** Answer each one in sequence. After the last answer, resume the main task. Do not lose task state across a chain of asides.
**Aside answer implies a code change is needed:** Note the change needed but do not make it during the aside:
ASIDE: [answer] Worth fixing: [what should be changed]. I'll flag this after the current task unless you want to address it now.
**Question is ambiguous or too vague:** Ask one clarifying question — the shortest question that gets the information needed to answer. Do not ask multiple questions.
---
User: /aside what does fetchWithRetry() actually do? ASIDE: what does fetchWithRetry() do? fetchWithRetry() (src/api/retry.ts:12) attempts the request up to 3 times with exponential backoff (250ms → 500ms → 1s). It only retries on 5xx responses and network errors — 4xx errors are treated as final and not retried. — Back to task: refactoring the auth middleware in src/middleware/auth.ts
User: /aside is the approach we're taking thread-safe? ASIDE: is the current approach thread-safe? No — the shared cache object in src/cache/store.ts:34 is mutated without locking. Under concurrent requests this is a race condition. It's low risk in a single-process Node.js server but would be a real problem with worker threads or clustering. WARNING: Note: This could affect the feature we're building. Want to address this now or continue and fix it in a follow-up?
---
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.
Pull the latest ECC repo changes and reinstall the current managed targets.
Detect the project build system and incrementally fix build/type errors with minimal safe changes.
Create, verify, or list workflow checkpoints after running verification checks.