Conversation
Extract review orchestration into shared review-engine so both CLI and GitHub Action entry points can reuse it. Add language and context_files config options for localized review output and additional context loading. - Add ReviewOptions/ReviewOutput types, language/context_files to DialecticConfig - Create src/core/review-engine.ts with runReview() extracted from cli.ts - Create src/action.ts entry point using @actions/core and @actions/github - Create action.yml metadata (uses: node20, dist/action/index.js) - Add language support to ConsensusEngine (ko, ja, zh system message) - Fix PR number extraction: read GITHUB_EVENT_PATH instead of nonexistent env var - Update init command to generate action-based workflow (npx → uses: timenco/dialectic-pr@v1) - Add JSON Schema for editor autocompletion - Migrate $schema URLs from unpkg.com to raw.githubusercontent.com - Add ncc build pipeline (build:action, build:all scripts) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Mark package as private and remove all npm publishing artifacts: .npmignore, bin, files, prepublishOnly, scoped package name. Update README, specs, and self-review workflow to reflect action-based usage (uses: timenco/dialectic-pr@v1) instead of npx @dialectic-pr/core. 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.
Extract review orchestration into shared review-engine so both CLI and
GitHub Action entry points can reuse it. Add language and context_files
config options for localized review output and additional context loading.
Co-Authored-By: Claude Opus 4.6 noreply@anthropic.com