feat(dev)!: migrate workflow state from .claude/ to .catalyst/#62
Open
ryanrozich wants to merge 1 commit intomainfrom
Open
feat(dev)!: migrate workflow state from .claude/ to .catalyst/#62ryanrozich wants to merge 1 commit intomainfrom
ryanrozich wants to merge 1 commit intomainfrom
Conversation
Move Catalyst-specific config and workflow state to a dedicated .catalyst/ directory, separating it from Claude Code's native .claude/ directory. Changes: - Move config.json, config.template.json, config.example.json to .catalyst/ - Move workflow-context.json to .catalyst/ (drop leading dot in filename) - Update all references across 59 files (skills, agents, scripts, docs) - Add backward compat: check-project-setup.sh falls back to .claude/config.json - Create resolve-ticket.sh for unified ticket resolution (explicit > branch > currentTicket) - Update describe-pr filename pattern to include ticket for hook regex matching - Add 3 new tests (resolve-ticket, backward compat); all 28 tests pass BREAKING CHANGE: Config moved from .claude/config.json to .catalyst/config.json. Existing projects using .claude/config.json will see a migration warning. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Deploying catalyst with
|
| Latest commit: |
a9083a4
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://b5336c88.catalyst-7jq.pages.dev |
| Branch Preview URL: | https://ryanrozich-ctl-26-catalyst-m.catalyst-7jq.pages.dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.claude/to a dedicated.catalyst/directory, cleanly separating Catalyst workflow files from Claude Code's native.claude/directoryresolve-ticket.shfor unified ticket resolution across all skills (explicit arg > branch name >currentTicket)check-project-setup.shfalls back to.claude/config.jsonwith a migration warningWhat Changed
.claude/config.json.catalyst/config.json.claude/.workflow-context.json.catalyst/workflow-context.jsonresolve-ticket.sh${pr_number}_description.md${TICKET}_pr-${pr_number}_description.md61 files changed across all 3 plugins (dev, pm, meta), scripts, docs, and website.
Breaking Change
Config moved from
.claude/config.jsonto.catalyst/config.json. Existing projects using.claude/config.jsonwill see a migration warning and continue to work via backward compat fallback.Test plan
resolve-ticket.shreturns explicit ticketresolve-ticket.shfalls back tocurrentTicketcheck-project-setup.shbackward compat reads.claude/config.json.catalyst/is created on first skill invocation.claude/config.jsononlyCloses CTL-26