Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
14 changes: 7 additions & 7 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ body:
attributes:
label: Before submitting your bug report
options:
- label: I've tried finding an answer on the [Continue docs site](https://docs.continue.dev/)
- label: I've checked the docs for an answer
required: false
- label: I'm not able to find an [open issue](https://github.com/continuedev/continue/issues?q=is%3Aopen+is%3Aissue) that reports the same bug
- label: I'm not able to find an open issue that reports the same bug
required: false
- label: I've seen the [troubleshooting guide](https://docs.continue.dev/troubleshooting) on the Continue Docs
- label: I've seen the troubleshooting guide in the docs
required: false
- type: textarea
attributes:
Expand All @@ -24,20 +24,20 @@ body:
Feel free to omit any info that is not relevant to your issue.

- **OS**: macOS
- **Continue version**: v0.9.4
- **Shadow Code version**: v0.9.4
- **IDE version**: VSCode 1.85.1
- Model: Claude Sonnet 4.5
- Agent configuration
value: |
- OS:
- Continue version:
- Shadow Code version:
- IDE version:
- Model:
- config:
```yaml

```
OR link to agent in Continue hub:
OR link to agent config:
render: Markdown
validations:
required: false
Expand Down Expand Up @@ -66,5 +66,5 @@ body:
attributes:
label: Log output
description: |
Please refer to the [troubleshooting guide](https://docs.continue.dev/troubleshooting) in the Continue Docs for instructions on obtaining the logs. Copy either the relevant lines or the last 100 lines or so.
Please refer to the troubleshooting steps in the docs for instructions on obtaining the logs. Copy either the relevant lines or the last 100 lines or so.
render: Shell
9 changes: 1 addition & 8 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
blank_issues_enabled: false
contact_links:
- name: Have a feature request?
url: https://github.com/continuedev/continue/discussions
about: Upvote existing suggestions or make a new one
- name: Have a question?
url: https://github.com/continuedev/continue/discussions
about: Search for existing questions or ask a new one
blank_issues_enabled: true
7 changes: 2 additions & 5 deletions .github/ISSUE_TEMPLATE/docs_issue_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ body:
We appreciate your feedback. Before submitting, please check if a similar issue already exists.

### Quick Contribution Tips:
- Click "Edit this page" at the bottom of any page on [docs.continue.dev](https://docs.continue.dev) to contribute directly.
- For local development, see [CONTRIBUTING.md](https://github.com/continuedev/continue/blob/main/CONTRIBUTING.md#-updating--improving-documentation).

- type: dropdown
- type: dropdown
id: doc-issue-category
attributes:
label: Issue Category
Expand All @@ -34,7 +31,7 @@ body:
attributes:
label: Affected Documentation Page URL
description: Provide the URL of the specific page where you encountered the issue.
placeholder: "https://docs.continue.dev/path/to/page"
placeholder: "path/to/page"
validations:
required: false

Expand Down
12 changes: 6 additions & 6 deletions .github/actions/build-vscode-extension/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ runs:
- name: Prepackage the extension
shell: bash
env:
CONTINUE_VSCODE_TARGET: ${{ steps.set-target.outputs.target }}
SHADOW_CODE_VSCODE_TARGET: ${{ steps.set-target.outputs.target }}
run: |
cd extensions/vscode
export CONTINUE_VSCODE_TARGET="${{ steps.set-target.outputs.target }}"
export SHADOW_CODE_VSCODE_TARGET="${{ steps.set-target.outputs.target }}"
npm run prepackage -- --target ${{ steps.set-target.outputs.target }}

- name: Re-install esbuild
Expand Down Expand Up @@ -150,19 +150,19 @@ runs:
- name: Package extension (build artifacts)
shell: bash
env:
CONTINUE_VSCODE_TARGET: ${{ steps.set-target.outputs.target }}
SHADOW_CODE_VSCODE_TARGET: ${{ steps.set-target.outputs.target }}
run: |
cd extensions/vscode
export CONTINUE_VSCODE_TARGET="${{ steps.set-target.outputs.target }}"
export SHADOW_CODE_VSCODE_TARGET="${{ steps.set-target.outputs.target }}"
npm run package -- --target ${{ steps.set-target.outputs.target }}

- name: Package extension (.vsix files)
shell: bash
env:
CONTINUE_VSCODE_TARGET: ${{ steps.set-target.outputs.target }}
SHADOW_CODE_VSCODE_TARGET: ${{ steps.set-target.outputs.target }}
run: |
cd extensions/vscode
export CONTINUE_VSCODE_TARGET="${{ steps.set-target.outputs.target }}"
export SHADOW_CODE_VSCODE_TARGET="${{ steps.set-target.outputs.target }}"
if [ "${{ inputs.pre-release }}" = "true" ]; then
npx vsce package --pre-release --no-dependencies --target ${{ steps.set-target.outputs.target }}
else
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/run-vscode-e2e-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ runs:
path: extensions/vscode/node_modules
key: ${{ runner.os }}-vscode-node-modules-${{ hashFiles('extensions/vscode/package-lock.json') }}

# We don't want to cache the Continue extension, so it is deleted at the end of the job
# We don't want to cache the Shadow Code extension, so it is deleted at the end of the job
- uses: actions/cache@v4
id: test-extensions-cache
with:
Expand Down Expand Up @@ -104,11 +104,11 @@ runs:
env:
DISPLAY: :99

- name: Delete continue from test extensions
- name: Delete Shadow Code from test extensions
shell: bash
run: |
cd extensions/vscode
rm -rf e2e/.test-extensions/continue*
rm -rf e2e/.test-extensions/shadow-code*

- name: Sanitize test file name
id: sanitize_filename
Expand Down
9 changes: 2 additions & 7 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,15 @@

[ What changed? Feel free to be brief. ]

## AI Code Review

- **Team members only**: AI review runs automatically when PR is opened or marked ready for review
- Team members can also trigger a review by commenting `@continue-review`

## Checklist

- [] I've read the [contributing guide](https://github.com/continuedev/continue/blob/main/CONTRIBUTING.md)
- [] I've read the contributing guide
- [] The relevant docs, if any, have been updated or created
- [] The relevant tests, if any, have been updated or created

## Screen recording or screenshot

[ When applicable, please include a short screen recording or screenshot - this makes it much easier for us as contributors to review and understand your changes. See [this PR](https://github.com/continuedev/continue/pull/6455) as a good example. ]
[ When applicable, please include a short screen recording or screenshot - this makes it much easier to review and understand your changes. ]

## Tests

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-fix-failed-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
if: steps.workflow-details.outputs.has_failed_tests == 'true'
id: remote-session
env:
CONTINUE_API_KEY: ${{ secrets.CONTINUE_API_KEY }}
SHADOW_CODE_API_KEY: ${{ secrets.SHADOW_CODE_API_KEY }}
run: |
# Create a detailed prompt for fixing the failed tests
cat > /tmp/fix_tests_prompt.txt << 'PROMPT_EOF'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli-pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ jobs:
- name: Run smoke API tests
env:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
CONTINUE_API_KEY: ${{ secrets.CONTINUE_API_KEY }}
SHADOW_CODE_API_KEY: ${{ secrets.SHADOW_CODE_API_KEY }}
run: |
cd extensions/cli
npm run test:smoke-api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
type: string
default: "main"
secrets:
CONTINUE_API_KEY:
SHADOW_CODE_API_KEY:
required: true

jobs:
Expand All @@ -33,7 +33,7 @@ jobs:
AGENT: ${{ inputs.agent }}
BRANCH_NAME: ${{ inputs.branch_name }}
REPO_URL: https://github.com/${{ github.repository }}
CONTINUE_API_KEY: ${{ secrets.CONTINUE_API_KEY }}
SHADOW_CODE_API_KEY: ${{ secrets.SHADOW_CODE_API_KEY }}
run: |
# Use jq to properly construct JSON with safe escaping
json_body=$(jq -n \
Expand All @@ -45,7 +45,7 @@ jobs:

response=$(curl -f -X POST https://api.continue.dev/agents \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $CONTINUE_API_KEY" \
-H "Authorization: Bearer $SHADOW_CODE_API_KEY" \
-d "$json_body")
id=$(echo $response | jq -r '.id')
echo "https://continue.dev/hub?type=agents/$id"
Loading
Loading