Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/agentry-bug-fix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ jobs:
python-version: '3.12'
- name: Install Claude Code
run: npm install -g @anthropic-ai/claude-code
- name: Prime Claude Code onboarding
# Without this, claude -p tries to render the theme picker TUI and
# aborts with "Raw mode is not supported" — see anthropics/claude-code#8938.
run: |
mkdir -p ~/.claude
echo '{"hasCompletedOnboarding": true}' > ~/.claude.json
- name: Install agentry
run: pip install "agentry @ git+https://github.com/norrietaylor/agentry.git"
- name: Diagnose and fix bug
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/agentry-code-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ jobs:
python-version: '3.12'
- name: Install Claude Code
run: npm install -g @anthropic-ai/claude-code
- name: Prime Claude Code onboarding
# Without this, claude -p tries to render the theme picker TUI and
# aborts with "Raw mode is not supported" — see anthropics/claude-code#8938.
run: |
mkdir -p ~/.claude
echo '{"hasCompletedOnboarding": true}' > ~/.claude.json
- name: Install agentry
run: pip install "agentry @ git+https://github.com/norrietaylor/agentry.git"
- name: Run code review
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/agentry-feature-implement.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ jobs:
python-version: '3.12'
- name: Install Claude Code
run: npm install -g @anthropic-ai/claude-code
- name: Prime Claude Code onboarding
# Without this, claude -p tries to render the theme picker TUI and
# aborts with "Raw mode is not supported" — see anthropics/claude-code#8938.
run: |
mkdir -p ~/.claude
echo '{"hasCompletedOnboarding": true}' > ~/.claude.json
- name: Install agentry
run: pip install "agentry @ git+https://github.com/norrietaylor/agentry.git"
- name: Implement feature
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/agentry-triage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ jobs:
python-version: '3.12'
- name: Install Claude Code
run: npm install -g @anthropic-ai/claude-code
- name: Prime Claude Code onboarding
# Without this, claude -p tries to render the theme picker TUI and
# aborts with "Raw mode is not supported" — see anthropics/claude-code#8938.
run: |
mkdir -p ~/.claude
echo '{"hasCompletedOnboarding": true}' > ~/.claude.json
- name: Install agentry
run: pip install "agentry @ git+https://github.com/norrietaylor/agentry.git"
- name: Run planning pipeline
Expand Down
Loading