Skip to content
Development
Skill

/grok-prompting

Internal guidance for composing Grok prompts for planning, research, diagnosis, and review tasks inside the Grok Claude Code plugin

From plugin
ai-plugins-cc
46 skills2 agents11 commands
Install
$ npx -y skills add dysfunc/ai-plugins-cc --skill grok-prompting --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/grok-prompting

Context preview

The summary Claude sees to decide when to auto-load this skill.

Internal guidance for composing Grok prompts for planning, research, diagnosis, and review tasks inside the Grok Claude Code plugin

SKILL.md

grok-prompting.SKILL.md
name: grok-prompting
description: Internal guidance for composing Grok prompts for planning, research, diagnosis, and review tasks inside the Grok Claude Code plugin
user-invocable: false

Grok Prompting

Use this skill when `grok:grok-rescue` needs to ask Grok for help via the `task` runtime.

Prompt Grok like an analyst, not a collaborator with tool access. The plugin runs Grok headless via `grok -p`, so it cannot read files, run commands, or browse the working tree on its own. Everything Grok sees has to be in the prompt text.

Core rules:

  • Prefer one clear task per Grok run. Split unrelated asks into separate runs.
  • Tell Grok what done looks like. Do not assume it will infer the desired end state.
  • Keep prompts compact and block-structured with XML tags so the contract has stable shape.
  • Inline any relevant code, log output, or file excerpts directly in the prompt — Grok cannot fetch them.
  • Add explicit grounding rules for any task where unsupported guesses would hurt quality (review, diagnosis, postmortem analysis).
  • For follow-up requests, the plugin prepends the prior per-job transcript automatically; you only need to send the delta instruction.

Default prompt recipe:

  • `<task>`: the concrete job and the relevant repository or failure context (inlined).
  • `<structured_output_contract>` or `<compact_output_contract>`: exact shape, ordering, and brevity requirements.
  • `<default_follow_through_policy>`: what Grok should do by default instead of asking routine questions.
  • `<grounding_rules>`: required for review, research, or anything that could drift into unsupported claims.

When to add blocks:

  • Diagnosis or planning: add `<completeness_contract>` and an `<observable_evidence>` block listing what you've inlined.
  • Review or adversarial review: prefer the built-in `/grok:review` and `/grok:adversarial-review` commands — those carry the review contract and JSON schema. Only fall back to `task` when the review needs a non-standard target or shape.
  • Research or recommendation tasks: add `<research_mode>` and `<citation_rules>` (cite the inlined evidence by line reference, not URL).

Working rules:

  • Prefer explicit prompt contracts over vague nudges.
  • Use stable XML tag names so the structure is recognizable across runs.
  • Do not raise reasoning effort first. Tighten the prompt and grounding rules before escalating.
  • Ask Grok for brief, outcome-based progress updates only when the task is long-running.
  • Keep claims anchored to inlined evidence. If something is a hypothesis, say so.
  • For long-running follow-ups, lean on `--resume-last` so the prior transcript is reused; the plugin truncates oldest turns when the transcript exceeds the cap.

Prompt assembly checklist: 1. Define the exact task and scope in `<task>`. 2. Inline the evidence Grok needs to answer — file excerpts, log slices, error messages, schemas. 3. Choose the smallest output contract that still makes the answer easy to use. 4. Decide whether Grok should keep going by default or stop for missing high-risk details. 5. Add grounding and verification tags only where the task needs them. 6. Remove redundant instructions before sending the prompt.

Common antipatterns:

  • Asking Grok to "look at file X" — it cannot. Inline X (or a relevant slice) in the prompt instead.
  • Asking Grok to "run the tests and report" — it cannot. Run them yourself, inline the output, then ask Grok to analyze.
  • Restating the full prompt on every `--resume-last` turn — the prior transcript is already prepended.
  • Mixing several unrelated questions in one prompt — split them into separate `task` runs.
Read more
Ships withai-plugins-cc

Claude Code plugins that delegate to external AI CLIs — Codex, Gemini, and Grok — sharing a hardened core and an optional umbrella plugin that dispatches across providers. Status: active development.

Get the whole plugin

Other skills on ai-plugins-cc.