Skip to content
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 18 additions & 8 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ updates:
rebase-strategy: auto
assignees:
- poad
cooldown:
default-days: 3
groups:
actions:
patterns:
- '*'
Comment thread
poad marked this conversation as resolved.
Comment thread
poad marked this conversation as resolved.

- package-ecosystem: npm
directories:
Expand All @@ -21,14 +27,14 @@ updates:
- '/agents//langgraph-deep-agent/'
- '/basic/cdk/'
- '/basic/app/'
- '/mpc/clients/langgraph-mpc-client/'
- '/mpc/clients/mastra-mcp-client/'
- '/mpc/clients/mcp-client-http/'
- '/mpc/clients/mcp-client-typescript/'
- '/mpc/servers/postgresql-http/'
- '/mpc/servers/weather/'
- '/mpc/servers/weather-http/'
- '/mpc/servers/resource-mcp-server/'
- '/mcp/clients/langgraph-mcp-client/'
Comment thread
poad marked this conversation as resolved.
- '/mcp/clients/mastra-mcp-client/'
- '/mcp/clients/mcp-client-http/'
- '/mcp/clients/mcp-client-typescript/'
- '/mcp/servers/postgresql-http/'
- '/mcp/servers/weather/'
- '/mcp/servers/weather-http/'
- '/mcp/servers/resource-mcp-server/'
Comment thread
poad marked this conversation as resolved.
- '/node-llama-cpp/'
- '/rag/app/'
- '/rag/batch/'
Expand All @@ -37,6 +43,10 @@ updates:
schedule:
interval: daily
timezone: Asia/Tokyo
cooldown:
default-days: 3
exclude:
- 'pnpm'
allow:
- dependency-type: all
rebase-strategy: auto
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,14 @@ on:
pull_request:

permissions:
contents: write
contents: read
Comment thread
poad marked this conversation as resolved.
Comment thread
poad marked this conversation as resolved.
pull-requests: write

jobs:
pull-request-auto-merge:
auto-merge:
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5

- name: Enable auto-merge for Pull Request
Comment thread
poad marked this conversation as resolved.
run: |
gh pr review --approve "$PR_URL"
Expand Down
78 changes: 2 additions & 76 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,14 @@ on:

jobs:
lint-build:
strategy:
matrix:
node-version: [22.x]

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5

- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js
uses: actions/setup-node@v5
Comment thread
poad marked this conversation as resolved.
with:
node-version: ${{ matrix.node-version }}
node-version: 'lts/*'
check-latest: true
Comment thread
poad marked this conversation as resolved.
package-manager-cache: false

Expand All @@ -42,73 +38,3 @@ jobs:

- name: lint
run: bun run lint

# lint-build-mastra:
# strategy:
# matrix:
# node-version: [22.x]

# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v5

# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v4
# with:
# node-version: ${{ matrix.node-version }}
# check-latest: true

# - uses: pnpm/action-setup@v4
# name: Install pnpm
# with:
# run_install: |
# - recursive: true
# args: [--no-frozen-lockfile]
# cwd: agents/agent-mastra
# - args: [--global, esbuild]
# package_json_file: agents/agent-mastra/package.json

# - uses: oven-sh/setup-bun@v2

# - name: lint
# working-directory: agents/agent-mastra
# run: bun run lint

# - name: build
# working-directory: agents/agent-mastra
# run: bun run build

# lint-build-mastra-mcp-client:
# strategy:
# matrix:
# node-version: [22.x]

# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v5

# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v4
# with:
# node-version: ${{ matrix.node-version }}
# check-latest: true

# - uses: pnpm/action-setup@v4
# name: Install pnpm
# with:
# run_install: |
# - recursive: true
# args: [--no-frozen-lockfile]
# cwd: mpc/clients/mastra-mcp-client
# - args: [--global, esbuild]
# package_json_file: mpc/clients/mastra-mcp-client/package.json

# - uses: oven-sh/setup-bun@v2

# - name: lint
# working-directory: mpc/clients/mastra-mcp-client
# run: bun run lint

# - name: build
# working-directory: mpc/clients/mastra-mcp-client
# run: bun run build
15 changes: 4 additions & 11 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@ jobs:
group: "cloudformation-llm-basic"
cancel-in-progress: false

strategy:
matrix:
node-version: [22.x]

runs-on: ubuntu-latest
steps:
- name: Configure AWS Credentials
Expand All @@ -40,10 +36,10 @@ jobs:

- uses: actions/checkout@v5

- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
node-version: 'lts/*'
check-latest: true
package-manager-cache: false

Expand Down Expand Up @@ -75,9 +71,6 @@ jobs:
concurrency:
group: "rag-examle-cloudformation"
cancel-in-progress: false
strategy:
matrix:
node-version: [22.x]

runs-on: ubuntu-latest
steps:
Expand All @@ -90,10 +83,10 @@ jobs:

- uses: actions/checkout@v5

- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
node-version: 'lts/*'
check-latest: true
package-manager-cache: false

Expand Down
30 changes: 16 additions & 14 deletions .github/workflows/opencode.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,27 @@
name: opencode

on:
issue_comment:
types: [created]
# https://github.com/sst/opencode/pull/2614 がマージされて、アクションが動作するようになってから再検証する。
# issue_comment:
# types: [created]

pull_request:
# pull_request_review:
# types: [submitted]

pull_request_review:
types: [submitted]
# pull_request_review_comment:
# types: [created]

pull_request_review_comment:
types: [created]
workflow_dispatch:
Comment thread
poad marked this conversation as resolved.

jobs:
opencode:
if: |
github.event_name == 'pull_request' ||
contains(github.event.comment.body, ' /oc') ||
startsWith(github.event.comment.body, '/oc') ||
contains(github.event.comment.body, ' /opencode') ||
startsWith(github.event.comment.body, '/opencode')
# https://github.com/sst/opencode/pull/2614 がマージされて、アクションが動作するようになってから再検証する。
# if: |
# github.event_name == 'pull_request' ||
# contains(github.event.comment.body, ' /oc') ||
# startsWith(github.event.comment.body, '/oc') ||
# contains(github.event.comment.body, ' /opencode') ||
# startsWith(github.event.comment.body, '/opencode')
runs-on: ubuntu-latest
permissions:
contents: read
Expand All @@ -29,7 +31,7 @@ jobs:
uses: actions/checkout@v5

- name: Run opencode
uses: sst/opencode/github@v0.11.1
uses: sst/opencode/github@v0.11.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
2 changes: 1 addition & 1 deletion agents/agent-mastra/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"type": "module",
"dependencies": {
"@ai-sdk/amazon-bedrock": "^3.0.23",
"@ai-sdk/azure": "^2.0.34",
"@ai-sdk/azure": "^2.0.35",
"@mastra/core": "^0.18.0",
"@mastra/libsql": "^0.14.3",
"@mastra/loggers": "^0.10.13",
Expand Down
2 changes: 1 addition & 1 deletion agents/langgraph-deep-agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"vitest": "^3.2.4"
},
"dependencies": {
"@aws-sdk/credential-provider-node": "^3.895.0",
"@aws-sdk/credential-provider-node": "^3.896.0",
"@langchain/anthropic": "^0.3.28",
"@langchain/aws": "^0.1.15",
"@langchain/community": "^0.3.56",
Expand Down
10 changes: 5 additions & 5 deletions basic/cdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@types/node": "^22.18.6",
"@types/uuid": "^10.0.0",
"@vitest/eslint-plugin": "^1.3.12",
"aws-cdk": "^2.1029.2",
"aws-cdk": "^2.1029.3",
"dotenv": "^16.6.1",
"eslint": "^9.36.0",
"eslint-import-resolver-typescript": "^4.4.4",
Expand All @@ -35,10 +35,10 @@
"vitest": "^3.2.4"
},
"dependencies": {
"@arizeai/openinference-instrumentation-bedrock": "^0.4.0",
"@arizeai/openinference-instrumentation-langchain": "^3.4.2",
"@aws-lambda-powertools/logger": "^2.26.1",
"@aws-sdk/credential-provider-node": "^3.895.0",
"@arizeai/openinference-instrumentation-bedrock": "^0.4.1",
"@arizeai/openinference-instrumentation-langchain": "^3.4.3",
"@aws-lambda-powertools/logger": "^2.27.0",
Comment thread
poad marked this conversation as resolved.
Comment thread
poad marked this conversation as resolved.
"@aws-sdk/credential-provider-node": "^3.896.0",
"@langchain/anthropic": "^0.3.28",
"@langchain/aws": "^0.1.15",
"@langchain/core": "^0.3.77",
Expand Down
2 changes: 1 addition & 1 deletion common/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"lint-fix": "eslint . --fix"
},
"dependencies": {
"@aws-lambda-powertools/logger": "^2.26.1",
"@aws-lambda-powertools/logger": "^2.27.0",
"@langchain/aws": "^0.1.15",
"@langchain/core": "^0.3.77",
"@langchain/openai": "^0.5.18",
Expand Down
2 changes: 1 addition & 1 deletion common/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@stylistic/eslint-plugin": "^5.4.0",
"@types/node": "^22.18.6",
"@vitest/eslint-plugin": "^1.3.12",
"aws-cdk": "^2.1029.2",
"aws-cdk": "^2.1029.3",
"eslint": "^9.36.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^3.0.23",
"@ai-sdk/azure": "^2.0.34",
"@ai-sdk/azure": "^2.0.35",
Comment thread
poad marked this conversation as resolved.
"@mastra/core": "^0.18.0",
"@mastra/loggers": "^0.10.13",
"@mastra/mcp": "^0.13.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"license": "ISC",
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@aws-sdk/client-bedrock-runtime": "^3.895.0",
"@aws-sdk/client-bedrock-runtime": "^3.896.0",
"@inquirer/prompts": "^7.8.6",
"@modelcontextprotocol/sdk": "^1.18.1",
"dotenv": "^16.6.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"license": "ISC",
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@aws-sdk/client-bedrock-runtime": "^3.895.0",
"@aws-sdk/client-bedrock-runtime": "^3.896.0",
"@inquirer/prompts": "^7.8.6",
"@modelcontextprotocol/sdk": "^1.18.1",
"dotenv": "^16.6.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"vitest": "^3.2.4"
},
"dependencies": {
"@aws-lambda-powertools/logger": "^2.26.1",
"@aws-lambda-powertools/logger": "^2.27.0",
"@hono/node-server": "^1.19.4",
"@modelcontextprotocol/sdk": "^1.18.1",
"@vercel/mcp-adapter": "^1.0.0",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading