Skip to content

Commit c88b5e5

Browse files
Merge branch 'main' into add-flowise-support
2 parents f6629d9 + a71fbb7 commit c88b5e5

File tree

1,333 files changed

+125215
-16964
lines changed

Some content is hidden

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

1,333 files changed

+125215
-16964
lines changed

.github/CODEOWNERS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,13 @@
11
* @mme @ranst91 @ataibarkai @maxkorp @tylerslaton @NathanTarbert
2+
3+
sdks/community/java @pascalwilbrink
4+
docs/sdk/java @pascalwilbrink
5+
6+
sdks/community/kotlin @contextablemark
7+
docs/sdk/kotlin @contextablemark
8+
9+
sdks/community/go @mattsp1290
10+
docs/sdk/go @mattsp1290
11+
12+
sdks/community/dart @mattsp1290
13+
docs/sdk/dart @mattsp1290

.github/pull_request_template.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
<!--
3+
4+
**Please PLEASE reach out to us first before starting any significant work on new or existing features.**
5+
6+
By the time you've gotten here, you're looking at creating a pull request so hopefully we're not too late.
7+
8+
We love community contributions! That said, we want to make sure we're all on the same page before you start.
9+
Investing a lot of time and effort just to find out it doesn't align with the upstream project feels awful, and we don't want that to happen.
10+
It also helps to make sure the work you're planning isn't already in progress.
11+
12+
As described in our contributing guide, please file an issue first: https://github.com/ag-ui-protocol/ag-ui/issues
13+
Or, reach out to us on Discord: https://discord.gg/Jd3FzfdJa8
14+
15+
Take a look at the contributing guide:
16+
https://github.com/ag-ui-protocol/ag-ui/blob/main/CONTRIBUTING.md
17+
18+
-->

.github/workflows/check-generated-files.yml

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,53 @@
1-
name: Check Generated Files
1+
name: static
22

33
on:
44
push:
55
branches: [main]
6+
paths:
7+
- "apps/dojo/**"
8+
- "integrations/**"
9+
- ".github/workflows/check-generated-files.yml"
610
pull_request:
711
branches: [main]
12+
paths:
13+
- "apps/dojo/**"
14+
- "integrations/**"
15+
- ".github/workflows/check-generated-files.yml"
816

917
jobs:
10-
check-files-json:
11-
name: Check files.json
18+
check-dojo-generated-files:
1219
runs-on: ubuntu-latest
1320
steps:
1421
- name: Checkout code
1522
uses: actions/checkout@v4
1623

24+
- name: Set up Node.js
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version: "22"
28+
29+
- name: Install pnpm
30+
uses: pnpm/action-setup@v4
31+
with:
32+
version: 10.13.1
33+
1734
- name: Regenerate files.json
18-
working-directory: typescript-sdk/apps/dojo
19-
run: npm run generate-content-json
35+
working-directory: apps/dojo
36+
run: pnpm generate-content-json
2037

2138
- name: Check files.json
22-
working-directory: typescript-sdk/apps/dojo
39+
working-directory: apps/dojo
2340
run: |
2441
if git diff --exit-code src/files.json > /dev/null; then
2542
echo "✅ No changes detected in dojo/src/files.json. Everything is up to date."
2643
else
2744
echo "❌ Detected changes in dojo/src/files.json."
2845
echo ""
29-
echo "Please run \`(p)npm run generate-content-json\` in the typescript-sdk/apps/dojo folder and commit the changes."
46+
echo "Please run \`(p)npm run generate-content-json\` in the apps/dojo folder and commit the changes."
3047
echo ""
3148
echo "The detected diff was as follows:"
3249
echo "::group::Diff for dojo/src/files.json"
3350
git diff src/files.json
3451
echo "::endgroup::"
3552
exit 1
3653
fi
37-
38-

0 commit comments

Comments
 (0)