Internal guidance for composing Copilot prompts for coding, review, diagnosis, and research tasks across GPT-5.4, GPT-5.3-Codex, and Gemini 3.1 Pro inside the Copilot Claude Code plugin
From copilotnpx claudepluginhub wagnersza/copilot-plugin-cc --plugin copilotThis skill uses the workspace's default tool permissions.
references/copilot-prompt-antipatterns.mdreferences/copilot-prompt-recipes.mdreferences/prompt-blocks.mdGuides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Configures VPN and dedicated connections like Direct Connect, ExpressRoute, Interconnect for secure on-premises to AWS, Azure, GCP, OCI hybrid networking.
Use this skill when copilot:copilot-rescue needs to ask Copilot or another model-based workflow for help.
Prompt Copilot like an operator, not a collaborator. Keep prompts compact and block-structured with XML tags. State the task, the output contract, the follow-through defaults, and the small set of extra constraints that matter.
Core rules:
Default prompt recipe:
<task>: the concrete job and the relevant repository or failure context.<structured_output_contract> or <compact_output_contract>: exact shape, ordering, and brevity requirements.<default_follow_through_policy>: what Copilot should do by default instead of asking routine questions.<verification_loop> or <completeness_contract>: required for debugging, implementation, or risky fixes.<grounding_rules> or <citation_rules>: required for review, research, or anything that could drift into unsupported claims.When to add blocks:
completeness_contract, verification_loop, and missing_context_gating.grounding_rules, structured_output_contract, and dig_deeper_nudge.research_mode and citation_rules.action_safety so Copilot stays narrow and avoids unrelated refactors.How to choose prompt shape:
review or adversarial-review commands when the job is reviewing local git changes. Those prompts already carry the review contract.task when the task is diagnosis, planning, research, or implementation and you need to control the prompt more directly.task --resume-last for follow-up instructions on the same Copilot thread. Send only the delta instruction instead of restating the whole prompt unless the direction changed materially.Working rules:
Prompt assembly checklist:
<task>.Model selection notes:
Reusable blocks live in references/prompt-blocks.md. Concrete end-to-end templates live in references/copilot-prompt-recipes.md. Common failure modes to avoid live in references/copilot-prompt-antipatterns.md.