fix: correct installation script URLs from ddx-tools/ddx to easel/ddx#19
Open
mehdipiraee wants to merge 2 commits intoeasel:mainfrom
Open
fix: correct installation script URLs from ddx-tools/ddx to easel/ddx#19mehdipiraee wants to merge 2 commits intoeasel:mainfrom
mehdipiraee wants to merge 2 commits intoeasel:mainfrom
Conversation
The installation URLs were pointing to ddx-tools/ddx which returns 404. Updated all references to use the correct repository easel/ddx. Files updated: - README.md: Fixed installation commands and repository references - docs/SETUP_GUIDE.md: Fixed installation URLs and GitHub links This resolves the 404 error users encounter when trying to install DDx. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Found and fixed all remaining incorrect repository references throughout: Documentation files (7): - docs/helix/02-design/architecture.md - docs/helix/02-design/contracts/CLI-001-core-commands.md - docs/helix/02-design/contracts/CLI-002-sync-commands.md - docs/helix/02-design/contracts/CLI-003-utility-commands.md - docs/helix/02-design/data-design.md - docs/helix/02-design/deployment.md - docs/helix/02-design/solution-designs/SD-002-upstream-synchronization.md Go source files (6): - cli/cmd/contribute.go - cli/cmd/e2e_test.go - cli/cmd/sync_acceptance_test.go - cli/cmd/sync_contract_test.go - cli/cmd/test_harness.go - cli/cmd/uninstall.go This completes the comprehensive fix for all 404-causing URL references throughout the entire codebase. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
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
Fixed all broken repository URLs throughout the codebase that were returning 404 errors.
Problem
Multiple files referenced
ddx-tools/ddxrepository which doesn't exist, causing 404 errors when users try to install DDx or access documentation links:Solution
Performed comprehensive update of all repository references to point to the correct repository
easel/ddx:Files Updated (15 total):
Documentation (9 files):
README.md- Fixed installation commands and repository referencesdocs/SETUP_GUIDE.md- Fixed installation URLs and GitHub linksdocs/helix/02-design/architecture.md- Updated architecture diagramsdocs/helix/02-design/contracts/CLI-001-core-commands.md- Fixed CLI contract examplesdocs/helix/02-design/contracts/CLI-002-sync-commands.md- Updated sync command examplesdocs/helix/02-design/contracts/CLI-003-utility-commands.md- Fixed utility command referencesdocs/helix/02-design/data-design.md- Updated data model examplesdocs/helix/02-design/deployment.md- Fixed deployment installation instructionsdocs/helix/02-design/solution-designs/SD-002-upstream-synchronization.md- Updated sync designGo Source Code (6 files):
cli/cmd/contribute.go- Fixed pull request URL generationcli/cmd/e2e_test.go- Updated test configuration examplescli/cmd/sync_acceptance_test.go- Fixed acceptance test configscli/cmd/sync_contract_test.go- Updated contract test examplescli/cmd/test_harness.go- Fixed test harness repository referencescli/cmd/uninstall.go- Updated uninstall message URLsVerification
Before (404 errors):
curl -I https://raw.githubusercontent.com/ddx-tools/ddx/main/install.sh # HTTP/2 404After (working):
curl -I https://raw.githubusercontent.com/easel/ddx/main/install.sh # HTTP/2 200Test Plan
install.shexists at correct locationddx-tools/ddxreferencesImpact
This fix resolves:
Now provides:
🤖 Generated with Claude Code