-
Notifications
You must be signed in to change notification settings - Fork 1
fix: Add PYTHONPATH and Phase 3 workflows to Workflows repo #694
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
9c68eb7
fix: Add PYTHONPATH and copy Phase 3 workflows to Workflows repo
stranske ecabcab
docs: Add comprehensive workflow audit results
stranske e249015
fix: Correct file paths in Phase 3 workflows
stranske 0cf42e8
docs: Add Phase 3 workflows to documentation inventory
stranske a940df1
Merge branch 'main' into fix/workflows-pythonpath-phase3
stranske 841d573
fix: Add missing PYTHONPATH to agents-auto-label.yml
stranske d91670b
test: Add Phase 3 workflows to EXPECTED_NAMES mapping
stranske File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,210 @@ | ||
| name: Capability Check | ||
|
|
||
| # Pre-flight check before agent assignment to identify blockers | ||
| # Uses capability_check.py to detect issues agents cannot complete | ||
|
|
||
| on: | ||
| issues: | ||
| types: [labeled] | ||
|
|
||
| permissions: | ||
| contents: read | ||
| issues: write | ||
| models: read | ||
|
|
||
| jobs: | ||
| capability-check: | ||
| runs-on: ubuntu-latest | ||
| # Trigger when agent:codex is added (pre-agent gate) | ||
| if: github.event.label.name == 'agent:codex' | ||
|
|
||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up Python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: "3.11" | ||
|
|
||
| - name: Install dependencies | ||
| run: | | ||
| pip install -e ".[langchain]" --quiet | ||
|
|
||
| - name: Extract issue content | ||
| id: extract | ||
| uses: actions/github-script@v8 | ||
| with: | ||
| script: | | ||
| const issue = context.payload.issue; | ||
| const body = issue.body || ''; | ||
|
|
||
| // Extract Tasks section | ||
| const tasksMatch = body.match(/## Tasks\s*\n([\s\S]*?)(?=##|$)/i); | ||
| const tasks = tasksMatch ? tasksMatch[1].trim() : ''; | ||
|
|
||
| // Extract Acceptance Criteria section | ||
| const acceptanceMatch = body.match(/## Acceptance [Cc]riteria\s*\n([\s\S]*?)(?=##|$)/i); | ||
| const acceptance = acceptanceMatch ? acceptanceMatch[1].trim() : ''; | ||
|
|
||
| // Write to files for Python script | ||
| const fs = require('fs'); | ||
| fs.writeFileSync('tasks.md', tasks || 'No tasks defined'); | ||
| fs.writeFileSync('acceptance.md', acceptance || 'No acceptance criteria defined'); | ||
|
|
||
| core.setOutput('has_tasks', tasks ? 'true' : 'false'); | ||
| core.setOutput('has_acceptance', acceptance ? 'true' : 'false'); | ||
|
|
||
| - name: Run capability check | ||
| id: check | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | ||
| PYTHONPATH: ${{ github.workspace }} | ||
| run: | | ||
| python -c " | ||
| import json | ||
| import os | ||
| import sys | ||
| sys.path.insert(0, '.') | ||
|
|
||
| from scripts.langchain.capability_check import check_capability | ||
|
|
||
| # Read extracted content | ||
| tasks = open('tasks.md').read() | ||
| acceptance = open('acceptance.md').read() | ||
|
|
||
| # Run capability check | ||
| result = check_capability(tasks, acceptance) | ||
|
|
||
| if result is None: | ||
| print('::warning::Could not run capability check (LLM unavailable)') | ||
| with open(os.environ['GITHUB_OUTPUT'], 'a') as f: | ||
| f.write('check_failed=true\n') | ||
| sys.exit(0) | ||
|
|
||
| # Output results | ||
| result_dict = result.to_dict() | ||
| with open(os.environ['GITHUB_OUTPUT'], 'a') as f: | ||
| f.write('check_failed=false\n') | ||
| f.write(f'recommendation={result.recommendation}\n') | ||
| f.write(f'blocked_count={len(result.blocked_tasks)}\n') | ||
| f.write(f'partial_count={len(result.partial_tasks)}\n') | ||
| f.write(f'result_json={json.dumps(result_dict)}\n') | ||
|
|
||
| print(f'Recommendation: {result.recommendation}') | ||
| print(f'Blocked tasks: {len(result.blocked_tasks)}') | ||
| print(f'Partial tasks: {len(result.partial_tasks)}') | ||
| print(f'Actionable tasks: {len(result.actionable_tasks)}') | ||
| " | ||
|
|
||
| - name: Add needs-human label if blocked | ||
| if: steps.check.outputs.recommendation == 'BLOCKED' | ||
| uses: actions/github-script@v8 | ||
| with: | ||
| script: | | ||
| await github.rest.issues.addLabels({ | ||
| owner: context.repo.owner, | ||
| repo: context.repo.repo, | ||
| issue_number: context.issue.number, | ||
| labels: ['needs-human'] | ||
| }); | ||
|
|
||
| // Remove agent:codex since agent can't complete this | ||
| try { | ||
| await github.rest.issues.removeLabel({ | ||
| owner: context.repo.owner, | ||
| repo: context.repo.repo, | ||
| issue_number: context.issue.number, | ||
| name: 'agent:codex' | ||
| }); | ||
| } catch (e) { | ||
| core.warning('Could not remove agent:codex label'); | ||
| } | ||
|
|
||
| - name: Post capability report | ||
| if: steps.check.outputs.check_failed != 'true' | ||
| uses: actions/github-script@v8 | ||
| env: | ||
| RESULT_JSON: ${{ steps.check.outputs.result_json }} | ||
| RECOMMENDATION: ${{ steps.check.outputs.recommendation }} | ||
| with: | ||
| script: | | ||
| const result = JSON.parse(process.env.RESULT_JSON || '{}'); | ||
| const recommendation = process.env.RECOMMENDATION || 'UNKNOWN'; | ||
|
|
||
| let emoji = '✅'; | ||
| let status = 'Agent can proceed'; | ||
| if (recommendation === 'BLOCKED') { | ||
| emoji = '🚫'; | ||
| status = 'Agent cannot complete this issue'; | ||
| } else if (recommendation === 'REVIEW_NEEDED') { | ||
| emoji = '⚠️'; | ||
| status = 'Some tasks may need human assistance'; | ||
| } | ||
|
|
||
| let body = `### ${emoji} Capability Check: ${status}\n\n`; | ||
| body += `**Recommendation:** ${recommendation}\n\n`; | ||
|
|
||
| if (result.actionable_tasks && result.actionable_tasks.length > 0) { | ||
| body += `**✅ Actionable Tasks (${result.actionable_tasks.length}):**\n`; | ||
| result.actionable_tasks.forEach(t => { body += `- ${t}\n`; }); | ||
| body += '\n'; | ||
| } | ||
|
|
||
| if (result.partial_tasks && result.partial_tasks.length > 0) { | ||
| body += `**⚠️ Partial Tasks (${result.partial_tasks.length}):**\n`; | ||
| result.partial_tasks.forEach(t => { | ||
| body += `- ${t.task}\n - *Limitation:* ${t.limitation}\n`; | ||
| }); | ||
| body += '\n'; | ||
| } | ||
|
|
||
| if (result.blocked_tasks && result.blocked_tasks.length > 0) { | ||
| body += `**🚫 Blocked Tasks (${result.blocked_tasks.length}):**\n`; | ||
| result.blocked_tasks.forEach(t => { | ||
| body += `- ${t.task}\n - *Reason:* ${t.reason}\n`; | ||
| if (t.suggested_action) { | ||
| body += ` - *Suggested Action:* ${t.suggested_action}\n`; | ||
| } | ||
| }); | ||
| body += '\n'; | ||
| } | ||
|
|
||
| if (result.human_actions_needed && result.human_actions_needed.length > 0) { | ||
| body += `**👤 Human Actions Needed:**\n`; | ||
| result.human_actions_needed.forEach(a => { body += `- ${a}\n`; }); | ||
| body += '\n'; | ||
| } | ||
|
|
||
| body += `---\n*Auto-generated by capability check*`; | ||
|
|
||
| // Check for existing comment | ||
| const { data: comments } = await github.rest.issues.listComments({ | ||
| owner: context.repo.owner, | ||
| repo: context.repo.repo, | ||
| issue_number: context.issue.number, | ||
| per_page: 50 | ||
| }); | ||
|
|
||
| const existingComment = comments.find(c => | ||
| c.body.includes('### ✅ Capability Check') || | ||
| c.body.includes('### ⚠️ Capability Check') || | ||
| c.body.includes('### 🚫 Capability Check') | ||
| ); | ||
|
|
||
| if (existingComment) { | ||
| await github.rest.issues.updateComment({ | ||
| owner: context.repo.owner, | ||
| repo: context.repo.repo, | ||
| comment_id: existingComment.id, | ||
| body: body | ||
| }); | ||
| } else { | ||
| await github.rest.issues.createComment({ | ||
| owner: context.repo.owner, | ||
| repo: context.repo.repo, | ||
| issue_number: context.issue.number, | ||
| body: body | ||
| }); | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.