Skip to content

Commit ec4acb7

Browse files
committed
fix: install script now uses branches with ALL 6 PRs combined
Updated to use feature/dev-workflow-docs branches which contain: - LLMS: PRs musistudio#28, musistudio#29, musistudio#30 (Core API + Documentation + Workflow) - CCR: PRs musistudio#677, musistudio#678, musistudio#679 (Reasoning Control + Docs + Workflow) This ensures users get the complete feature set, not just partial work.
1 parent 11af2d6 commit ec4acb7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

scripts/quickstart-gpt5.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
#
33
# quickstart-gpt5.sh - One-command setup for CCR×GPT-5 integration
44
#
5-
# Purpose: Give contributors a reproducible setup to run the CCR×GPT-5 PR stack locally
6-
# Uses PR branches with ALL combined work: PR #28 (LLMS) + PR #677 (CCR)
5+
# Purpose: Give contributors a reproducible setup to run the CCR×GPT-5 PR stack locally
6+
# Uses feature/dev-workflow-docs branches with ALL 6 PRs combined
77
#
88
# Usage:
99
# export OPENAI_API_KEY=sk-...
1010
# bash quickstart-gpt5.sh
1111
#
1212
# This script will:
13-
# 1. Clone/update both repos to PR branches with ALL combined fixes
14-
# 2. Build LLMS with GPT-5 normalization + reasoning + tool conversion
13+
# 1. Clone/update both repos to feature/dev-workflow-docs (contains ALL 6 PRs)
14+
# 2. Build LLMS with complete GPT-5 integration (normalization + reasoning + docs)
1515
# 3. Link LLMS to CCR using yalc (following dev-workflow pattern)
16-
# 4. Build CCR with inline reasoning control enhancements
16+
# 4. Build CCR with complete enhancements (reasoning tokens + docs + workflows)
1717
# 5. Use existing CCR config.json with env-var interpolation
1818
# 6. Provide clear next steps for testing
1919

@@ -34,9 +34,9 @@ echo ""
3434
# Configuration
3535
LLMS_REPO="https://github.com/semikolon/llms.git"
3636
CCR_REPO="https://github.com/semikolon/claude-code-router.git"
37-
LLMS_BRANCH="review/llms-pr1-head" # PR #28 with all combined work
38-
LLMS_COMMIT="eb1424e" # Latest commit with normalization + all PR work
39-
CCR_BRANCH="review/ccr-pr1-head" # PR #677 with CCR enhancements
37+
LLMS_BRANCH="feature/dev-workflow-docs" # Latest branch with ALL 6 PRs included
38+
LLMS_COMMIT="defcf67" # Latest commit with all PR work combined
39+
CCR_BRANCH="feature/dev-workflow-docs" # Latest CCR branch with all enhancements
4040
WORK_DIR="${HOME}/gpt5-test"
4141
CCR_CONFIG="${HOME}/.claude-code-router/config.json"
4242

0 commit comments

Comments
 (0)