Skip to content

Commit c00e5da

Browse files
committed
feat: inline skills and shared truncation
1 parent 5b60e51 commit c00e5da

2,992 files changed

Lines changed: 126946 additions & 595162 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/CODEOWNERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# web + desktop packages
22
packages/app/ @adamdotdevin
33
packages/tauri/ @adamdotdevin
4-
packages/desktop/src-tauri/ @brendonovich
54
packages/desktop/ @adamdotdevin

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
blank_issues_enabled: false
1+
blank_issues_enabled: true
22
contact_links:
33
- name: 💬 Discord Community
44
url: https://discord.gg/opencode

.github/TEAM_MEMBERS

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/VOUCHED.td

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/actions/setup-bun/action.yml

Lines changed: 7 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -3,51 +3,20 @@ description: "Setup Bun with caching and install dependencies"
33
runs:
44
using: "composite"
55
steps:
6-
- name: Get baseline download URL
7-
id: bun-url
8-
shell: bash
9-
run: |
10-
if [ "$RUNNER_ARCH" = "X64" ]; then
11-
V=$(node -p "require('./package.json').packageManager.split('@')[1]")
12-
case "$RUNNER_OS" in
13-
macOS) OS=darwin ;;
14-
Linux) OS=linux ;;
15-
Windows) OS=windows ;;
16-
esac
17-
echo "url=https://github.com/oven-sh/bun/releases/download/bun-v${V}/bun-${OS}-x64-baseline.zip" >> "$GITHUB_OUTPUT"
18-
fi
19-
206
- name: Setup Bun
217
uses: oven-sh/setup-bun@v2
228
with:
23-
bun-version-file: ${{ !steps.bun-url.outputs.url && 'package.json' || '' }}
24-
bun-download-url: ${{ steps.bun-url.outputs.url }}
25-
26-
- name: Get cache directory
27-
id: cache
28-
shell: bash
29-
run: echo "dir=$(bun pm cache)" >> "$GITHUB_OUTPUT"
9+
bun-version-file: package.json
3010

31-
- name: Cache Bun dependencies
11+
- name: Cache ~/.bun
12+
id: cache-bun
3213
uses: actions/cache@v4
3314
with:
34-
path: ${{ steps.cache.outputs.dir }}
35-
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
15+
path: ~/.bun
16+
key: ${{ runner.os }}-bun-${{ hashFiles('package.json') }}-${{ hashFiles('bun.lockb', 'bun.lock') }}
3617
restore-keys: |
37-
${{ runner.os }}-bun-
38-
39-
- name: Install setuptools for distutils compatibility
40-
run: python3 -m pip install setuptools || pip install setuptools || true
41-
shell: bash
18+
${{ runner.os }}-bun-${{ hashFiles('package.json') }}-
4219
4320
- name: Install dependencies
44-
run: |
45-
# Workaround for patched peer variants
46-
# e.g. ./patches/ for standard-openapi
47-
# https://github.com/oven-sh/bun/issues/28147
48-
if [ "$RUNNER_OS" = "Windows" ]; then
49-
bun install --linker hoisted
50-
else
51-
bun install
52-
fi
21+
run: bun install
5322
shell: bash

.github/actions/setup-git-committer/action.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

.github/pull_request_template.md

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,3 @@
1-
### Issue for this PR
2-
3-
Closes #
4-
5-
### Type of change
6-
7-
- [ ] Bug fix
8-
- [ ] New feature
9-
- [ ] Refactor / code improvement
10-
- [ ] Documentation
11-
121
### What does this PR do?
132

14-
Please provide a description of the issue, the changes you made to fix it, and why they work. It is expected that you understand why your changes work and if you do not understand why at least say as much so a maintainer knows how much to value the PR.
15-
16-
**If you paste a large clearly AI generated description here your PR may be IGNORED or CLOSED!**
17-
183
### How did you verify your code works?
19-
20-
### Screenshots / recordings
21-
22-
_If this is a UI change, please include a screenshot or recording._
23-
24-
### Checklist
25-
26-
- [ ] I have tested my changes locally
27-
- [ ] I have not included unrelated changes in this PR
28-
29-
_If you do not follow this template your PR will be automatically rejected._

.github/workflows/beta.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

.github/workflows/close-issues.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)