Skip to content

Copilot CLI

GitHub Copilot CLI brings AI assistance directly into the terminal — answering questions about the codebase, generating commands, and proposing changes without leaving the command line.

Explain this monorepo structure and list the top 5 places I should inspect
before implementing a new backend service.

What to look for:

  • Accurate description of the monorepo structure
  • Key files identified (tsconfig.base.json, shared types, Docker configs)
  • Actionable guidance (not just a file listing)

Generate commands to run lint + unit tests only for `services/product-service`,
then explain likely failure categories and how to triage quickly.

What to look for:

  • Correct --workspace syntax for npm
  • Failure categories (type errors, missing mocks, database connection)
  • Triage steps for each category

Propose and apply a minimal change that improves developer experience in this
repo (for example scripts, docs, or local workflow). Show the diff and
rationale.

What to look for:

  • A practical, non-breaking improvement
  • Clear rationale for the change
  • Actual file modifications (not just suggestions)
  • “Run the tests and explain any failures.”
  • “What would you change to make this repo easier for a new contributor?”
  • “Generate a git commit message for the changes you just made.”