Skip to content
Open
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
49 changes: 49 additions & 0 deletions .github/workflows/claude.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Claude Code

on:
issue_comment:
types: [created]
pull_request_review_comment:
types: [created]
issues:
types: [opened, assigned]
pull_request_review:
types: [submitted]

jobs:
claude:
if: |
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
issues: read
id-token: write
actions: read # Required for Claude to read CI results on PRs
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Run Claude Code
id: claude
uses: anthropics/claude-code-action@v1
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY_GITHUB_ACTIONS }}

# This is an optional setting that allows Claude to read CI results on PRs
additional_permissions: |
actions: read

# Optional: Give a custom prompt to Claude. If this is not specified, Claude will perform the instructions specified in the comment that tagged it.
# prompt: 'Update the pull request description to include a summary of changes.'

# Optional: Add claude_args to customize behavior and configuration
# See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md
# or https://code.claude.com/docs/en/cli-reference for available options
# claude_args: '--allowed-tools Bash(gh pr:*)'
4 changes: 2 additions & 2 deletions extras/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"dependencies": {
"@repo/ui": "workspace:^",
"next": "^15.5.14",
"next": "^15.5.16",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
Expand All @@ -24,6 +24,6 @@
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.2",
"typescript": "^5.9.3"
"typescript": "^6.0.3"
}
}
9 changes: 8 additions & 1 deletion extras/docs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@
}
]
},
"include": ["**/*.ts", "**/*.tsx", "next-env.d.ts", "next.config.js", ".next/types/**/*.ts"],
"include": [
"**/*.ts",
"**/*.tsx",
"../../repo/typescript-config/next-css-side-effect.d.ts",
"next-env.d.ts",
"next.config.js",
".next/types/**/*.ts"
],
"exclude": ["node_modules"]
}
4 changes: 2 additions & 2 deletions extras/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"dependencies": {
"@repo/ui": "workspace:^",
"next": "^15.5.14",
"next": "^15.5.16",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
Expand All @@ -24,6 +24,6 @@
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.2",
"typescript": "^5.9.3"
"typescript": "^6.0.3"
}
}
9 changes: 8 additions & 1 deletion extras/web/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@
}
]
},
"include": ["**/*.ts", "**/*.tsx", "next-env.d.ts", "next.config.js", ".next/types/**/*.ts"],
"include": [
"**/*.ts",
"**/*.tsx",
"../../repo/typescript-config/next-css-side-effect.d.ts",
"next-env.d.ts",
"next.config.js",
".next/types/**/*.ts"
],
"exclude": ["node_modules"]
}
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"lefthook": "^2.1.1",
"prettier": "^3.8.1",
"lefthook": "^2.1.6",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"syncpack": "^14.0.0",
"turbo": "^2.8.10",
"typescript": "^5.9.3"
"syncpack": "^14.3.1",
"turbo": "^2.9.14",
"typescript": "^6.0.3"
},
"pnpm": {
"overrides": {
"ox": "^0.9.17"
}
},
"packageManager": "pnpm@10.24.0",
"packageManager": "pnpm@10.33.4",
"engines": {
"node": ">=18"
},
Expand Down
36 changes: 36 additions & 0 deletions packages/services/api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# @0xsequence/api

## 3.0.11

### Patch Changes

- Fix for relayer sponsored fees

## 3.0.10

### Patch Changes

- Minor network updates, relayer interface

## 3.0.9

### Patch Changes

- Fee options fixes

## 3.0.8

### Patch Changes

- Bug fix for relayer fee options handling

## 3.0.7

### Patch Changes

- Minor bug fixes

## 3.0.6

### Patch Changes

- userdata upgrade, arweave support

## 3.0.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/services/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@0xsequence/api",
"version": "3.0.5",
"version": "3.0.11",
"description": "api sub-package for Sequence",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/services/api",
"author": "Sequence Platforms ULC",
Expand All @@ -26,6 +26,6 @@
"@repo/typescript-config": "workspace:^",
"@types/node": "^25.3.0",
"@repo/eslint-config": "workspace:^",
"typescript": "^5.9.3"
"typescript": "^6.0.3"
}
}
36 changes: 36 additions & 0 deletions packages/services/builder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# @0xsequence/builder

## 3.0.11

### Patch Changes

- Fix for relayer sponsored fees

## 3.0.10

### Patch Changes

- Minor network updates, relayer interface

## 3.0.9

### Patch Changes

- Fee options fixes

## 3.0.8

### Patch Changes

- Bug fix for relayer fee options handling

## 3.0.7

### Patch Changes

- Minor bug fixes

## 3.0.6

### Patch Changes

- userdata upgrade, arweave support

## 3.0.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/services/builder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@0xsequence/builder",
"version": "3.0.5",
"version": "3.0.11",
"description": "builder sub-package for Sequence",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/services/builder",
"author": "Sequence Platforms ULC",
Expand All @@ -26,6 +26,6 @@
"@repo/eslint-config": "workspace:^",
"@repo/typescript-config": "workspace:^",
"@types/node": "^25.3.0",
"typescript": "^5.9.3"
"typescript": "^6.0.3"
}
}
36 changes: 36 additions & 0 deletions packages/services/guard/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# @0xsequence/guard

## 3.0.11

### Patch Changes

- Fix for relayer sponsored fees

## 3.0.10

### Patch Changes

- Minor network updates, relayer interface

## 3.0.9

### Patch Changes

- Fee options fixes

## 3.0.8

### Patch Changes

- Bug fix for relayer fee options handling

## 3.0.7

### Patch Changes

- Minor bug fixes

## 3.0.6

### Patch Changes

- userdata upgrade, arweave support

## 3.0.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/services/guard/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@0xsequence/guard",
"version": "3.0.5",
"version": "3.0.11",
"description": "guard sub-package for Sequence",
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/services/guard",
"author": "Sequence Platforms ULC",
Expand Down Expand Up @@ -28,7 +28,7 @@
"@repo/eslint-config": "workspace:^",
"@repo/typescript-config": "workspace:^",
"@types/node": "^25.3.0",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"vitest": "^4.0.18"
},
"dependencies": {
Expand Down
36 changes: 36 additions & 0 deletions packages/services/identity-instrument/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# @0xsequence/identity-instrument

## 3.0.11

### Patch Changes

- Fix for relayer sponsored fees

## 3.0.10

### Patch Changes

- Minor network updates, relayer interface

## 3.0.9

### Patch Changes

- Fee options fixes

## 3.0.8

### Patch Changes

- Bug fix for relayer fee options handling

## 3.0.7

### Patch Changes

- Minor bug fixes

## 3.0.6

### Patch Changes

- userdata upgrade, arweave support

## 3.0.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/services/identity-instrument/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@0xsequence/identity-instrument",
"version": "3.0.5",
"version": "3.0.11",
"license": "Apache-2.0",
"type": "module",
"publishConfig": {
Expand All @@ -24,7 +24,7 @@
"@repo/eslint-config": "workspace:^",
"@repo/typescript-config": "workspace:^",
"@types/node": "^25.3.0",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"vitest": "^4.0.18"
},
"dependencies": {
Expand Down
Loading