Skip to content

Commit 4c70d54

Browse files
committed
♻️ Remove Claude integration leftovers
1 parent eb8e66b commit 4c70d54

22 files changed

Lines changed: 74 additions & 1985 deletions

File tree

.claude-plugin/marketplace.json

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

.github/workflows/claude-code-review.yml

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

.github/workflows/claude.yml

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

.github/workflows/release-ember-client.yml

Lines changed: 10 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -70,43 +70,16 @@ jobs:
7070
echo "version=$NEW_VERSION" >> $GITHUB_OUTPUT
7171
echo "tag=ember/v$NEW_VERSION" >> $GITHUB_OUTPUT
7272
73-
- name: Generate changelog with Claude
74-
id: changelog
75-
uses: anthropics/claude-code-action@v1
76-
with:
77-
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
78-
prompt: |
79-
Generate release notes for the Vizzly Ember SDK v${{ steps.version.outputs.version }}.
80-
81-
Context:
82-
- Client location: `clients/ember/`
83-
- Previous tag: `ember/v${{ steps.current_version.outputs.version }}`
84-
- New version: `${{ steps.version.outputs.version }}`
85-
- This is a monorepo with multiple clients and a CLI
86-
87-
Instructions:
88-
1. Use git commands (via Bash tool) to get commits since last ember/* tag
89-
2. Analyze which commits are relevant to `clients/ember/`
90-
3. Read the code changes if needed to understand impact
91-
4. Generate user-friendly release notes with categories: Added, Changed, Fixed
92-
5. Focus on user-facing changes only
93-
6. If no relevant changes, output: "No changes to Ember SDK in this release"
94-
95-
Save the changelog to `clients/ember/CHANGELOG-RELEASE.md` with this format:
96-
97-
## What's Changed
98-
99-
### Added
100-
- New features
101-
102-
### Changed
103-
- Breaking or notable changes
104-
105-
### Fixed
106-
- Bug fixes
107-
108-
**Full Changelog**: https://github.com/vizzly-testing/cli/compare/ember/v${{ steps.current_version.outputs.version }}...ember/v${{ steps.version.outputs.version }}
109-
claude_args: '--allowed-tools "Bash(git:*),Write"'
73+
- name: Generate changelog
74+
run: |
75+
{
76+
echo "## What's Changed"
77+
echo ""
78+
git log --no-merges --pretty=format:'- %s' "ember/v${{ steps.current_version.outputs.version }}...HEAD" -- clients/ember || true
79+
echo ""
80+
echo ""
81+
echo "**Full Changelog**: https://github.com/vizzly-testing/cli/compare/ember/v${{ steps.current_version.outputs.version }}...ember/v${{ steps.version.outputs.version }}"
82+
} > clients/ember/CHANGELOG-RELEASE.md
11083
11184
- name: Install dependencies
11285
working-directory: ./clients/ember

.github/workflows/release-ruby-client.yml

Lines changed: 10 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -72,43 +72,16 @@ jobs:
7272
echo "version=$NEW_VERSION" >> $GITHUB_OUTPUT
7373
echo "tag=ruby/v$NEW_VERSION" >> $GITHUB_OUTPUT
7474
75-
- name: Generate changelog with Claude
76-
id: changelog
77-
uses: anthropics/claude-code-action@v1
78-
with:
79-
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
80-
prompt: |
81-
Generate release notes for the Vizzly Ruby Client SDK v${{ steps.new_version.outputs.version }}.
82-
83-
Context:
84-
- Client location: `clients/ruby/`
85-
- Previous tag: `ruby/v${{ steps.current_version.outputs.version }}`
86-
- New version: `${{ steps.new_version.outputs.version }}`
87-
- This is a monorepo with multiple clients and a CLI
88-
89-
Instructions:
90-
1. Use git commands (via Bash tool) to get commits since last ruby/* tag
91-
2. Analyze which commits are relevant to `clients/ruby/`
92-
3. Read the code changes if needed to understand impact
93-
4. Generate user-friendly release notes with categories: Added, Changed, Fixed
94-
5. Focus on user-facing changes only
95-
6. If no relevant changes, output: "No changes to Ruby client in this release"
96-
97-
Save the changelog to `clients/ruby/CHANGELOG-RELEASE.md` with this format:
98-
99-
## What's Changed
100-
101-
### Added
102-
- New features
103-
104-
### Changed
105-
- Breaking or notable changes
106-
107-
### Fixed
108-
- Bug fixes
109-
110-
**Full Changelog**: https://github.com/vizzly-testing/vizzly-cli/compare/ruby/v${{ steps.current_version.outputs.version }}...ruby/v${{ steps.new_version.outputs.version }}
111-
claude_args: '--allowed-tools "Bash(git:*)"'
75+
- name: Generate changelog
76+
run: |
77+
{
78+
echo "## What's Changed"
79+
echo ""
80+
git log --no-merges --pretty=format:'- %s' "ruby/v${{ steps.current_version.outputs.version }}...HEAD" -- clients/ruby || true
81+
echo ""
82+
echo ""
83+
echo "**Full Changelog**: https://github.com/vizzly-testing/vizzly-cli/compare/ruby/v${{ steps.current_version.outputs.version }}...ruby/v${{ steps.new_version.outputs.version }}"
84+
} > clients/ruby/CHANGELOG-RELEASE.md
11285
11386
- name: Update version in gemspec
11487
working-directory: ./clients/ruby

.github/workflows/release-static-site-client.yml

Lines changed: 10 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -61,43 +61,16 @@ jobs:
6161
echo "version=$NEW_VERSION" >> $GITHUB_OUTPUT
6262
echo "tag=static-site/v$NEW_VERSION" >> $GITHUB_OUTPUT
6363
64-
- name: Generate changelog with Claude
65-
id: changelog
66-
uses: anthropics/claude-code-action@v1
67-
with:
68-
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
69-
prompt: |
70-
Generate release notes for the Vizzly Static Site Plugin v${{ steps.version.outputs.version }}.
71-
72-
Context:
73-
- Client location: `clients/static-site/`
74-
- Previous tag: `static-site/v${{ steps.current_version.outputs.version }}`
75-
- New version: `${{ steps.version.outputs.version }}`
76-
- This is a monorepo with multiple clients and a CLI
77-
78-
Instructions:
79-
1. Use git commands (via Bash tool) to get commits since last static-site/* tag
80-
2. Analyze which commits are relevant to `clients/static-site/`
81-
3. Read the code changes if needed to understand impact
82-
4. Generate user-friendly release notes with categories: Added, Changed, Fixed
83-
5. Focus on user-facing changes only
84-
6. If no relevant changes, output: "No changes to Static Site plugin in this release"
85-
86-
Save the changelog to `clients/static-site/CHANGELOG-RELEASE.md` with this format:
87-
88-
## What's Changed
89-
90-
### Added
91-
- New features
92-
93-
### Changed
94-
- Breaking or notable changes
95-
96-
### Fixed
97-
- Bug fixes
98-
99-
**Full Changelog**: https://github.com/vizzly-testing/cli/compare/static-site/v${{ steps.current_version.outputs.version }}...static-site/v${{ steps.version.outputs.version }}
100-
claude_args: '--allowed-tools "Bash(git:*),Write"'
64+
- name: Generate changelog
65+
run: |
66+
{
67+
echo "## What's Changed"
68+
echo ""
69+
git log --no-merges --pretty=format:'- %s' "static-site/v${{ steps.current_version.outputs.version }}...HEAD" -- clients/static-site || true
70+
echo ""
71+
echo ""
72+
echo "**Full Changelog**: https://github.com/vizzly-testing/cli/compare/static-site/v${{ steps.current_version.outputs.version }}...static-site/v${{ steps.version.outputs.version }}"
73+
} > clients/static-site/CHANGELOG-RELEASE.md
10174
10275
- name: Install dependencies
10376
working-directory: ./clients/static-site

.github/workflows/release-storybook-client.yml

Lines changed: 10 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -62,43 +62,16 @@ jobs:
6262
echo "version=$NEW_VERSION" >> $GITHUB_OUTPUT
6363
echo "tag=storybook/v$NEW_VERSION" >> $GITHUB_OUTPUT
6464
65-
- name: Generate changelog with Claude
66-
id: changelog
67-
uses: anthropics/claude-code-action@v1
68-
with:
69-
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
70-
prompt: |
71-
Generate release notes for the Vizzly Storybook Plugin v${{ steps.version.outputs.version }}.
72-
73-
Context:
74-
- Client location: `clients/storybook/`
75-
- Previous tag: `storybook/v${{ steps.current_version.outputs.version }}`
76-
- New version: `${{ steps.version.outputs.version }}`
77-
- This is a monorepo with multiple clients and a CLI
78-
79-
Instructions:
80-
1. Use git commands (via Bash tool) to get commits since last storybook/* tag
81-
2. Analyze which commits are relevant to `clients/storybook/`
82-
3. Read the code changes if needed to understand impact
83-
4. Generate user-friendly release notes with categories: Added, Changed, Fixed
84-
5. Focus on user-facing changes only
85-
6. If no relevant changes, output: "No changes to Storybook plugin in this release"
86-
87-
Save the changelog to `clients/storybook/CHANGELOG-RELEASE.md` with this format:
88-
89-
## What's Changed
90-
91-
### Added
92-
- New features
93-
94-
### Changed
95-
- Breaking or notable changes
96-
97-
### Fixed
98-
- Bug fixes
99-
100-
**Full Changelog**: https://github.com/vizzly-testing/cli/compare/storybook/v${{ steps.current_version.outputs.version }}...storybook/v${{ steps.version.outputs.version }}
101-
claude_args: '--allowed-tools "Bash(git:*),Write"'
65+
- name: Generate changelog
66+
run: |
67+
{
68+
echo "## What's Changed"
69+
echo ""
70+
git log --no-merges --pretty=format:'- %s' "storybook/v${{ steps.current_version.outputs.version }}...HEAD" -- clients/storybook || true
71+
echo ""
72+
echo ""
73+
echo "**Full Changelog**: https://github.com/vizzly-testing/cli/compare/storybook/v${{ steps.current_version.outputs.version }}...storybook/v${{ steps.version.outputs.version }}"
74+
} > clients/storybook/CHANGELOG-RELEASE.md
10275
10376
- name: Install dependencies
10477
working-directory: ./clients/storybook

.github/workflows/release-swift-client.yml

Lines changed: 10 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -74,43 +74,16 @@ jobs:
7474
echo "version=$NEW_VERSION" >> $GITHUB_OUTPUT
7575
echo "tag=swift/v$NEW_VERSION" >> $GITHUB_OUTPUT
7676
77-
- name: Generate changelog with Claude
78-
id: changelog
79-
uses: anthropics/claude-code-action@v1
80-
with:
81-
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
82-
prompt: |
83-
Generate release notes for the Vizzly Swift SDK v${{ steps.new_version.outputs.version }}.
84-
85-
Context:
86-
- Client location: `clients/swift/`
87-
- Previous tag: `swift/v${{ steps.current_version.outputs.version }}`
88-
- New version: `${{ steps.new_version.outputs.version }}`
89-
- This is a monorepo with multiple clients and a CLI
90-
91-
Instructions:
92-
1. Use git commands (via Bash tool) to get commits since last swift/* tag
93-
2. Analyze which commits are relevant to `clients/swift/`
94-
3. Read the code changes if needed to understand impact
95-
4. Generate user-friendly release notes with categories: Added, Changed, Fixed
96-
5. Focus on user-facing changes only
97-
6. If no relevant changes, output: "No changes to Swift client in this release"
98-
99-
Save the changelog to `clients/swift/CHANGELOG-RELEASE.md` with this format:
100-
101-
## What's Changed
102-
103-
### Added
104-
- New features
105-
106-
### Changed
107-
- Breaking or notable changes
108-
109-
### Fixed
110-
- Bug fixes
111-
112-
**Full Changelog**: https://github.com/vizzly-testing/cli/compare/swift/v${{ steps.current_version.outputs.version }}...swift/v${{ steps.new_version.outputs.version }}
113-
claude_args: '--allowed-tools "Bash(git:*)"'
77+
- name: Generate changelog
78+
run: |
79+
{
80+
echo "## What's Changed"
81+
echo ""
82+
git log --no-merges --pretty=format:'- %s' "swift/v${{ steps.current_version.outputs.version }}...HEAD" -- clients/swift || true
83+
echo ""
84+
echo ""
85+
echo "**Full Changelog**: https://github.com/vizzly-testing/cli/compare/swift/v${{ steps.current_version.outputs.version }}...swift/v${{ steps.new_version.outputs.version }}"
86+
} > clients/swift/CHANGELOG-RELEASE.md
11487
11588
- name: Update CHANGELOG.md
11689
working-directory: ./clients/swift

0 commit comments

Comments
 (0)