Skip to content
This repository was archived by the owner on Apr 19, 2026. It is now read-only.

Commit 48dc63f

Browse files
jpleva91claude
andauthored
refactor: rebrand Cata → Clawta in dispatch workflow (#125)
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e058b04 commit 48dc63f

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name: Cata Agent Dispatch
1+
name: Clawta Agent Dispatch
22
on:
33
repository_dispatch:
44
types: [octi-pulpo-dispatch]
55

66
jobs:
7-
cata-agent:
7+
clawta-agent:
88
runs-on: ubuntu-latest
99
if: |
1010
github.event.client_payload.type == 'evolve' ||
@@ -19,39 +19,39 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v4
2121

22-
- name: Download Cata binary
22+
- name: Download Clawta binary
2323
env:
2424
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2525
run: |
2626
echo "Task ID: ${TASK_ID}"
2727
echo "Type: ${TASK_TYPE}"
2828
echo "Priority: ${TASK_PRIORITY}"
29-
gh release download --repo AgentGuardHQ/cata \
30-
--pattern "cata-linux-amd64" \
31-
--output cata \
32-
--clobber || echo "WARN: cata release not yet published"
33-
chmod +x cata 2>/dev/null || true
29+
gh release download --repo AgentGuardHQ/clawta \
30+
--pattern "clawta-linux-amd64" \
31+
--output clawta \
32+
--clobber || echo "WARN: clawta release not yet published"
33+
chmod +x clawta 2>/dev/null || true
3434
3535
- name: Configure git identity
3636
run: |
3737
git config --global user.email "octi-pulpo@agentguardhq.com"
3838
git config --global user.name "Octi Pulpo Bot"
3939
40-
- name: Run Cata agent
40+
- name: Run Clawta agent
4141
env:
4242
DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY }}
4343
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4444
run: |
45-
if [ ! -f ./cata ]; then
46-
echo "ERROR: cata binary not available"
45+
if [ ! -f ./clawta ]; then
46+
echo "ERROR: clawta binary not available"
4747
exit 1
4848
fi
49-
./cata run \
49+
./clawta run \
5050
--provider deepseek \
5151
--model deepseek-chat \
5252
--max-turns 100 \
5353
"${TASK_PROMPT}" \
54-
|| echo "WARN: cata exited non-zero for task ${TASK_ID}"
54+
|| echo "WARN: clawta exited non-zero for task ${TASK_ID}"
5555
5656
- name: Report outcome
5757
if: always()

0 commit comments

Comments
 (0)