Open
Conversation
Adding CLAUDE.md with task information for AI processing. This file will be removed when the task is complete. Issue: #1265
This commit adds a manually-triggered GitHub Action workflow that allows solving GitHub issues using free AI models (Kimi, etc.) without requiring any AI provider authentication. Key features: - Manual trigger via workflow_dispatch with issue URL input - Support for free AI models: kimi-k2.5-free, minimax-m2.1-free, gpt-5-nano, etc. - Uses GITHUB_TOKEN by default for gh CLI authentication - Optional PAT support for cross-repository access - Auto-fork option for contributing to public repos without write access - Comprehensive documentation and case study Files added: - .github/workflows/solve-issue.yml: Main workflow file - docs/GITHUB_ACTIONS.md: User documentation - docs/case-studies/issue-1265/README.md: Research and design analysis Fixes #1265 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Apply prettier formatting to docs - Add changeset for minor version bump Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This reverts commit 8a8dd5d.
Contributor
Author
🤖 Solution Draft LogThis log file contains the complete execution trace of the AI solution draft process. 💰 Cost estimation:
Now working session is ended, feel free to review and add any feedback on the solution draft. |
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
This PR adds a GitHub Action prototype that allows manually triggering issue solving with a GitHub issue URL as input. The workflow uses free AI models (Kimi, etc.) that require no AI provider authentication, combined with GitHub Actions' built-in GITHUB_TOKEN for
ghCLI authentication.Key Features
workflow_dispatchwith issue URL inputkimi-k2.5-free(default) - 262K context windowminimax-m2.1-free- 204K context windowgpt-5-nano- 200K context windowglm-4.7-free- 204K context windowbig-pickle- 200K context windowGITHUB_TOKENby default (no setup required)Files Changed
.github/workflows/solve-issue.ymldocs/GITHUB_ACTIONS.mddocs/case-studies/issue-1265/README.mdHow to Use
https://github.com/owner/repo/issues/123)Authentication Options
Research & Design
See Case Study: Issue #1265 for detailed research on:
Test Plan
References
Fixes #1265