Skip to content

feat(autonomous): simply team access and separate admin control to a tab - #2402

Open
suwhang-cisco wants to merge 20 commits into
mainfrom
prebuild/feat/autonomous-team-access
Open

feat(autonomous): simply team access and separate admin control to a tab#2402
suwhang-cisco wants to merge 20 commits into
mainfrom
prebuild/feat/autonomous-team-access

Conversation

@suwhang-cisco

@suwhang-cisco suwhang-cisco commented Aug 18, 2026

Copy link
Copy Markdown
Collaborator

Description

Improve autonomous agent feature and address security concerns:

  1. Webhook safety:
  • Implement a per-task FIFO queue system so multiple deliveries for the same webhook task are never executed concurrently. Different webhook tasks may still execute concurrently.
  • Reject webhook payloads larger than 1 MiB with HTTP 413.
  • Apply bounded per-task, per-owner, and global queue limits. Return HTTP 429 when queue capacity is exceeded to protect the service when it is bombarded with requests.
  • These application-level controls complement ingress and WAF protection rather than replacing them.
  1. Webhook secret:
  • Store each webhook secret using envelope encryption, consistent with the existing credential-storage solution in the repository. The secret is encrypted with AES-256-GCM using a unique data-encryption key, and that key is wrapped using AWS KMS. Only the encrypted envelope is stored in MongoDB.
  • If KMS is not configured or cannot be accessed, webhook task creation or secret updates fail. The secret is never stored as plaintext.
  • For GitHub and Jira webhooks, CAIPE generates a secure secret when the webhook task is created, stores it securely, and shows it to the user once.
  • For PagerDuty and Slack, the provider generates the signing secret and the user is required to paste it into CAIPE.
  • Only GitHub, Jira, Slack, and PagerDuty are available when creating a webhook task in the UI. Generic HMAC is no longer user-selectable.
  1. Webhook visibility:
  • Webhook runs are not published as regular chat conversations because this could become very spammy.
  • Instead, they appear under a collapsed Webhook Runs subsection inside Autonomous Runs in Chat History.
  • Runs are grouped by webhook task, but every webhook delivery has its own isolated execution context.
  • Users can select Continue this run to continue only the selected webhook run's context.
  1. Cron / Interval tasks:
  • Add a minimum interval of 30 minutes by default for cron and interval tasks. This is configurable during deployment using MINIMUM_SCHEDULE_INTERVAL_SECONDS.
  1. Add new subsections in Chat History for Autonomous Runs and Scheduled Runs to provide a cleaner view. Both sections are collapsed by default.

  2. Move the admin page to Admin > Security & Policy > Autonomous Enablement.

  3. Remove unnecessary autonomous administration views:

  • Remove the per-agent autonomous configuration view.
  • Remove Task Oversight and its supporting API.
  • Centralize autonomous team access management under Autonomous Enablement.

Current limitation:

  • Autonomous Agents currently supports only one service replica. Webhook queues and per-task serialization state are stored in the pod's memory.
  • Running multiple replicas would create independent queues, meaning the same webhook task could execute concurrently across different pods. Before replica support is implemented, webhook dispatch must be moved to shared infrastructure that provides durable queues and per-task serialization.

Type of Change

  • Bugfix
  • New Feature
  • Breaking Change
  • Refactor
  • Documentation
  • Other (please describe)

Pre-release Helm Charts (Optional)

For chart changes, you can test pre-release versions before merging:

  • Base repo contributors: Create a branch starting with pre/ for automatic pre-release builds
  • Fork contributors: Ask a maintainer to add the helm-prerelease label
  • Pre-release charts are published to ghcr.io/cnoe-io/pre-release-helm-charts
  • Cleanup happens automatically when the PR closes or label is removed

Checklist

  • I have read the contributing guidelines
  • Existing issues have been referenced (where applicable)
  • I have verified this change is not present in other open pull requests
  • Functionality is documented
  • All code style checks pass
  • New code contribution is covered by automated tests
  • All new and existing tests pass

Signed-off-by: suwhang-cisco <212341702+suwhang-cisco@users.noreply.github.com>
@github-actions

Copy link
Copy Markdown
Contributor

✅ No proprietary content detected. This PR is clear for review!

@github-actions github-actions Bot added the dev Normal PR to main; uses dev prerelease versioning label Aug 18, 2026
@caipe-ci-release

caipe-ci-release Bot commented Aug 18, 2026

Copy link
Copy Markdown
Contributor
Prebuild Artifacts for `6667d13` (archived)

Prebuild Artifacts for 6667d13

Branch: prebuild/feat/autonomous-team-access
Commit: 6667d13

Docker Images

Artifact Image Tag Status CI
caipe-autonomous-agents ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents feat-autonomous-team-access-2 Published CI
caipe-dynamic-agents ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents feat-autonomous-team-access-2 Published CI
caipe-ui ghcr.io/cnoe-io/prebuild/caipe-ui feat-autonomous-team-access-2 Published CI
Docker pull commands
docker pull ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents:feat-autonomous-team-access-2
docker pull ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents:feat-autonomous-team-access-2
docker pull ghcr.io/cnoe-io/prebuild/caipe-ui:feat-autonomous-team-access-2

Helm Charts

Chart Registry Version Status CI
ai-platform-engineering ghcr.io/cnoe-io/prebuild-helm-charts 0.5.68-dev.7-feat-autonomous-team-access-1 Published CI
rag-stack ghcr.io/cnoe-io/prebuild-helm-charts 0.5.68-dev.7-feat-autonomous-team-access-1 Published CI
Helm install commands
helm upgrade --install ai-platform oci://ghcr.io/cnoe-io/prebuild-helm-charts/ai-platform-engineering --version 0.5.68-dev.7-feat-autonomous-team-access-1
helm upgrade --install rag oci://ghcr.io/cnoe-io/prebuild-helm-charts/rag-stack --version 0.5.68-dev.7-feat-autonomous-team-access-1

These prebuild artifacts will be automatically cleaned up when the PR is closed or merged.

@github-actions

github-actions Bot commented Aug 18, 2026

Copy link
Copy Markdown
Contributor

🧪 CAIPE UI Test Results

All tests passed

🟡 Overall Coverage: 63%

Coverage
lines
statements
functions
branches

📊 Detailed Coverage

Metric Covered Total Percentage
Lines 41628 61309 67.89%
Statements 44455 67650 65.71%
Functions 7813 12715 61.44%
Branches 28398 51110 55.56%

✅ Test Suites

  • ✅ auth-guard.test.tsx - Route protection & authorization
  • ✅ token-expiry-guard.test.tsx - Token expiry handling
  • ✅ dynamic-agent-client.test.ts - Dynamic Agents streaming client
  • ✅ auth-utils.test.ts - Authentication utilities (100% coverage)
  • ✅ auth-config.test.ts - OIDC configuration
📈 Coverage Thresholds
Threshold Target Current Status
Minimum 40% 63% ✅ Pass
Good 60% 63% ✅ Pass
Excellent 80% 63% ⚠️ Below target
⚠️ Areas Needing Tests

High Priority:

  • lib/streaming/* - Core stream event handling
  • store/chat-store.ts - Chat state management
  • store/agent-skills-store.ts - Agent skills
  • lib/api-client.ts - API communication
  • lib/storage-mode.ts - MongoDB/localStorage switching

Medium Priority:

  • components/chat/ChatPanel.tsx - Main chat interface
  • lib/mongodb.ts - MongoDB integration

💡 Run locally: make caipe-ui-tests
📦 Full report: Check workflow artifacts

@caipe-ci-release

caipe-ci-release Bot commented Aug 18, 2026

Copy link
Copy Markdown
Contributor
Prebuild Artifacts for `162a66f` (archived)

Prebuild Artifacts for 162a66f

Branch: prebuild/feat/autonomous-team-access
Commit: 162a66f

Docker Images

Artifact Image Tag Status CI
caipe-autonomous-agents ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents feat-autonomous-team-access-3 Published CI
caipe-dynamic-agents ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents feat-autonomous-team-access-4 Published CI
caipe-ui - - Failed CI
Docker pull commands
docker pull ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents:feat-autonomous-team-access-3
docker pull ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents:feat-autonomous-team-access-4

These prebuild artifacts will be automatically cleaned up when the PR is closed or merged.

@caipe-ci-release

caipe-ci-release Bot commented Aug 18, 2026

Copy link
Copy Markdown
Contributor
Prebuild Artifacts for `d8327f1` (archived)

Prebuild Artifacts for d8327f1

Branch: prebuild/feat/autonomous-team-access
Commit: d8327f1

Docker Images

Artifact Image Tag Status CI
caipe-autonomous-agents ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents feat-autonomous-team-access-4 Published CI
caipe-dynamic-agents ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents feat-autonomous-team-access-4 Published CI
caipe-ui ghcr.io/cnoe-io/prebuild/caipe-ui feat-autonomous-team-access-4 Published CI
Docker pull commands
docker pull ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents:feat-autonomous-team-access-4
docker pull ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents:feat-autonomous-team-access-4
docker pull ghcr.io/cnoe-io/prebuild/caipe-ui:feat-autonomous-team-access-4

Helm Charts

Chart Registry Version Status CI
ai-platform-engineering ghcr.io/cnoe-io/prebuild-helm-charts 0.5.69-feat-autonomous-team-access-3 Published CI
Helm install commands
helm upgrade --install ai-platform oci://ghcr.io/cnoe-io/prebuild-helm-charts/ai-platform-engineering --version 0.5.69-feat-autonomous-team-access-3

These prebuild artifacts will be automatically cleaned up when the PR is closed or merged.

Signed-off-by: suwhang-cisco <212341702+suwhang-cisco@users.noreply.github.com>
@caipe-ci-release

caipe-ci-release Bot commented Aug 19, 2026

Copy link
Copy Markdown
Contributor
Prebuild Artifacts for `bfee5da` (archived)

Prebuild Artifacts for bfee5da

Branch: prebuild/feat/autonomous-team-access
Commit: bfee5da

Docker Images

Artifact Image Tag Status CI
caipe-autonomous-agents ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents feat-autonomous-team-access-5 Published CI
caipe-dynamic-agents ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents feat-autonomous-team-access-5 Published CI
caipe-ui ghcr.io/cnoe-io/prebuild/caipe-ui feat-autonomous-team-access-5 Published CI
Docker pull commands
docker pull ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents:feat-autonomous-team-access-5
docker pull ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents:feat-autonomous-team-access-5
docker pull ghcr.io/cnoe-io/prebuild/caipe-ui:feat-autonomous-team-access-5

Helm Charts

Chart Registry Version Status CI
ai-platform-engineering ghcr.io/cnoe-io/prebuild-helm-charts 0.5.69-feat-autonomous-team-access-4 Published CI
Helm install commands
helm upgrade --install ai-platform oci://ghcr.io/cnoe-io/prebuild-helm-charts/ai-platform-engineering --version 0.5.69-feat-autonomous-team-access-4

These prebuild artifacts will be automatically cleaned up when the PR is closed or merged.

Signed-off-by: suwhang-cisco <212341702+suwhang-cisco@users.noreply.github.com>
Signed-off-by: suwhang-cisco <212341702+suwhang-cisco@users.noreply.github.com>
Signed-off-by: suwhang-cisco <212341702+suwhang-cisco@users.noreply.github.com>
@caipe-ci-release

caipe-ci-release Bot commented Aug 19, 2026

Copy link
Copy Markdown
Contributor
Prebuild Artifacts for `6308faa` (archived)

Prebuild Artifacts for 6308faa

Branch: prebuild/feat/autonomous-team-access
Commit: 6308faa

Docker Images

Artifact Image Tag Status CI
caipe-autonomous-agents ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents feat-autonomous-team-access-18 Published CI
caipe-dynamic-agents ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents feat-autonomous-team-access-18 Published CI
caipe-ui ghcr.io/cnoe-io/prebuild/caipe-ui feat-autonomous-team-access-18 Published CI
Docker pull commands
docker pull ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents:feat-autonomous-team-access-18
docker pull ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents:feat-autonomous-team-access-18
docker pull ghcr.io/cnoe-io/prebuild/caipe-ui:feat-autonomous-team-access-18

Helm Charts

Chart Registry Version Status CI
ai-platform-engineering ghcr.io/cnoe-io/prebuild-helm-charts 0.5.69-feat-autonomous-team-access-7 Published CI
Helm install commands
helm upgrade --install ai-platform oci://ghcr.io/cnoe-io/prebuild-helm-charts/ai-platform-engineering --version 0.5.69-feat-autonomous-team-access-7

These prebuild artifacts will be automatically cleaned up when the PR is closed or merged.

class WebhookSecretProtector(Protocol):
"""Encrypt and decrypt webhook secrets without exposing storage details."""

async def encrypt(self, task_id: str, plaintext: str) -> WebhookSecretEnvelope: ...

async def encrypt(self, task_id: str, plaintext: str) -> WebhookSecretEnvelope: ...

async def decrypt(self, task_id: str, envelope: dict[str, Any]) -> str: ...
…ld NOT appear in the chat

Signed-off-by: suwhang-cisco <212341702+suwhang-cisco@users.noreply.github.com>
@caipe-ci-release

caipe-ci-release Bot commented Aug 19, 2026

Copy link
Copy Markdown
Contributor
Prebuild Artifacts for `a2faa23` (archived)

Prebuild Artifacts for a2faa23

Branch: prebuild/feat/autonomous-team-access
Commit: a2faa23

Docker Images

Artifact Image Tag Status CI
caipe-autonomous-agents ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents feat-autonomous-team-access-20 Published CI
caipe-dynamic-agents ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents feat-autonomous-team-access-20 Published CI
caipe-ui ghcr.io/cnoe-io/prebuild/caipe-ui feat-autonomous-team-access-20 Published CI
Docker pull commands
docker pull ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents:feat-autonomous-team-access-20
docker pull ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents:feat-autonomous-team-access-20
docker pull ghcr.io/cnoe-io/prebuild/caipe-ui:feat-autonomous-team-access-20

Helm Charts

Chart Registry Version Status CI
ai-platform-engineering ghcr.io/cnoe-io/prebuild-helm-charts 0.5.69-feat-autonomous-team-access-8 Published CI
Helm install commands
helm upgrade --install ai-platform oci://ghcr.io/cnoe-io/prebuild-helm-charts/ai-platform-engineering --version 0.5.69-feat-autonomous-team-access-8

These prebuild artifacts will be automatically cleaned up when the PR is closed or merged.

Signed-off-by: suwhang-cisco <212341702+suwhang-cisco@users.noreply.github.com>
# Production runs one uvicorn event loop. Reinitialising here keeps
# isolated tests (which use a fresh loop per case) from sharing
# asyncio primitives across loops.
_execution_loop = loop
@caipe-ci-release

caipe-ci-release Bot commented Aug 19, 2026

Copy link
Copy Markdown
Contributor
Prebuild Artifacts for `c599974` (archived)

Prebuild Artifacts for c599974

Branch: prebuild/feat/autonomous-team-access
Commit: c599974

Docker Images

Artifact Image Tag Status CI
caipe-autonomous-agents ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents feat-autonomous-team-access-24 Published CI
caipe-dynamic-agents ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents feat-autonomous-team-access-24 Published CI
caipe-ui - - Failed CI
Docker pull commands
docker pull ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents:feat-autonomous-team-access-24
docker pull ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents:feat-autonomous-team-access-24

Helm Charts

Chart Registry Version Status CI
ai-platform-engineering ghcr.io/cnoe-io/prebuild-helm-charts 0.5.69-feat-autonomous-team-access-9 Published CI
Helm install commands
helm upgrade --install ai-platform oci://ghcr.io/cnoe-io/prebuild-helm-charts/ai-platform-engineering --version 0.5.69-feat-autonomous-team-access-9

These prebuild artifacts will be automatically cleaned up when the PR is closed or merged.

@caipe-ci-release

caipe-ci-release Bot commented Aug 19, 2026

Copy link
Copy Markdown
Contributor
Prebuild Artifacts for `4a80eca` (archived)

Prebuild Artifacts for 4a80eca

Branch: prebuild/feat/autonomous-team-access
Commit: 4a80eca

Docker Images

Artifact Image Tag Status CI
caipe-autonomous-agents ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents feat-autonomous-team-access-11 Published CI
caipe-dynamic-agents ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents feat-autonomous-team-access-12 Published CI
Docker pull commands
docker pull ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents:feat-autonomous-team-access-11
docker pull ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents:feat-autonomous-team-access-12

These prebuild artifacts will be automatically cleaned up when the PR is closed or merged.

@caipe-ci-release

caipe-ci-release Bot commented Aug 19, 2026

Copy link
Copy Markdown
Contributor
Prebuild Artifacts for `ba685a3` (archived)

Prebuild Artifacts for ba685a3

Branch: prebuild/feat/autonomous-team-access
Commit: ba685a3

Docker Images

Artifact Image Tag Status CI
caipe-autonomous-agents ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents feat-autonomous-team-access-12 Published CI
caipe-dynamic-agents ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents feat-autonomous-team-access-12 Published CI
caipe-ui ghcr.io/cnoe-io/prebuild/caipe-ui feat-autonomous-team-access-12 Published CI
Docker pull commands
docker pull ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents:feat-autonomous-team-access-12
docker pull ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents:feat-autonomous-team-access-12
docker pull ghcr.io/cnoe-io/prebuild/caipe-ui:feat-autonomous-team-access-12

Helm Charts

Chart Registry Version Status CI
ai-platform-engineering ghcr.io/cnoe-io/prebuild-helm-charts 0.5.69-dev.1-feat-autonomous-team-access-11 Published CI
Helm install commands
helm upgrade --install ai-platform oci://ghcr.io/cnoe-io/prebuild-helm-charts/ai-platform-engineering --version 0.5.69-dev.1-feat-autonomous-team-access-11

These prebuild artifacts will be automatically cleaned up when the PR is closed or merged.

Signed-off-by: suwhang-cisco <212341702+suwhang-cisco@users.noreply.github.com>
@caipe-ci-release

caipe-ci-release Bot commented Aug 19, 2026

Copy link
Copy Markdown
Contributor
Prebuild Artifacts for `7eba33c` (archived)

Prebuild Artifacts for 7eba33c

Branch: prebuild/feat/autonomous-team-access
Commit: 7eba33c

Docker Images

Artifact Image Tag Status CI
caipe-autonomous-agents ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents feat-autonomous-team-access-13 Published CI
caipe-dynamic-agents ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents feat-autonomous-team-access-13 Published CI
caipe-ui ghcr.io/cnoe-io/prebuild/caipe-ui feat-autonomous-team-access-13 Published CI
Docker pull commands
docker pull ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents:feat-autonomous-team-access-13
docker pull ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents:feat-autonomous-team-access-13
docker pull ghcr.io/cnoe-io/prebuild/caipe-ui:feat-autonomous-team-access-13

Helm Charts

Chart Registry Version Status CI
ai-platform-engineering ghcr.io/cnoe-io/prebuild-helm-charts 0.5.69-dev.1-feat-autonomous-team-access-12 Published CI
Helm install commands
helm upgrade --install ai-platform oci://ghcr.io/cnoe-io/prebuild-helm-charts/ai-platform-engineering --version 0.5.69-dev.1-feat-autonomous-team-access-12

These prebuild artifacts will be automatically cleaned up when the PR is closed or merged.

Signed-off-by: suwhang-cisco <212341702+suwhang-cisco@users.noreply.github.com>
@caipe-ci-release

caipe-ci-release Bot commented Aug 20, 2026

Copy link
Copy Markdown
Contributor
Prebuild Artifacts for `62111f2` (archived)

Prebuild Artifacts for 62111f2

Branch: prebuild/feat/autonomous-team-access
Commit: 62111f2

Docker Images

Artifact Image Tag Status CI
caipe-autonomous-agents ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents feat-autonomous-team-access-22 Published CI
caipe-dynamic-agents ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents feat-autonomous-team-access-22 Published CI
caipe-ui ghcr.io/cnoe-io/prebuild/caipe-ui feat-autonomous-team-access-22 Published CI
Docker pull commands
docker pull ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents:feat-autonomous-team-access-22
docker pull ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents:feat-autonomous-team-access-22
docker pull ghcr.io/cnoe-io/prebuild/caipe-ui:feat-autonomous-team-access-22

Helm Charts

Chart Registry Version Status CI
ai-platform-engineering ghcr.io/cnoe-io/prebuild-helm-charts 0.5.69-dev.1-feat-autonomous-team-access-13 Published CI
Helm install commands
helm upgrade --install ai-platform oci://ghcr.io/cnoe-io/prebuild-helm-charts/ai-platform-engineering --version 0.5.69-dev.1-feat-autonomous-team-access-13

These prebuild artifacts will be automatically cleaned up when the PR is closed or merged.

@caipe-ci-release

caipe-ci-release Bot commented Aug 24, 2026

Copy link
Copy Markdown
Contributor
Prebuild Artifacts for `c705597` (archived)

Prebuild Artifacts for c705597

Branch: prebuild/feat/autonomous-team-access
Commit: c705597

Docker Images

Artifact Image Tag Status CI
caipe-autonomous-agents ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents feat-autonomous-team-access-32 Published CI
caipe-dynamic-agents ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents feat-autonomous-team-access-32 Published CI
caipe-ui ghcr.io/cnoe-io/prebuild/caipe-ui feat-autonomous-team-access-32 Published CI
Docker pull commands
docker pull ghcr.io/cnoe-io/prebuild/caipe-autonomous-agents:feat-autonomous-team-access-32
docker pull ghcr.io/cnoe-io/prebuild/caipe-dynamic-agents:feat-autonomous-team-access-32
docker pull ghcr.io/cnoe-io/prebuild/caipe-ui:feat-autonomous-team-access-32

Helm Charts

Chart Registry Version Status CI
ai-platform-engineering ghcr.io/cnoe-io/prebuild-helm-charts 0.6.0-dev.1-feat-autonomous-team-access-14 Published CI
Helm install commands
helm upgrade --install ai-platform oci://ghcr.io/cnoe-io/prebuild-helm-charts/ai-platform-engineering --version 0.6.0-dev.1-feat-autonomous-team-access-14

These prebuild artifacts will be automatically cleaned up when the PR is closed or merged.

@github-actions

Copy link
Copy Markdown
Contributor

ℹ️ Branch is behind main (advisory, non-blocking)

Commit: c705597e

This branch does not yet contain the latest main. This does not fail the version-bump check — version files are bumped once the branch is updated, and GitHub branch protection still requires the branch to be up to date before merge. Use the Update branch button on this PR, or run:

git fetch origin main
git checkout prebuild/feat/autonomous-team-access
git merge FETCH_HEAD
git push

This is a prebuild/* branch, so Helm prebuild publishing will still run so you can test the chart changes while the branch is being updated.

suwhang-cisco and others added 2 commits August 26, 2026 13:54
Signed-off-by: suwhang-cisco <212341702+suwhang-cisco@users.noreply.github.com>
@caipe-io-ci-release

caipe-io-ci-release Bot commented Aug 26, 2026

Copy link
Copy Markdown
Prebuild Artifacts for `89929af` (archived)

Prebuild Artifacts for 89929af

Branch: prebuild/feat/autonomous-team-access
Commit: 89929af

Docker Images

Artifact Image Tag Status CI
caipe-autonomous-agents - - Failed CI
caipe-dynamic-agents ghcr.io/caipe-io/caipe-dynamic-agents feat-autonomous-team-access-17 Published CI
caipe-ui - - Failed CI
Docker pull commands
docker pull ghcr.io/caipe-io/caipe-dynamic-agents:feat-autonomous-team-access-17

These prebuild artifacts will be automatically cleaned up when the PR is closed or merged.

@caipe-io-ci-release

caipe-io-ci-release Bot commented Aug 26, 2026

Copy link
Copy Markdown
Prebuild Artifacts for `c0b8fb0` (archived)

Prebuild Artifacts for c0b8fb0

Branch: prebuild/feat/autonomous-team-access
Commit: c0b8fb0

Docker Images

Artifact Image Tag Status CI
caipe-autonomous-agents ghcr.io/caipe-io/caipe-autonomous-agents feat-autonomous-team-access-17 Published CI
caipe-dynamic-agents ghcr.io/caipe-io/caipe-dynamic-agents feat-autonomous-team-access-17 Published CI
caipe-ui ghcr.io/caipe-io/caipe-ui feat-autonomous-team-access-17 Published CI
Docker pull commands
docker pull ghcr.io/caipe-io/caipe-autonomous-agents:feat-autonomous-team-access-17
docker pull ghcr.io/caipe-io/caipe-dynamic-agents:feat-autonomous-team-access-17
docker pull ghcr.io/caipe-io/caipe-ui:feat-autonomous-team-access-17

Helm Charts

Chart Registry Version Status CI
ai-platform-engineering ghcr.io/caipe-io/charts 1.0.0-dev.6-feat-autonomous-team-access-16 Published CI
Helm install commands
helm upgrade --install ai-platform oci://ghcr.io/caipe-io/charts/ai-platform-engineering --version 1.0.0-dev.6-feat-autonomous-team-access-16

These prebuild artifacts will be automatically cleaned up when the PR is closed or merged.

… "continue this run" button to chat on that particular run

Signed-off-by: suwhang-cisco <212341702+suwhang-cisco@users.noreply.github.com>
@caipe-io-ci-release

caipe-io-ci-release Bot commented Aug 26, 2026

Copy link
Copy Markdown
Prebuild Artifacts for `532214a` (archived)

Prebuild Artifacts for 532214a

Branch: prebuild/feat/autonomous-team-access
Commit: 532214a

Docker Images

Artifact Image Tag Status CI
caipe-autonomous-agents ghcr.io/caipe-io/caipe-autonomous-agents feat-autonomous-team-access-18 Published CI
caipe-dynamic-agents ghcr.io/caipe-io/caipe-dynamic-agents feat-autonomous-team-access-18 Published CI
caipe-ui ghcr.io/caipe-io/caipe-ui feat-autonomous-team-access-18 Published CI
Docker pull commands
docker pull ghcr.io/caipe-io/caipe-autonomous-agents:feat-autonomous-team-access-18
docker pull ghcr.io/caipe-io/caipe-dynamic-agents:feat-autonomous-team-access-18
docker pull ghcr.io/caipe-io/caipe-ui:feat-autonomous-team-access-18

Helm Charts

Chart Registry Version Status CI
ai-platform-engineering ghcr.io/caipe-io/charts 1.0.0-dev.6-feat-autonomous-team-access-17 Published CI
Helm install commands
helm upgrade --install ai-platform oci://ghcr.io/caipe-io/charts/ai-platform-engineering --version 1.0.0-dev.6-feat-autonomous-team-access-17

These prebuild artifacts will be automatically cleaned up when the PR is closed or merged.

suwhang-cisco and others added 3 commits August 26, 2026 14:54
Signed-off-by: suwhang-cisco <212341702+suwhang-cisco@users.noreply.github.com>
Signed-off-by: suwhang-cisco <212341702+suwhang-cisco@users.noreply.github.com>
@suwhang-cisco
suwhang-cisco marked this pull request as ready for review August 26, 2026 16:57
@suwhang-cisco
suwhang-cisco requested review from a team as code owners August 26, 2026 16:57
@caipe-io-ci-release

caipe-io-ci-release Bot commented Aug 26, 2026

Copy link
Copy Markdown

Prebuild Artifacts for fe42ef8

Branch: prebuild/feat/autonomous-team-access
Commit: fe42ef8

Docker Images

Artifact Image Tag Status CI
caipe-autonomous-agents ghcr.io/caipe-io/caipe-autonomous-agents feat-autonomous-team-access-21 Published CI
caipe-dynamic-agents ghcr.io/caipe-io/caipe-dynamic-agents feat-autonomous-team-access-21 Published CI
caipe-ui ghcr.io/caipe-io/caipe-ui feat-autonomous-team-access-21 Published CI
Docker pull commands
docker pull ghcr.io/caipe-io/caipe-autonomous-agents:feat-autonomous-team-access-21
docker pull ghcr.io/caipe-io/caipe-dynamic-agents:feat-autonomous-team-access-21
docker pull ghcr.io/caipe-io/caipe-ui:feat-autonomous-team-access-21

Helm Charts

Chart Registry Version Status CI
ai-platform-engineering ghcr.io/caipe-io/charts 1.0.0-dev.6-feat-autonomous-team-access-20 Published CI
Helm install commands
helm upgrade --install ai-platform oci://ghcr.io/caipe-io/charts/ai-platform-engineering --version 1.0.0-dev.6-feat-autonomous-team-access-20

These prebuild artifacts will be automatically cleaned up when the PR is closed or merged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dev Normal PR to main; uses dev prerelease versioning

Projects

Status: Todo

Development

Successfully merging this pull request may close these issues.

2 participants