All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
RC-1: Gitea org fallback already removed (no-op, confirmed) RC-3: Push/pull now explicitly target origin main (HEAD:main) in both pod_git_operations.go and claudebox/git.go — fixes Woodpecker webhook trigger by ensuring pushes always land on the main branch RC-4: wait_for_pipeline records baseline pipeline number before polling; only returns success when a NEWER pipeline completes — prevents false positive when a prior pipeline was already success RC-5: Redis WRONGPASS fixed on live persona-community-5 instance; platform gap noted (no reprovision endpoint for Redis ACL drift) RC-6: Removed on_error:continue from all infra provisioning steps (add-db, add-redis) across persona-community, slackpath-2/3/4/5 trees — infra failures now fail the tree instead of silently continuing to a crash RC-7: Added .pnpm-store/ to skeleton .gitignore — prevents thousands of cache files being committed by agents after pnpm install RC-2: Updated all 12 cookbook trees — git_clone_url jordan/ → threesix/ (24 occurrences across all slackpath, aeries, full-stack, genkit trees) Also: strings.Cut and strings.SplitSeq lint fixes in pod_git_operations.go and claudebox/git.go Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
72 lines
2.2 KiB
YAML
72 lines
2.2 KiB
YAML
name: aeries-3-society
|
|
description: "Aeries Phase 3: The Social Layer. Adds Spatial Service and Redis Pub/Sub for agent interactions."
|
|
version: 1
|
|
|
|
vars:
|
|
project_id: "" # Required
|
|
feature_slug: "spatial-social"
|
|
|
|
steps:
|
|
# --- Infrastructure ---
|
|
add-redis:
|
|
description: "Add Redis for Real-time Events"
|
|
action: api
|
|
method: POST
|
|
endpoint: "/projects/{{ .vars.project_id }}/components"
|
|
body: { type: redis, name: "world-state" }
|
|
|
|
add-spatial-svc:
|
|
description: "Add Spatial Service to track positions"
|
|
depends_on: [add-redis]
|
|
action: api
|
|
method: POST
|
|
endpoint: "/projects/{{ .vars.project_id }}/components"
|
|
body: { type: service, name: "spatial-svc" }
|
|
|
|
wait-infra:
|
|
action: wait_pipeline
|
|
project_id: "{{ .vars.project_id }}"
|
|
|
|
# --- Feature: Proximity Chat ---
|
|
implement-social:
|
|
description: "Agent connects Simulation to Spatial via Redis"
|
|
depends_on: [wait-infra]
|
|
action: api
|
|
method: POST
|
|
endpoint: "/projects/{{ .vars.project_id }}/builds"
|
|
body:
|
|
prompt: "/implement-feature {{ .vars.feature_slug }} --requirements 'Simulation SVC publishes agent moves to Redis. Spatial SVC tracks proximity. If two agents are near, Core UI shows a chat bubble.'"
|
|
auto_commit: true
|
|
auto_push: true
|
|
git_clone_url: "https://git.threesix.ai/threesix/{{ .vars.project_id }}.git"
|
|
outputs:
|
|
- build_id: .data.task_id
|
|
|
|
wait-code:
|
|
description: Wait for social layer implementation
|
|
depends_on: [implement-social]
|
|
action: wait_build
|
|
build_id: "{{ .outputs.implement-social.build_id }}"
|
|
max_attempts: 120
|
|
poll_interval: 5
|
|
|
|
wait-deploy:
|
|
action: wait_pipeline
|
|
project_id: "{{ .vars.project_id }}"
|
|
|
|
# --- Verification ---
|
|
verify-society:
|
|
description: "Test Event Stream"
|
|
depends_on: [wait-deploy]
|
|
action: shell
|
|
command: |
|
|
DOMAIN=$(curl -s "$RDEV_API_URL/projects/{{ .vars.project_id }}" -H "X-API-Key: $RDEV_API_KEY" | jq -r .domain)
|
|
# Check if events endpoint exists
|
|
HTTP_CODE=$(curl -s -o /dev/null -w "%{http_code}" "https://$DOMAIN/api/events")
|
|
if [[ "$HTTP_CODE" == "200" || "$HTTP_CODE" == "101" ]]; then
|
|
echo "Society Layer Live"
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|