continue icon indicating copy to clipboard operation
continue copied to clipboard

IntelliJ: @terminal does not work

Open m-frank-2110 opened this issue 4 months ago • 1 comments

Before submitting your bug report

Relevant environment info

- OS:
- Continue version: 1.0.22
- IDE version: IntelliJ IDEA 2025.1.1.1
- Model: Claude Sonnet 3.5
- config:

  
%YAML 1.1
---
name: Assistant
version: 1.0.0
schema: v1

_defaults: &model_defaults
  provider: bedrock
  env:
    region: eu-central-1
    profile: bedrock

models:
  - name: Claude 3.5
    <<: *model_defaults
    model: anthropic.claude-3-5-sonnet-20240620-v1:0
    roles:
      - chat
      - edit
      - apply
  - name: Embeddings Model
    <<: *model_defaults
    model: amazon.titan-embed-text-v2:0
    roles:
      - embed
  - name: Reranking Model
    model: cohere.rerank-v3-5:0
    <<: *model_defaults
    roles:
      - rerank

context:
  - provider: file
  - provider: currentFile
  - provider: code
  - provider: codebase
  - provider: docs
  - provider: diff
  - provider: folder
  - provider: terminal

prompts:

  - name: Analyze terminal error
    description: Analyze the error in the terminal
    prompt: |
      @terminal
      Analyze the last executed terminal command and its output. Explain any errors that occurred, including likely causes and concrete steps to fix them.
      If no error is present, briefly explain what the command does and summarize its output.

Description

The content provider @terminal does not use the last terminal command or its output.

To reproduce

  1. Open the terminal and execute any command

Image

  1. Type @ in Continue
  2. Choose Terminal
  3. Enter "Analyze the command."

Image

Current terminal content is empty

Image

Log output


m-frank-2110 avatar Jun 04 '25 16:06 m-frank-2110