chore: rename org jamestexas → agentic-research#10
Merged
jamestexas merged 4 commits intomainfrom Mar 10, 2026
Merged
Conversation
Update Go module path, import statements, and documentation links to reflect the repository transfer from jamestexas/ to agentic-research/ organization. - Module path: github.com/agentic-research/go-cms - Internal imports updated - README badge, install, and pkg.go.dev URLs updated - Personal contact info preserved Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the repository/module identity after renaming the GitHub org from jamestexas to agentic-research, ensuring consumers and internal packages use the new import/module path.
Changes:
- Update
go.modmodule path togithub.com/agentic-research/go-cms - Rewrite internal Go import paths to the new module path
- Update README links, install command, and pkg.go.dev URL to the new location
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
go.mod |
Changes module path to the new GitHub org (but currently has an invalid go directive format). |
pkg/cms/verifier.go |
Updates internal import path to the new module path. |
pkg/cms/signer.go |
Updates internal import path to the new module path. |
cmd/cms-test-tool/main.go |
Updates CLI tool import path to the new module path. |
README.md |
Updates badge/release link, go get command, example import, and pkg.go.dev URL. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
The previous test certificate expired 2025-11-07, causing TestVerifyGoldenVector to fail. Regenerated with OpenSSL 3.6 using -days 36500 (valid until 2126) to prevent recurrence. The golden vector approach is kept (rather than generating at test time) to preserve the OpenSSL interop proof. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
The previous commit used `echo` which appends a newline to data.txt, causing a digest mismatch. Regenerated with `printf` to match the exact test data: "This is the data to be signed." (no trailing \n). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
All G115 (int->byte overflow) findings are false positives in DER length encoding functions where values are always bounded by preceding if-checks (< 128, < 256, < 65536). Co-Authored-By: Claude Opus 4.6 <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
github.com/jamestexas/go-cmstogithub.com/agentic-research/go-cmsTest plan
go build ./...compilesgo test ./...passes🤖 Generated with Claude Code