Skip to content

feat(platform): prepare organization collaboration for internal rollout - #14433

Open
ntindle wants to merge 72 commits into
devfrom
codex/orgs-ship-0907
Open

feat(platform): prepare organization collaboration for internal rollout#14433
ntindle wants to merge 72 commits into
devfrom
codex/orgs-ship-0907

Conversation

@ntindle

@ntindle ntindle commented Sep 7, 2026

Copy link
Copy Markdown
Member

Why / What / How

Enable organization and team collaboration for an internal cohort, with live membership checks, scoped resources, and current Home, Files, expert, Copilot, MCP and execution behavior. Collaboration entry is gated by SHOW_ORG_SETTINGS in both the API and frontend. The integration closes the reproduced authorization and upgrade gaps.

The original tail had fallen 94 commits behind the initial dev baseline. This consolidated candidate retains the original stack history and leaves the 23 existing PRs untouched. Final integration baseline: dev 6dc5fec8b6fb49d85a259b037c489eb187d96f34, org tail #13661 e9043a40271ca270a4d4784fc6867790a470dfe0. It includes the later dev hotfix that makes marketplace expert profiles public and replaces hiring controls with Coming soon, plus the updated security policy. The repository uses squash merges; disposition of the original PRs is a separate step after this candidate is reviewed.

Changes 🏗️

Candidate commit: 3238118977c0ad3e116f47a3b0c021427e2c1512. Its Git tree 8b3951c47e47bf6b061e04500b3813a6a644f979 exactly matches the final locally tested image (sha256:87324eeb99bec3653095c754844b2435ee31929203afacc40846a149df6a898c). Hosted checks and fresh review approval must be verified on this PR before merging.

  • Organization/team membership, role checks, exact resource scope and live revocation barriers throughout requests, execution, sharing and external API work.
  • Current Home activity, Files navigation and uploads, pending reviews, expert views and Copilot/MCP functionality retain their workspace context. Files has a local team picker and clears old folders when context changes. Its New menu no longer leaves the page unclickable after the folder dialog closes.
  • Personal expert and credential ownership remain explicit. Shared-agent copies enforce grant policy and remove credential references. Library mutation selects the caller's installation and schedule lookup survives graph version changes.
  • OWNER credential grants require the persisted execution organization and exact granting team. Forged queue scope, organization-home execution, and foreign workspaces cannot select an owner's secrets; resumed contexts are revalidated before dispatch and access.
  • Credit history retains ledger ownership, amounts and pagination while checking metadata against the actual viewer. Receipt links use authorized source workspace URLs; inaccessible conversations, private experts and executions remain unlinked.
  • External API authentication uses short, admitted database checks around cancellable work; revocation no longer waits behind the handler's long transaction. External run-agent preserves HTTP errors.
  • Personal organization conversion creates its replacement atomically. Startup assigns graphs before marketplace listings, backfills trusted activity after source resources, and restores proven legacy file/folder scopes while preserving quarantine and path collisions.
  • Server and frontend cohort gates agree. The self-hosted Bake target passes its existing org override to the backend as well. Deployment and recovery steps are in docs/platform/organizations/internal-rollout.md; access limits are in access-model.md.

Credential records remain personally owned; explicitly consented OWNER-mode grants authorize use only within their exact organization/team. Experts remain private to their personal-workspace owner, and Files is the owner's workspace filtered by organization/team. Shared team drives and shared experts are outside this initial internal rollout. Quarantined historical files require operator/owner review before an affected account joins the cohort.

Agents and large language models used

Codex with GPT-6 and delegated Codex agents.

Checklist 📋

For code changes:

  • I have clearly listed my changes in the PR description
  • I have made a test plan
  • I have tested my changes according to the test plan:
    • Full backend/shared-library lint, formatting and Pyright
    • Frontend types, changed-file lint, production build and focused integration suites
    • Full frontend Vitest suite before the final folder-menu fix: 640 files / 6,710 tests; focused interaction checks validate that final fix separately
    • Latest dev marketplace profile tests/types/lint (10 tests) and rebuilt-image public-profile smoke
    • Regenerated OpenAPI matches the checked-in schema (314 paths)
    • Fresh database migrations and seeded dev upgrade; activity, nested files, marketplace, balances and idempotence
    • Real PostgreSQL revocation/concurrency, shared-agent copy, atomic conversion and migration regressions
    • Final graph/executor/tenancy/expert integration run: 366 passed against real PostgreSQL and isolated RabbitMQ
    • Final owner/member/outsider browser rollout, real virus-scanned Files upload/folder/download/switching, mobile layout and server flag-off check
    • Final complete Linux image build and persisted-volume health/login/organization smoke
    • Packaged-image rollout: 10 owner/member/outsider/Files checks; latest-dev final image passed 6 additional public-profile/persistence/privacy checks with zero browser/API failures

Old stack CI and failed pre-fix/local-fixture runs remain preserved as historical evidence. The local verification here is not a claim that old member heads or hosted production were tested.

Focused regression evidence includes 134 grant/executor tests, 8 real database OWNER-grant cases plus an independent 3-case persisted-scope/secret-access probe, 9 real database shared-agent copy cases, 12 real database credit-history cases, 19 billing-link frontend tests, and 47 avatar/settings tests. These suites overlap with broader runs and are not an additive total. The internal browser rollout used real Better Auth sessions and backend JWT verification for synthetic owner, member and outsider accounts in an isolated local database. Complete-candidate file checks, Gitleaks and detect-secrets passed; exactly two non-secret UI/test literals were reviewed and recorded without changing detector settings.

For configuration changes:

  • .env.default documents the local org override
  • docker-compose.yml remains compatible with existing dependencies
  • Configuration changes are listed above

Hosted rollout must target the same account IDs for SHOW_ORG_SETTINGS in backend and frontend; leave global force overrides unset. Disabling the flag stops new collaboration entry, while existing authorized reads and cleanup continue. Deploy all tenant-aware workers together and do not revert to old unscoped services over new tenant data.

Follow-ups retained: measure webhook enqueue lock contention before changing its authorization pin; optional chat-title rename retry must obtain fresh authorization after a lease-release failure.

ntindle and others added 30 commits August 26, 2026 21:44
…e-team requirement

Mutating team routes (settings update, member add/role-change/remove) were
gated by requires_team_permission, which required the caller's active team
context (X-Team-Id) to match the target team. This made header-dependent
management untenable now that teams are badges/filters rather than active
contexts: a team admin could only manage the team currently selected in
their UI, and an org admin could delete but not rename or manage members
of a team.

These routes now use Security(get_request_context) and a local
_authorize_team_management helper that authorizes against the target ws_id
from the URL path, independent of ctx.team_id: allowed if the caller is an
admin of the target team (new team_db.is_team_admin lookup) or holds
org-level MANAGE_WORKSPACES. The target team must still belong to the
caller's org. requires_team_permission in autogpt_libs is left untouched.

Adds scenario-named route tests covering team-admin (no active-team
header), org-admin non-member, plain org member, cross-team admin, and
cross-org cases for both settings and member-management routes; updates the
now-obsolete active-team-mismatch regression test to the new semantics.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Jm3mCG9okfdGtAXtFaDF9A
Mutating team routes (update/delete/join/leave team, add/remove member)
call team_db functions that raise ValueError for user-triggerable
rejections — changing the default team's join policy, deleting or leaving
the default team, removing the last admin, adding a non-org-member, and
self-joining a non-OPEN team. The handlers didn't catch them, so at the
router level these surface as 500s instead of 400s.

Add a small local _rejects_as_400 decorator and apply it only to the six
mutating handlers whose db calls raise ValueError, so a genuine bug
elsewhere still surfaces as a 500 rather than being masked as a 400.
NotFoundError/NotAuthorizedError subclass ValueError but carry their own
404/403 mappings, so they are re-raised untouched.

Adds scenario-named route tests asserting each rejection returns 400 with
the db-layer message as the detail (not a generic 500).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Jm3mCG9okfdGtAXtFaDF9A
… is_member

Org owners/admins (MANAGE_WORKSPACES) now see PRIVATE teams they don't belong
to in team lists as name + member count only — the description is redacted
("governance without surveillance"). Regular members still don't see them at
all. Every returned team row carries a per-caller is_member flag so the
frontend can render Join/Manage affordances correctly.

- TeamResponse gains is_member; from_db can redact the description.
- list_teams takes can_manage_workspaces: admins bypass the OPEN/member
  visibility filter and get redacted rows for PRIVATE non-member teams.
  is_member and active member_count are computed in bulk (two queries, no
  N+1) via _member_facts.
- New get_team_for_viewer backs GET /{ws_id}: OPEN/member teams full, admin
  non-member PRIVATE teams redacted, regular-member PRIVATE non-member 404 —
  so details mirrors list visibility instead of exposing every team by id.
- Regenerated the frontend OpenAPI schema.

Adds scenario-named route tests for admin/member list visibility, redaction,
is_member accuracy on open/private teams, and details-route redaction/404.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Jm3mCG9okfdGtAXtFaDF9A
The members route was open to any org member, letting anyone enumerate a
private workspace's roster that the list/details routes hide. The roster
is contents: members and OPEN workspaces list normally; org admins get a
403 (join to view — governance without surveillance); regular
non-members get the same 404 as the rest of the visibility surface.
Surfaced by the expandable-members product ask, which lazily fetches
rosters from the teams list.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Jm3mCG9okfdGtAXtFaDF9A
…enial branches

Address review on #13524:
- Reformat routes_test.py (black: missing blank line between classes,
  introduced by the dev merge) — unblocks the red lint CI job
- Add route-level allow + deny tests for POST /{ws_id}/members and
  DELETE /{ws_id}/members/{uid} so dropping _authorize_team_management
  from either route fails a test
- Cover is_team_admin denial branches: active non-admin member, and
  admin rows with INVITED/SUSPENDED status
- Cover the ctx.org_id != org_id guard (403 before any DB lookup)
- Document the deliberate delete-vs-manage asymmetry on delete_team

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The /credits balance, transaction-history, invoice, top-up, refund,
auto-top-up and payment-method routes in api/features/v1.py resolve their
credit model through the request's org context. For a pooled (real) org this
routes to the shared OrgBalance, so any active org member — regardless of
role — could read the org's balance and full transaction/invoice history and
initiate billing mutations, since the routes were gated only by requires_user.

Swap those routes to require org-level MANAGE_BILLING (owner or
billing_manager) via requires_org_permission, matching orgs/routes.py.
Personal-org owners always hold is_org_owner, so the gate is a no-op for them.
User-scoped subscription-tier routes and the unauthenticated Stripe webhook
are intentionally left unchanged. Response shapes are unchanged; data-layer
credit logic is untouched (HTTP layer only).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Jm3mCG9okfdGtAXtFaDF9A
Add GET /api/orgs/{org_id}/spend, an org billing report that aggregates the
org's USAGE (debit) ledger grouped by the team each debit was attributed to.
Gated by org-level MANAGE_BILLING (owner or billing_manager) via
requires_org_permission, matching the SECRT-2449 credits-route gating.

- data/org_credit.py: get_org_spend_by_team() groups OrgCreditTransaction by
  teamId (Prisma group_by), filters to type=USAGE + isActive, negates the debit
  sum into a positive total_spent, resolves team names in a second Team query,
  and preserves NULL-team usage (org-home / legacy migrations) as an
  unattributed bucket. Buckets are returned highest-spend first.
- orgs/model.py: OrgSpendResponse / TeamSpendBucket response models (snake_case).
- orgs/routes.py: the org-scoped route with an optional from/to datetime window.

Team-scoped VIEW_SPEND routes are intentionally deferred to the team-facing UI.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Jm3mCG9okfdGtAXtFaDF9A
Add POST /api/orgs/{org_id}/avatar (multipart) gated by
requires_org_permission(RENAME_ORG) + _verify_org_path, mirroring the
store submission media upload: images-only content-type + extension
allowlist at the route, then magic-byte checks, 50MB cap, ClamAV scan,
and GCS upload via store_media.upload_media. upload_media gains an
organization_id kwarg that scopes the storage path to
orgs/{org_id}/images/{uuid}{ext} (server-side ids, never client-named).
The URL is persisted via org_db.update_org and the updated OrgResponse
(which already carries avatar_url) is returned.

Co-Authored-By: Claude Opus <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01NBwmh7CkHiF8vKLBf2GWTU

# Conflicts:
#	autogpt_platform/backend/backend/api/features/orgs/routes.py
…e-labeled recall, governed shared writes

Co-Authored-By: Claude Opus <noreply@anthropic.com>
…ate tiers, reject bad tiers

- org memory read (resolve_warm_targets/resolve_search_targets) and write
  (memory_store) now re-verify ACTIVE org membership via is_org_member instead
  of trusting session.organization_id (only checked at session creation, so a
  revoked/stale membership previously reached org memory). Mirrors the team tier.
- resolve_warm_targets isolates a malformed org id: derivation failure skips
  the org tier instead of sinking the personal warm context.
- resolve_search_targets rejects unknown tiers with TierError instead of
  silently returning no targets (which read as "no memories").

Co-Authored-By: Claude Opus <noreply@anthropic.com>
…ure tripwire)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…+ held-memory review (SECRT-2455)

Adds the three org-admin endpoints the shared-memory UI (frontend #13658)
flagged as missing:

1. holdBuffer toggle persistence: memory_hold_buffer on UpdateOrgRequest
   (None = leave unchanged) and OrgResponse (default true), read/written at
   Organization.settings["memory"]["holdBuffer"] — the exact key
   copilot/graphiti/tiers.hold_buffer_enabled reads. Read-modify-write
   preserves sibling settings keys; gated by RENAME_ORG (same as the org
   profile PATCH it rides on).

2. GET /api/orgs/{org_id}/memory/held — lists tentative ("held") memories
   across the org tier and every team tier of the org, tier-labelled,
   excluding personal + other orgs' teams. MANAGE_MEMBERS gated.

3. POST .../held/{memory_id}/{approve,reject} — approve reuses the dream
   ratification status-flip (_promote_if_tentative), reject reuses
   memory_forget's soft-retract (mark_edges_superseded). Both validate the
   edge lives in one of THIS org's shared tiers before touching it (404
   otherwise); personal tiers are never touchable.

Tests mock at the graphiti-driver + prisma boundary.

Co-Authored-By: Claude Opus <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01NBwmh7CkHiF8vKLBf2GWTU
…am_id on list responses

Co-Authored-By: Claude Opus <noreply@anthropic.com>
…y_agent

- fork_library_agent now passes organization_id/team_id to fork_graph, so
  the forked AgentGraph rows are tenanted, not just the library entry.
  Extended the tenancy test to assert fork_graph receives the org/team.
- hoist v1_test.py helper imports to module scope per the backend
  top-level-imports guideline.

Co-Authored-By: Claude Opus <noreply@anthropic.com>
The frontend retired the active-team header (X-Team-Id is always null),
so builder save, schedule create and API key create silently stamped
every new resource org-home. Add an explicit, membership-validated
team_id to those create/save surfaces:

- POST /graphs and PUT /graphs/{id}: team_id in the CreateGraph body /
  query param. On a new version, inherit the agent's existing team when
  omitted so re-saving no longer moves a team agent back to org-home.
- POST /graphs/{id}/schedules: team_id in ScheduleCreationRequest,
  inheriting the scheduled agent's team when omitted.
- POST /api-keys: team_id in CreateAPIKeyRequest, mapped to
  teamIdRestriction (the enforced team scope for a key).

Creating into a team requires ACTIVE membership (org admins must join
first); an invalid or cross-org team returns 400. Regenerated openapi.json.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Jm3mCG9okfdGtAXtFaDF9A
…ests with tenancy

team-field-alignment threads organization_id/team_id through fork_library_agent and
surfaces owningOrgId as StoreSubmission.organization_id, colliding with dev's new
regression assertions:

- test_regression_fork_library_agent_creates_for_caller: fork_graph is now called
  with organization_id/team_id kwargs; with no active org/team both are None. Update
  the exact-call assertion accordingly (no ANY).
- test_regression_create_submission_sets_owning_user: from_listing_version reads
  _l.owningOrgId into StoreSubmission.organization_id (str | None); the mocked listing
  returned a bare MagicMock and failed Pydantic validation. Set owningOrgId = None
  on the fixture.

notifications_test.py::test_upsert_creates_empty_batch_then_appends left as-is: it is
a real-DB (SpinTestServer) test that this branch does not touch (notifications source,
test, and schema notification models are byte-identical to dev), passing standalone —
its rollup failure is a pre-existing dev flake, not batch-branch drift.

Co-Authored-By: Claude Opus <noreply@anthropic.com>
…ire forbids stdlib dataclasses in backend

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Review follow-ups on the team tenancy work:

- Regenerate openapi.json so the new response-model tenancy fields
  (organization_id/team_id on LibraryAgent, LibraryFolder,
  LibraryFolderTree, SessionSummaryResponse; organization_id on
  StoreSubmission) are actually in the exported schema — fixes the red
  `check API types` job.
- create_api_key: only `None` falls back to the request-context team, so
  an explicit empty-string team_id is rejected instead of silently
  widening the key's scope.
- update_graph: re-tag the linked LibraryAgent row with the version's
  org/team, so list badges and team filters can't disagree with where the
  version was saved.
- update_graph / schedule create: only inherit the existing team when the
  source row lives in the org the request is acting in, so a team from
  another org is never stamped onto this org's row.
- Collapse the duplicate `_api_key_info` test helper (the second
  definition shadowed the first) and drop its redundant inline imports.
- Add the missing coverage: schedule-create team resolution (explicit /
  inherit / reject), update_graph non-member team rejection, the
  no-org-context 400 branch of `_resolve_write_team_id`, the empty-string
  api-key case, and StoreSubmission.from_listing_version surfacing a
  non-null owning org.
- Document why update_graph takes team_id as a query param, why api-key
  create re-validates ctx.team_id, and align the field descriptions with
  the actual request-context fallback order.
- Warn (instead of debug) when an X-Team-Id header resolves to nothing, so
  a mistyped/expired team doesn't silently broaden what gets created.
- Share one loop-closed retry helper between conftest and the search
  integration test, with a TODO for the teardown fix that removes it.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Grant table with a polymorphic principal (TEAM enforced, USER reserved,
room for PERSONA), version-pinned by default with opt-in followLatest,
per-grant capability (VIEW/EXECUTE) and credential mode. Enforcement:
grant fallback in get_graph and an EXECUTE-grant path in
validate_graph_execution_permissions; non-TEAM principals raise loudly
rather than silently half-supporting an unshipped principal type.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Jm3mCG9okfdGtAXtFaDF9A
…ts, 403 authz

- resolve_graph_grant + list_received_grants now exclude archived workspaces,
  matching upsert_grant's create-time rule and list_teams visibility
- grant resolution/execution in graph.py constrained to the grant's
  organizationId so a followLatest grant can't follow a graph moved to
  another org
- owner/admin authorization failures raise NotAuthorizedError (mapped to
  403) instead of a plain ValueError (400)

Co-Authored-By: Claude Opus <noreply@anthropic.com>
…s tests

Dev's new get_graph/validate tests mock the AgentGraph/StoreListingVersion/
LibraryAgent prisma clients but not backend.data.grants.prisma, so the team-grant
fallback in get_graph (and the exec-grant check in validate_graph_execution_permissions)
hit the real, unconnected client and raised RuntimeError.

- graph_test.py: add a file-wide autouse fixture patching backend.data.grants.prisma
  with agentgraphgrant.find_many -> [] so resolve_graph_grant returns None (no-grant
  path is explicit). No assertions weakened.
- orgs/regression_test.py: patch backend.data.grants.prisma inline in the one
  non-owner get_graph test (test_regression_get_graph_wrong_org_returns_none),
  matching the file's per-test patch style.

Co-Authored-By: Claude Opus <noreply@anthropic.com>
…d/add collision with the memory-governance mount in the batch rollup

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…er's credentials (SECRT-2448)

When a user reaches a graph only via an OWNER-mode team grant, the run now
resolves the graph's own stored credential references against the GRAPH
OWNER's credential store (never the consumer's), injected at execution only.
CONSUMER-mode grants, owners running their own graphs, and marketplace/library
runs are unaffected. OWNER resolution is scoped to ids the graph itself
references (allowlist), fails closed on a missing owner credential (no fallback
to consumer creds), stays inert for sub-graphs, and re-checks live team
membership at execution-start. upsert_grant now rejects OWNER grants created by
anyone but the graph owner (an org admin can't expose a third party's creds).

Co-Authored-By: Claude Opus <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01NBwmh7CkHiF8vKLBf2GWTU
…-bypass tests

The resume-backfill test exercised the real grants resolver against live
prisma — passing locally on a warm pool, failing in CI with loop-closed.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…CRT-2475)

Pending (including expired) invitations get a rotated token and a new
7-day expiry; the previously emailed link stops working on resend.
Accepted or revoked invitations are rejected with 400.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Jm3mCG9okfdGtAXtFaDF9A
…th org-UI stack

routes_test.py is heavily modified by the in-flight org-UI stack; appending
there made the rollup eject this PR on a test-file conflict.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Move get_request_context and org_router from the local _client import to
top-level imports, per the backend top-level-imports guideline.

Co-Authored-By: Claude Opus <noreply@anthropic.com>
…urate

Addresses review feedback on the resend endpoint:

- Regenerate openapi.json for the new /resend route (fixes red `check API
  types` CI) plus the new list query param.
- Add `include_expired` to `list_invitations`. The endpoint filtered
  `expiresAt > now`, so an admin could never obtain the invitation_id of an
  expired invite -- the resend feature's primary use case was unreachable
  end-to-end. Defaults to false, so existing clients are unchanged.
- Close the TOCTOU window between the state read and the write. `update()`
  only accepts a unique WHERE in prisma-client-python, so the rotation now
  goes through `update_many()` with `acceptedAt`/`revokedAt` re-asserted in
  the WHERE clause, and reads the row back by the freshly minted token. A
  concurrent accept/revoke now yields 400 instead of a 200 with a live token.
- Re-validate teamIds on resend: teams deleted since the invite was created
  are pruned (and logged) instead of silently promising access that accept
  can no longer grant.
- Extract the shared lookup+org-match guard into `_get_org_invitation`,
  reused by `revoke_invitation`.
- Tests: assert the response body carries the rotated token (was never
  checked), cover `find_unique -> None`, the CAS where-clause, the lost-race
  path, team pruning, and both `include_expired` modes.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
@coderabbitai

coderabbitai Bot commented Sep 7, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Too many files!

This PR contains 943 files, which is 643 over the limit of 300.

To get a review, reduce the PR to 300 files or fewer by splitting it into smaller PRs or changing its base branch.

Usage-priced reviews support at most 300 files.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Team

Run ID: 73de42e8-79bf-4f7b-b71e-353f5d359670

📥 Commits

Reviewing files that changed from the base of the PR and between 6dc5fec and 3238118.

📒 Files selected for processing (943)
  • .github/scripts/platform-single-container-smoke.sh
  • .github/workflows/platform-backend-ci.yml
  • .secrets.baseline
  • autogpt_platform/autogpt_libs/autogpt_libs/auth/__init__.py
  • autogpt_platform/autogpt_libs/autogpt_libs/auth/dependencies.py
  • autogpt_platform/autogpt_libs/autogpt_libs/auth/dependencies_test.py
  • autogpt_platform/autogpt_libs/autogpt_libs/auth/permissions.py
  • autogpt_platform/autogpt_libs/autogpt_libs/auth/permissions_test.py
  • autogpt_platform/backend/.env.default
  • autogpt_platform/backend/.gitignore
  • autogpt_platform/backend/backend/api/chat_live_unit_test.py
  • autogpt_platform/backend/backend/api/conftest.py
  • autogpt_platform/backend/backend/api/conn_manager.py
  • autogpt_platform/backend/backend/api/conn_manager_integration_test.py
  • autogpt_platform/backend/backend/api/conn_manager_test.py
  • autogpt_platform/backend/backend/api/external/authorization_principal.py
  • autogpt_platform/backend/backend/api/external/authorization_principal_db_test.py
  • autogpt_platform/backend/backend/api/external/authorization_principal_http_test.py
  • autogpt_platform/backend/backend/api/external/authorization_principal_test.py
  • autogpt_platform/backend/backend/api/external/credential_access.py
  • autogpt_platform/backend/backend/api/external/middleware.py
  • autogpt_platform/backend/backend/api/external/middleware_test.py
  • autogpt_platform/backend/backend/api/external/v1/integrations.py
  • autogpt_platform/backend/backend/api/external/v1/live_actions_test.py
  • autogpt_platform/backend/backend/api/external/v1/routes.py
  • autogpt_platform/backend/backend/api/external/v1/routes_test.py
  • autogpt_platform/backend/backend/api/external/v1/tools.py
  • autogpt_platform/backend/backend/api/features/builder/db.py
  • autogpt_platform/backend/backend/api/features/builder/db_test.py
  • autogpt_platform/backend/backend/api/features/builder/routes.py
  • autogpt_platform/backend/backend/api/features/chat/routes.py
  • autogpt_platform/backend/backend/api/features/chat/routes_test.py
  • autogpt_platform/backend/backend/api/features/chat/share.py
  • autogpt_platform/backend/backend/api/features/chat/share_signature_test.py
  • autogpt_platform/backend/backend/api/features/chat/share_test.py
  • autogpt_platform/backend/backend/api/features/credit_history_routes_test.py
  • autogpt_platform/backend/backend/api/features/executions/review/model.py
  • autogpt_platform/backend/backend/api/features/executions/review/review_routes_test.py
  • autogpt_platform/backend/backend/api/features/executions/review/routes.py
  • autogpt_platform/backend/backend/api/features/experts/credentials.py
  • autogpt_platform/backend/backend/api/features/experts/expert_scope_resolution_test.py
  • autogpt_platform/backend/backend/api/features/experts/experts_db.py
  • autogpt_platform/backend/backend/api/features/experts/experts_db_test.py
  • autogpt_platform/backend/backend/api/features/experts/models.py
  • autogpt_platform/backend/backend/api/features/experts/raise_attachments.py
  • autogpt_platform/backend/backend/api/features/experts/raise_attachments_test.py
  • autogpt_platform/backend/backend/api/features/experts/routes.py
  • autogpt_platform/backend/backend/api/features/experts/routes_test.py
  • autogpt_platform/backend/backend/api/features/experts/scheduling.py
  • autogpt_platform/backend/backend/api/features/experts/scheduling_test.py
  • autogpt_platform/backend/backend/api/features/experts/tenant_scope_db_test.py
  • autogpt_platform/backend/backend/api/features/experts/tenant_scope_test.py
  • autogpt_platform/backend/backend/api/features/experts/workspace.py
  • autogpt_platform/backend/backend/api/features/home/activity.py
  • autogpt_platform/backend/backend/api/features/home/activity_test.py
  • autogpt_platform/backend/backend/api/features/home/attention.py
  • autogpt_platform/backend/backend/api/features/home/attention_test.py
  • autogpt_platform/backend/backend/api/features/home/briefing.py
  • autogpt_platform/backend/backend/api/features/home/helpers.py
  • autogpt_platform/backend/backend/api/features/home/helpers_test.py
  • autogpt_platform/backend/backend/api/features/home/recent_work.py
  • autogpt_platform/backend/backend/api/features/home/recent_work_test.py
  • autogpt_platform/backend/backend/api/features/home/routes.py
  • autogpt_platform/backend/backend/api/features/home/routes_test.py
  • autogpt_platform/backend/backend/api/features/home/service.py
  • autogpt_platform/backend/backend/api/features/home/service_test.py
  • autogpt_platform/backend/backend/api/features/integrations/codex.py
  • autogpt_platform/backend/backend/api/features/integrations/codex_test.py
  • autogpt_platform/backend/backend/api/features/integrations/router.py
  • autogpt_platform/backend/backend/api/features/integrations/router_test.py
  • autogpt_platform/backend/backend/api/features/integrations/webhook_ingress_test.py
  • autogpt_platform/backend/backend/api/features/library/_add_to_library.py
  • autogpt_platform/backend/backend/api/features/library/_add_to_library_test.py
  • autogpt_platform/backend/backend/api/features/library/_schedule_info.py
  • autogpt_platform/backend/backend/api/features/library/db.py
  • autogpt_platform/backend/backend/api/features/library/db_test.py
  • autogpt_platform/backend/backend/api/features/library/embeddings.py
  • autogpt_platform/backend/backend/api/features/library/embeddings_test.py
  • autogpt_platform/backend/backend/api/features/library/model.py
  • autogpt_platform/backend/backend/api/features/library/model_test.py
  • autogpt_platform/backend/backend/api/features/library/routes/agents.py
  • autogpt_platform/backend/backend/api/features/library/routes/folders.py
  • autogpt_platform/backend/backend/api/features/library/routes/live.py
  • autogpt_platform/backend/backend/api/features/library/routes/presets.py
  • autogpt_platform/backend/backend/api/features/library/routes_test.py
  • autogpt_platform/backend/backend/api/features/library/scope_aggregation_test.py
  • autogpt_platform/backend/backend/api/features/library/search.py
  • autogpt_platform/backend/backend/api/features/library/triggers.py
  • autogpt_platform/backend/backend/api/features/library/triggers_test.py
  • autogpt_platform/backend/backend/api/features/library/unit/conftest.py
  • autogpt_platform/backend/backend/api/features/library/unit/library_read_test.py
  • autogpt_platform/backend/backend/api/features/library/unit/preset_scope_test.py
  • autogpt_platform/backend/backend/api/features/library/unit/scope_regression_test.py
  • autogpt_platform/backend/backend/api/features/mcp/routes.py
  • autogpt_platform/backend/backend/api/features/mcp/test_routes.py
  • autogpt_platform/backend/backend/api/features/orgs/avatar_route_security_test.py
  • autogpt_platform/backend/backend/api/features/orgs/conftest.py
  • autogpt_platform/backend/backend/api/features/orgs/db.py
  • autogpt_platform/backend/backend/api/features/orgs/grant_db.py
  • autogpt_platform/backend/backend/api/features/orgs/grant_db_test.py
  • autogpt_platform/backend/backend/api/features/orgs/grant_model.py
  • autogpt_platform/backend/backend/api/features/orgs/grant_routes.py
  • autogpt_platform/backend/backend/api/features/orgs/invitation_resend_test.py
  • autogpt_platform/backend/backend/api/features/orgs/invitation_routes.py
  • autogpt_platform/backend/backend/api/features/orgs/memory_access_test.py
  • autogpt_platform/backend/backend/api/features/orgs/memory_db.py
  • autogpt_platform/backend/backend/api/features/orgs/memory_model.py
  • autogpt_platform/backend/backend/api/features/orgs/memory_routes.py
  • autogpt_platform/backend/backend/api/features/orgs/memory_routes_test.py
  • autogpt_platform/backend/backend/api/features/orgs/migration_sql_test.py
  • autogpt_platform/backend/backend/api/features/orgs/model.py
  • autogpt_platform/backend/backend/api/features/orgs/regression_test.py
  • autogpt_platform/backend/backend/api/features/orgs/rollout.py
  • autogpt_platform/backend/backend/api/features/orgs/rollout_test.py
  • autogpt_platform/backend/backend/api/features/orgs/routes.py
  • autogpt_platform/backend/backend/api/features/orgs/routes_test.py
  • autogpt_platform/backend/backend/api/features/orgs/spend_test.py
  • autogpt_platform/backend/backend/api/features/orgs/team_db.py
  • autogpt_platform/backend/backend/api/features/orgs/team_model.py
  • autogpt_platform/backend/backend/api/features/orgs/team_routes.py
  • autogpt_platform/backend/backend/api/features/search/README.md
  • autogpt_platform/backend/backend/api/features/search/content_handlers.py
  • autogpt_platform/backend/backend/api/features/search/content_handlers_integration_test.py
  • autogpt_platform/backend/backend/api/features/search/content_handlers_test.py
  • autogpt_platform/backend/backend/api/features/search/embeddings.py
  • autogpt_platform/backend/backend/api/features/search/hybrid_search.py
  • autogpt_platform/backend/backend/api/features/search/model.py
  • autogpt_platform/backend/backend/api/features/search/routes.py
  • autogpt_platform/backend/backend/api/features/search/service.py
  • autogpt_platform/backend/backend/api/features/search/service_test.py
  • autogpt_platform/backend/backend/api/features/store/db.py
  • autogpt_platform/backend/backend/api/features/store/db_test.py
  • autogpt_platform/backend/backend/api/features/store/image_gen.py
  • autogpt_platform/backend/backend/api/features/store/image_gen_test.py
  • autogpt_platform/backend/backend/api/features/store/media.py
  • autogpt_platform/backend/backend/api/features/store/media_test.py
  • autogpt_platform/backend/backend/api/features/store/model.py
  • autogpt_platform/backend/backend/api/features/store/model_test.py
  • autogpt_platform/backend/backend/api/features/store/public_version_scope_test.py
  • autogpt_platform/backend/backend/api/features/store/review_tenancy_test.py
  • autogpt_platform/backend/backend/api/features/store/routes.py
  • autogpt_platform/backend/backend/api/features/store/routes_test.py
  • autogpt_platform/backend/backend/api/features/transfers/db.py
  • autogpt_platform/backend/backend/api/features/transfers/routes.py
  • autogpt_platform/backend/backend/api/features/v1.py
  • autogpt_platform/backend/backend/api/features/v1_credits_authz_test.py
  • autogpt_platform/backend/backend/api/features/v1_execution_scope_test.py
  • autogpt_platform/backend/backend/api/features/v1_share_test.py
  • autogpt_platform/backend/backend/api/features/v1_test.py
  • autogpt_platform/backend/backend/api/features/workspace/embeddings.py
  • autogpt_platform/backend/backend/api/features/workspace/folder_routes.py
  • autogpt_platform/backend/backend/api/features/workspace/folder_routes_test.py
  • autogpt_platform/backend/backend/api/features/workspace/preview_test.py
  • autogpt_platform/backend/backend/api/features/workspace/routes.py
  • autogpt_platform/backend/backend/api/features/workspace/routes_test.py
  • autogpt_platform/backend/backend/api/graph_stability_unit_test.py
  • autogpt_platform/backend/backend/api/live_auth.py
  • autogpt_platform/backend/backend/api/live_auth_test.py
  • autogpt_platform/backend/backend/api/live_dependency_scope_test.py
  • autogpt_platform/backend/backend/api/model.py
  • autogpt_platform/backend/backend/api/rest_api.py
  • autogpt_platform/backend/backend/api/ws_api.py
  • autogpt_platform/backend/backend/api/ws_api_test.py
  • autogpt_platform/backend/backend/blocks/_base.py
  • autogpt_platform/backend/backend/blocks/autopilot.py
  • autogpt_platform/backend/backend/blocks/autopilot_codex_test.py
  • autogpt_platform/backend/backend/blocks/claude_code.py
  • autogpt_platform/backend/backend/blocks/mcp/block.py
  • autogpt_platform/backend/backend/blocks/mcp/helpers.py
  • autogpt_platform/backend/backend/blocks/mcp/test_helpers.py
  • autogpt_platform/backend/backend/blocks/mcp/test_mcp.py
  • autogpt_platform/backend/backend/blocks/test/test_autopilot.py
  • autogpt_platform/backend/backend/conftest.py
  • autogpt_platform/backend/backend/copilot/activity_scope_test.py
  • autogpt_platform/backend/backend/copilot/baseline/service.py
  • autogpt_platform/backend/backend/copilot/baseline/service_unit_test.py
  • autogpt_platform/backend/backend/copilot/bot/bot_backend.py
  • autogpt_platform/backend/backend/copilot/bot/bot_backend_test.py
  • autogpt_platform/backend/backend/copilot/bot/handler_test.py
  • autogpt_platform/backend/backend/copilot/bot/outbound.py
  • autogpt_platform/backend/backend/copilot/bot/outbound_test.py
  • autogpt_platform/backend/backend/copilot/bot/turn_stream.py
  • autogpt_platform/backend/backend/copilot/bot/turn_stream_test.py
  • autogpt_platform/backend/backend/copilot/briefing/generate.py
  • autogpt_platform/backend/backend/copilot/briefing/generate_test.py
  • autogpt_platform/backend/backend/copilot/briefing/outcome.py
  • autogpt_platform/backend/backend/copilot/briefing/outcome_test.py
  • autogpt_platform/backend/backend/copilot/builder_context.py
  • autogpt_platform/backend/backend/copilot/builder_context_test.py
  • autogpt_platform/backend/backend/copilot/chat_session_embeddings.py
  • autogpt_platform/backend/backend/copilot/chat_session_embeddings_test.py
  • autogpt_platform/backend/backend/copilot/context.py
  • autogpt_platform/backend/backend/copilot/db.py
  • autogpt_platform/backend/backend/copilot/db_test.py
  • autogpt_platform/backend/backend/copilot/dream/ratification.py
  • autogpt_platform/backend/backend/copilot/executor/processor.py
  • autogpt_platform/backend/backend/copilot/executor/processor_test.py
  • autogpt_platform/backend/backend/copilot/executor/utils.py
  • autogpt_platform/backend/backend/copilot/expert_context.py
  • autogpt_platform/backend/backend/copilot/expert_context_test.py
  • autogpt_platform/backend/backend/copilot/graphiti/client.py
  • autogpt_platform/backend/backend/copilot/graphiti/client_test.py
  • autogpt_platform/backend/backend/copilot/graphiti/config.py
  • autogpt_platform/backend/backend/copilot/graphiti/config_test.py
  • autogpt_platform/backend/backend/copilot/graphiti/context.py
  • autogpt_platform/backend/backend/copilot/graphiti/context_test.py
  • autogpt_platform/backend/backend/copilot/graphiti/ingest.py
  • autogpt_platform/backend/backend/copilot/graphiti/ingest_test.py
  • autogpt_platform/backend/backend/copilot/graphiti/lifecycle.py
  • autogpt_platform/backend/backend/copilot/graphiti/lifecycle_integration_test.py
  • autogpt_platform/backend/backend/copilot/graphiti/lifecycle_test.py
  • autogpt_platform/backend/backend/copilot/graphiti/tiers.py
  • autogpt_platform/backend/backend/copilot/graphiti/tiers_test.py
  • autogpt_platform/backend/backend/copilot/integration_creds.py
  • autogpt_platform/backend/backend/copilot/model.py
  • autogpt_platform/backend/backend/copilot/model_test.py
  • autogpt_platform/backend/backend/copilot/pending_message_helpers.py
  • autogpt_platform/backend/backend/copilot/pending_message_helpers_test.py
  • autogpt_platform/backend/backend/copilot/prompting.py
  • autogpt_platform/backend/backend/copilot/prompting_test.py
  • autogpt_platform/backend/backend/copilot/sdk/responsiveness_test.py
  • autogpt_platform/backend/backend/copilot/sdk/service.py
  • autogpt_platform/backend/backend/copilot/sdk/session_waiter.py
  • autogpt_platform/backend/backend/copilot/sdk/session_waiter_test.py
  • autogpt_platform/backend/backend/copilot/sdk/tool_adapter.py
  • autogpt_platform/backend/backend/copilot/sdk/tool_adapter_test.py
  • autogpt_platform/backend/backend/copilot/service.py
  • autogpt_platform/backend/backend/copilot/service_claim_test.py
  • autogpt_platform/backend/backend/copilot/service_unit_test.py
  • autogpt_platform/backend/backend/copilot/sharing/db.py
  • autogpt_platform/backend/backend/copilot/sharing/db_test.py
  • autogpt_platform/backend/backend/copilot/tools/_test_data.py
  • autogpt_platform/backend/backend/copilot/tools/agent_browser.py
  • autogpt_platform/backend/backend/copilot/tools/agent_generator/core.py
  • autogpt_platform/backend/backend/copilot/tools/agent_generator/pipeline.py
  • autogpt_platform/backend/backend/copilot/tools/agent_output.py
  • autogpt_platform/backend/backend/copilot/tools/agent_search.py
  • autogpt_platform/backend/backend/copilot/tools/agent_search_test.py
  • autogpt_platform/backend/backend/copilot/tools/base.py
  • autogpt_platform/backend/backend/copilot/tools/base_test.py
  • autogpt_platform/backend/backend/copilot/tools/bash_exec.py
  • autogpt_platform/backend/backend/copilot/tools/bash_exec_test.py
  • autogpt_platform/backend/backend/copilot/tools/confirm_expert_change.py
  • autogpt_platform/backend/backend/copilot/tools/conftest.py
  • autogpt_platform/backend/backend/copilot/tools/create_agent.py
  • autogpt_platform/backend/backend/copilot/tools/customize_agent.py
  • autogpt_platform/backend/backend/copilot/tools/delegate_to_expert.py
  • autogpt_platform/backend/backend/copilot/tools/delegate_to_expert_test.py
  • autogpt_platform/backend/backend/copilot/tools/edit_agent.py
  • autogpt_platform/backend/backend/copilot/tools/execution_utils.py
  • autogpt_platform/backend/backend/copilot/tools/execution_utils_test.py
  • autogpt_platform/backend/backend/copilot/tools/expert_delegation.py
  • autogpt_platform/backend/backend/copilot/tools/find_library_agent.py
  • autogpt_platform/backend/backend/copilot/tools/find_library_agent_test.py
  • autogpt_platform/backend/backend/copilot/tools/get_sub_session_result.py
  • autogpt_platform/backend/backend/copilot/tools/graphiti_forget.py
  • autogpt_platform/backend/backend/copilot/tools/graphiti_forget_test.py
  • autogpt_platform/backend/backend/copilot/tools/graphiti_search.py
  • autogpt_platform/backend/backend/copilot/tools/graphiti_search_test.py
  • autogpt_platform/backend/backend/copilot/tools/graphiti_store.py
  • autogpt_platform/backend/backend/copilot/tools/graphiti_store_test.py
  • autogpt_platform/backend/backend/copilot/tools/handoff_to_expert.py
  • autogpt_platform/backend/backend/copilot/tools/handoff_to_expert_test.py
  • autogpt_platform/backend/backend/copilot/tools/helpers.py
  • autogpt_platform/backend/backend/copilot/tools/helpers_test.py
  • autogpt_platform/backend/backend/copilot/tools/list_agent_triggers.py
  • autogpt_platform/backend/backend/copilot/tools/list_agent_triggers_test.py
  • autogpt_platform/backend/backend/copilot/tools/manage_folders.py
  • autogpt_platform/backend/backend/copilot/tools/manage_folders_test.py
  • autogpt_platform/backend/backend/copilot/tools/manage_presets.py
  • autogpt_platform/backend/backend/copilot/tools/manage_presets_test.py
  • autogpt_platform/backend/backend/copilot/tools/manage_schedules.py
  • autogpt_platform/backend/backend/copilot/tools/manage_schedules_test.py
  • autogpt_platform/backend/backend/copilot/tools/run_agent.py
  • autogpt_platform/backend/backend/copilot/tools/run_agent_display_test.py
  • autogpt_platform/backend/backend/copilot/tools/run_agent_test.py
  • autogpt_platform/backend/backend/copilot/tools/run_mcp_tool.py
  • autogpt_platform/backend/backend/copilot/tools/run_sub_session.py
  • autogpt_platform/backend/backend/copilot/tools/schedule_followup.py
  • autogpt_platform/backend/backend/copilot/tools/schedule_followup_test.py
  • autogpt_platform/backend/backend/copilot/tools/session_context.py
  • autogpt_platform/backend/backend/copilot/tools/setup_agent_webhook_trigger.py
  • autogpt_platform/backend/backend/copilot/tools/setup_agent_webhook_trigger_test.py
  • autogpt_platform/backend/backend/copilot/tools/skills.py
  • autogpt_platform/backend/backend/copilot/tools/sub_session_test.py
  • autogpt_platform/backend/backend/copilot/tools/test_run_mcp_tool.py
  • autogpt_platform/backend/backend/copilot/tools/test_session_dry_run.py
  • autogpt_platform/backend/backend/copilot/tools/tool_schema_test.py
  • autogpt_platform/backend/backend/copilot/tools/update_soul.py
  • autogpt_platform/backend/backend/copilot/tools/utils.py
  • autogpt_platform/backend/backend/copilot/tools/workspace_files.py
  • autogpt_platform/backend/backend/copilot/tools/workspace_files_test.py
  • autogpt_platform/backend/backend/copilot/turn_queue.py
  • autogpt_platform/backend/backend/copilot/turn_queue_test.py
  • autogpt_platform/backend/backend/data/activity_event.py
  • autogpt_platform/backend/backend/data/activity_event_db_test.py
  • autogpt_platform/backend/backend/data/activity_event_test.py
  • autogpt_platform/backend/backend/data/alerts.py
  • autogpt_platform/backend/backend/data/auth/api_key.py
  • autogpt_platform/backend/backend/data/auth/api_key_list_test.py
  • autogpt_platform/backend/backend/data/auth/oauth.py
  • autogpt_platform/backend/backend/data/auth/oauth_replay_integration_test.py
  • autogpt_platform/backend/backend/data/auth/oauth_replay_test.py
  • autogpt_platform/backend/backend/data/briefing_data.py
  • autogpt_platform/backend/backend/data/credit.py
  • autogpt_platform/backend/backend/data/credit_history/enrichment.py
  • autogpt_platform/backend/backend/data/credit_history/enrichment_test.py
  • autogpt_platform/backend/backend/data/credit_history/service.py
  • autogpt_platform/backend/backend/data/credit_history/service_test.py
  • autogpt_platform/backend/backend/data/credit_history/tenancy_db_test.py
  • autogpt_platform/backend/backend/data/db_accessors.py
  • autogpt_platform/backend/backend/data/db_accessors_test.py
  • autogpt_platform/backend/backend/data/db_manager.py
  • autogpt_platform/backend/backend/data/db_manager_test.py
  • autogpt_platform/backend/backend/data/execution.py
  • autogpt_platform/backend/backend/data/execution_cost_summary.py
  • autogpt_platform/backend/backend/data/execution_cost_summary_unit_test.py
  • autogpt_platform/backend/backend/data/execution_org_visibility_test.py
  • autogpt_platform/backend/backend/data/execution_start_test.py
  • autogpt_platform/backend/backend/data/execution_stats_test.py
  • autogpt_platform/backend/backend/data/grants.py
  • autogpt_platform/backend/backend/data/grants_test.py
  • autogpt_platform/backend/backend/data/graph.py
  • autogpt_platform/backend/backend/data/graph_metadata_test.py
  • autogpt_platform/backend/backend/data/graph_permission_scope_test.py
  • autogpt_platform/backend/backend/data/graph_settings_tenancy_test.py
  • autogpt_platform/backend/backend/data/graph_test.py
  • autogpt_platform/backend/backend/data/human_review.py
  • autogpt_platform/backend/backend/data/human_review_test.py
  • autogpt_platform/backend/backend/data/includes.py
  • autogpt_platform/backend/backend/data/integrations.py
  • autogpt_platform/backend/backend/data/marketplace_graph_visibility_test.py
  • autogpt_platform/backend/backend/data/model.py
  • autogpt_platform/backend/backend/data/notifications.py
  • autogpt_platform/backend/backend/data/org_conversion_db_test.py
  • autogpt_platform/backend/backend/data/org_credit.py
  • autogpt_platform/backend/backend/data/org_credit_personal_test.py
  • autogpt_platform/backend/backend/data/org_migration.py
  • autogpt_platform/backend/backend/data/org_migration_test.py
  • autogpt_platform/backend/backend/data/owner_grant_scope_db_test.py
  • autogpt_platform/backend/backend/data/store_migration_db_test.py
  • autogpt_platform/backend/backend/data/subgraph_tenancy_test.py
  • autogpt_platform/backend/backend/data/tenancy.py
  • autogpt_platform/backend/backend/data/tenancy_integration_test.py
  • autogpt_platform/backend/backend/data/tenancy_test.py
  • autogpt_platform/backend/backend/data/user.py
  • autogpt_platform/backend/backend/data/workspace.py
  • autogpt_platform/backend/backend/data/workspace_folder.py
  • autogpt_platform/backend/backend/data/workspace_folder_test.py
  • autogpt_platform/backend/backend/data/workspace_migration.py
  • autogpt_platform/backend/backend/data/workspace_migration_db_test.py
  • autogpt_platform/backend/backend/executor/activity_events.py
  • autogpt_platform/backend/backend/executor/auto_credentials.py
  • autogpt_platform/backend/backend/executor/billing.py
  • autogpt_platform/backend/backend/executor/billing_reconciliation_test.py
  • autogpt_platform/backend/backend/executor/expert_posts.py
  • autogpt_platform/backend/backend/executor/expert_posts_test.py
  • autogpt_platform/backend/backend/executor/manager.py
  • autogpt_platform/backend/backend/executor/manager_activity_status_test.py
  • autogpt_platform/backend/backend/executor/manager_auto_credentials_test.py
  • autogpt_platform/backend/backend/executor/manager_credential_lease_test.py
  • autogpt_platform/backend/backend/executor/manager_insufficient_funds_test.py
  • autogpt_platform/backend/backend/executor/manager_tenancy_test.py
  • autogpt_platform/backend/backend/executor/manager_test.py
  • autogpt_platform/backend/backend/executor/scheduler.py
  • autogpt_platform/backend/backend/executor/scheduler_test.py
  • autogpt_platform/backend/backend/executor/scheduler_unit_test.py
  • autogpt_platform/backend/backend/executor/utils.py
  • autogpt_platform/backend/backend/executor/utils_credentials_owner_test.py
  • autogpt_platform/backend/backend/executor/utils_test.py
  • autogpt_platform/backend/backend/integrations/ayrshare.py
  • autogpt_platform/backend/backend/integrations/ayrshare_test.py
  • autogpt_platform/backend/backend/integrations/credential_lease.py
  • autogpt_platform/backend/backend/integrations/credential_lease_test.py
  • autogpt_platform/backend/backend/integrations/creds_manager.py
  • autogpt_platform/backend/backend/integrations/mcp_credentials.py
  • autogpt_platform/backend/backend/integrations/scoped_credentials.py
  • autogpt_platform/backend/backend/integrations/scoped_credentials_test.py
  • autogpt_platform/backend/backend/integrations/webhooks/_base.py
  • autogpt_platform/backend/backend/integrations/webhooks/graph_lifecycle_hooks.py
  • autogpt_platform/backend/backend/integrations/webhooks/tenancy_test.py
  • autogpt_platform/backend/backend/integrations/webhooks/utils.py
  • autogpt_platform/backend/backend/notifications/alert_source_race_test.py
  • autogpt_platform/backend/backend/notifications/alerts.py
  • autogpt_platform/backend/backend/notifications/alerts_security_test.py
  • autogpt_platform/backend/backend/notifications/alerts_test.py
  • autogpt_platform/backend/backend/notifications/boundary_test.py
  • autogpt_platform/backend/backend/notifications/briefing.py
  • autogpt_platform/backend/backend/notifications/briefing_runner.py
  • autogpt_platform/backend/backend/notifications/briefing_runner_test.py
  • autogpt_platform/backend/backend/notifications/briefing_test.py
  • autogpt_platform/backend/backend/notifications/conftest.py
  • autogpt_platform/backend/backend/notifications/daily_cap_test.py
  • autogpt_platform/backend/backend/notifications/dedupe.py
  • autogpt_platform/backend/backend/notifications/email.py
  • autogpt_platform/backend/backend/notifications/email_test.py
  • autogpt_platform/backend/backend/notifications/notifications.py
  • autogpt_platform/backend/backend/notifications/review_alerts.py
  • autogpt_platform/backend/backend/notifications/review_alerts_test.py
  • autogpt_platform/backend/backend/notifications/tenancy.py
  • autogpt_platform/backend/backend/notifications/tenancy_guard_test.py
  • autogpt_platform/backend/backend/notifications/verdict_tenancy_test.py
  • autogpt_platform/backend/backend/platform_linking/chat.py
  • autogpt_platform/backend/backend/platform_linking/chat_test.py
  • autogpt_platform/backend/backend/platform_linking/db.py
  • autogpt_platform/backend/backend/platform_linking/db_test.py
  • autogpt_platform/backend/backend/platform_linking/manager.py
  • autogpt_platform/backend/backend/util/background.py
  • autogpt_platform/backend/backend/util/background_test.py
  • autogpt_platform/backend/backend/util/feature_flag.py
  • autogpt_platform/backend/backend/util/file.py
  • autogpt_platform/backend/backend/util/settings.py
  • autogpt_platform/backend/backend/util/tenancy_urls.py
  • autogpt_platform/backend/backend/util/tenancy_urls_test.py
  • autogpt_platform/backend/backend/util/test.py
  • autogpt_platform/backend/backend/util/workspace.py
  • autogpt_platform/backend/backend/util/workspace_test.py
  • autogpt_platform/backend/migrations/20260717151612_agent_graph_grants/migration.sql
  • autogpt_platform/backend/migrations/20260826120000_org_single_owner/migration.sql
  • autogpt_platform/backend/migrations/20260826180000_scope_workspace_artifacts/migration.sql
  • autogpt_platform/backend/migrations/20260826210000_scope_execution_notifications/migration.sql
  • autogpt_platform/backend/migrations/20260827120000_share_tenancy_validation_locks/migration.sql
  • autogpt_platform/backend/migrations/20260827130000_schema_safe_trigger_search_paths/migration.sql
  • autogpt_platform/backend/migrations/20260827140000_harden_tenant_owner_trigger/migration.sql
  • autogpt_platform/backend/migrations/20260827150000_store_submission_exact_scope/migration.sql
  • autogpt_platform/backend/migrations/20260827160000_scope_builder_search_history/migration.sql
  • autogpt_platform/backend/migrations/20260827170000_store_creator_live_visibility/migration.sql
  • autogpt_platform/backend/migrations/20260827180000_assert_tenant_integrity/migration.sql
  • autogpt_platform/backend/migrations/20260907170000_activity_event_team_scope/migration.sql
  • autogpt_platform/backend/migrations/20260907180000_workspace_personal_bootstrap_scope/migration.sql
  • autogpt_platform/backend/schema.prisma
  • autogpt_platform/backend/snapshots/expert_pod_assign
  • autogpt_platform/backend/snapshots/expert_raise_attachment_installation_failure
  • autogpt_platform/backend/snapshots/expert_raise_attachments
  • autogpt_platform/backend/snapshots/expert_raise_default
  • autogpt_platform/backend/snapshots/expert_runs_list
  • autogpt_platform/backend/snapshots/expert_soul_update
  • autogpt_platform/backend/snapshots/expert_templates_list
  • autogpt_platform/backend/snapshots/invitation_resend_response
  • autogpt_platform/backend/snapshots/lib_agts_search
  • autogpt_platform/backend/snapshots/sub_success
  • autogpt_platform/backend/test/agent_generator/test_library_agents.py
  • autogpt_platform/backend/test/test_migrate_webhook_presets.py
  • autogpt_platform/frontend/CONTRIBUTING.md
  • autogpt_platform/frontend/src/app/(platform)/admin/marketplace/preview/[id]/page.tsx
  • autogpt_platform/frontend/src/app/(platform)/admin/memory/components/useMemoryScope.ts
  • autogpt_platform/frontend/src/app/(platform)/artifacts/__tests__/folders.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/__tests__/main.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/ArtifactsList/ArtifactCard/ArtifactCard.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/ArtifactsList/ArtifactCard/MediaPreview.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/ArtifactsList/ArtifactCard/PreviewParts.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/ArtifactsList/ArtifactCard/StructuredPreviews.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/ArtifactsList/ArtifactCard/TextPreviews.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/ArtifactsList/ArtifactsList.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/ArtifactsList/ArtifactsTable/ArtifactsTable.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/ArtifactsList/ArtifactsTable/FileRow.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/ArtifactsList/ArtifactsTable/FileThumbnail.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/ArtifactsList/ArtifactsTable/FolderRow.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/ArtifactsList/ArtifactsTable/FolderRows.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/ArtifactsList/FileActionsMenu.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/ArtifactsList/helpers.test.ts
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/ArtifactsList/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/ArtifactsList/useFileActionsMenu.ts
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/ArtifactsSearchBar/ArtifactsSearchBar.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/FileViewerModal/FileViewerModal.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/MoveToFolderDialog/MoveToFolderDialog.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/NewMenu/NewMenu.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/NewMenu/helpers.test.ts
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/NewMenu/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/NewMenu/useNewMenu.ts
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/StorageUsage/StorageUsage.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/WorkspaceFolders/FolderDialogs.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/WorkspaceFolders/WorkspaceFolder.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/WorkspaceFolders/WorkspaceFolders.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/WorkspaceFolders/drag.ts
  • autogpt_platform/frontend/src/app/(platform)/artifacts/components/WorkspaceFolders/useFileDrag.ts
  • autogpt_platform/frontend/src/app/(platform)/artifacts/page.tsx
  • autogpt_platform/frontend/src/app/(platform)/artifacts/useArtifactsFolders.ts
  • autogpt_platform/frontend/src/app/(platform)/artifacts/useArtifactsPage.ts
  • autogpt_platform/frontend/src/app/(platform)/build/__tests__/NewSaveControl.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/__tests__/useDuplicateGraph.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/__tests__/useFlow.test.ts
  • autogpt_platform/frontend/src/app/(platform)/build/__tests__/useIsReadOnlyGraph.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/__tests__/useSaveGraph.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/BuilderActions/components/AgentOutputs/AgentOutputs.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/BuilderActions/components/CronSchedulerDialog/CronSchedulerDialog.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/BuilderActions/components/CronSchedulerDialog/useCronSchedulerDialog.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/BuilderActions/components/CronSchedulerDialog/useCronSchedulerDialog.ts
  • autogpt_platform/frontend/src/app/(platform)/build/components/BuilderActions/components/PublishToMarketplace/PublishToMarketplace.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/BuilderActions/components/RunGraph/useRunGraph.ts
  • autogpt_platform/frontend/src/app/(platform)/build/components/BuilderActions/components/RunInputDialog/RunInputDialog.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/BuilderActions/components/RunInputDialog/useRunInputDialog.ts
  • autogpt_platform/frontend/src/app/(platform)/build/components/BuilderChatPanel/BuilderChatPanel.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/BuilderChatPanel/useBuilderChatPanel.ts
  • autogpt_platform/frontend/src/app/(platform)/build/components/FlowEditor/Flow/Flow.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/FlowEditor/Flow/__tests__/CustomControl.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/FlowEditor/Flow/__tests__/Flow.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/FlowEditor/Flow/components/CustomControl.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/FlowEditor/Flow/components/TriggerAgentBanner.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/FlowEditor/Flow/useFlow.ts
  • autogpt_platform/frontend/src/app/(platform)/build/components/FlowEditor/nodes/CustomNode/components/NodeContextMenu.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/FlowEditor/nodes/CustomNode/components/NodeOutput/components/NodeDataViewer/useNodeDataViewer.ts
  • autogpt_platform/frontend/src/app/(platform)/build/components/FlowEditor/nodes/CustomNode/components/NodeOutput/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/build/components/FlowEditor/nodes/CustomNode/components/NodeRightClickMenu.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/FlowEditor/nodes/CustomNode/components/WebhookDisclaimer.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/FlowEditor/nodes/FormCreator.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/NewControlPanel/NewBlockMenu/BlockMenuSearchBar/useBlockMenuSearchBar.ts
  • autogpt_platform/frontend/src/app/(platform)/build/components/NewControlPanel/NewBlockMenu/BlockMenuSearchContent/useBlockMenuSearchContent.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/NewControlPanel/NewBlockMenu/BlockMenuSidebar/useBlockMenuSidebar.ts
  • autogpt_platform/frontend/src/app/(platform)/build/components/NewControlPanel/NewBlockMenu/MarketplaceAgentBlock.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/NewControlPanel/NewBlockMenu/MarketplaceAgentsContent/useMarketplaceAgentsContent.ts
  • autogpt_platform/frontend/src/app/(platform)/build/components/NewControlPanel/NewBlockMenu/MyAgentsContent/useMyAgentsContent.ts
  • autogpt_platform/frontend/src/app/(platform)/build/components/NewControlPanel/NewBlockMenu/SuggestionContent/useSuggestionContent.ts
  • autogpt_platform/frontend/src/app/(platform)/build/components/NewControlPanel/NewBlockMenu/UGCAgentBlock.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/NewControlPanel/NewSaveControl/NewSaveControl.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/NewControlPanel/NewSaveControl/useNewSaveControl.ts
  • autogpt_platform/frontend/src/app/(platform)/build/components/ReadOnlyBanner/ReadOnlyBanner.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/ReadOnlyBanner/__tests__/ReadOnlyBanner.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/ReadOnlyBanner/__tests__/main.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/components/legacy-builder/agent-run-draft-view.tsx
  • autogpt_platform/frontend/src/app/(platform)/build/hooks/useBuilderTenantScope.ts
  • autogpt_platform/frontend/src/app/(platform)/build/hooks/useDuplicateGraph.ts
  • autogpt_platform/frontend/src/app/(platform)/build/hooks/useIsReadOnlyGraph.ts
  • autogpt_platform/frontend/src/app/(platform)/build/hooks/useSaveGraph.ts
  • autogpt_platform/frontend/src/app/(platform)/build/hooks/useSubAgentUpdate/useSubAgentUpdate.ts
  • autogpt_platform/frontend/src/app/(platform)/components/GlobalSearchModal/__tests__/selectSearchResult.test.ts
  • autogpt_platform/frontend/src/app/(platform)/components/GlobalSearchModal/selectSearchResult.ts
  • autogpt_platform/frontend/src/app/(platform)/components/GlobalSearchModal/useGlobalSearch.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/CopilotChatHost.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/CopilotTenantScopeContext.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/__tests__/copilotStreamTransport.test.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/__tests__/expert-kickoff.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/__tests__/helpers.test.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/__tests__/store.test.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/__tests__/useSendMessage.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ArtifactPanel/artifactRequest.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ArtifactPanel/components/ArtifactContent.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ArtifactPanel/components/ExpertArtifactContent.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ArtifactPanel/components/__tests__/ExpertArtifactContent.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ArtifactPanel/components/useArtifactContent.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ArtifactPanel/downloadArtifact.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ArtifactPanel/useArtifactPanel.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ChatContainer/ChatContainer.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ChatContainer/__tests__/ChatContainer.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ChatContainer/__tests__/archived-expert.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ChatContainer/__tests__/fail-closed-expert.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ChatInput/components/WorkspaceFilePicker/useWorkspaceFilePicker.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ChatMessagesContainer/ChatMessagesContainer.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ChatMessagesContainer/components/MessageAttachments.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ChatMessagesContainer/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ChatSidebar/ChatSidebar.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ContextPanel/__tests__/ArtifactsTab.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ContextPanel/__tests__/ContextPanelAutoOpen.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ContextPanel/components/FilesTab/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ContextPanel/components/FilesTab/useSessionFiles.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/CopilotHome/__tests__/flag-off.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/CopilotHome/__tests__/main.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/CopilotHome/useCopilotHome.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/CopilotPendingReviews/CopilotPendingReviews.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/EmptySession/EmptySession.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ToolChain/AgentCards.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ToolChain/ExpertCards.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ToolChain/SubSessionLive.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ToolChain/ToolResult.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ToolChain/__tests__/AgentCards.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ToolChain/__tests__/SubSessionLive.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/ToolChain/__tests__/ToolResult.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/UsageLimits/useWorkspaceStorage.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/WorkCard/WorkCard.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/WorkCard/__tests__/WorkCard.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/WorkCard/__tests__/helpers.test.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/WorkCard/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/WorkspaceFileCards/__tests__/WorkspaceFileCards.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/WorkspaceFileCards/helpers.test.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/WorkspaceFileCards/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/WorkspaceFileCards/useSessionActivity.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/components/WorkspaceFileCards/useWorkspaceFileCards.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/copilotChatRegistry.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/copilotStreamTransport.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/helpers/__tests__/exportChatAsMarkdown.test.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/helpers/exportChatAsMarkdown.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/helpers/queueFollowUpMessage.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/sharing/ShareChatDialog.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/sharing/__tests__/ShareChatDialog.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/sharing/useShareChatDialog.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/store.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/tools/FindAgents/FindAgents.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/tools/FindAgents/helpers.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/tools/RunAgent/components/ExecutionStartedCard/ExecutionStartedCard.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/tools/RunBlock/components/BlockOutputCard/BlockOutputCard.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/tools/ViewAgentOutput/ViewAgentOutput.tsx
  • autogpt_platform/frontend/src/app/(platform)/copilot/useChatSession.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/useCopilotPage.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/useCopilotPendingChips.test.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/useCopilotPendingChips.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/useCopilotStop.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/useCopilotStream.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/useLoadMoreMessages.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/useSendMessage.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/useSessionDeletion.ts
  • autogpt_platform/frontend/src/app/(platform)/copilot/useSessionList.ts
  • autogpt_platform/frontend/src/app/(platform)/home/__tests__/main.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/home/components/NeedsYou/useAttentionDecisions.ts
  • autogpt_platform/frontend/src/app/(platform)/home/useHomePage.ts
  • autogpt_platform/frontend/src/app/(platform)/library/__tests__/main.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/NewAgentLibraryView.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/modals/RunAgentInputs/RunAgentInputs.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/modals/RunAgentInputs/useRunAgentInputs.test.ts
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/modals/RunAgentInputs/useRunAgentInputs.ts
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/modals/RunAgentModal/components/ModalRunSection/ModalRunSection.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/modals/RunAgentModal/errorHelpers.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/modals/RunAgentModal/helpers.test.ts
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/modals/RunAgentModal/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/modals/RunAgentModal/useAgentRunModal.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/modals/ScheduleAgentModal/ScheduleAgentModal.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/modals/ScheduleAgentModal/useScheduleAgentModal.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/modals/ScheduleAgentModal/useScheduleAgentModal.ts
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/other/EmptyTasks.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/AgentActionsDropdown.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/RunDetailHeader/useScheduleDetailHeader.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/RunDetailHeader/useScheduleDetailHeader.ts
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedRunView/SelectedRunView.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedRunView/components/RunOutputs.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedRunView/components/SelectedRunActions/SelectedRunActions.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedRunView/components/SelectedRunActions/useSelectedRunActions.ts
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedRunView/useSelectedRunView.ts
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedScheduleView/SelectedScheduleView.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedScheduleView/components/DeleteScheduleButton/DeleteScheduleButton.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedScheduleView/components/EditScheduleModal/useEditScheduleModal.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedScheduleView/components/EditScheduleModal/useEditScheduleModal.ts
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedScheduleView/components/SelectedScheduleActions/SelectedScheduleActions.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedScheduleView/components/SelectedScheduleActions/SelectedScheduleActions.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedScheduleView/components/SelectedScheduleActions/useSelectedScheduleActions.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedScheduleView/components/SelectedScheduleActions/useSelectedScheduleActions.ts
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedScheduleView/useSelectedScheduleView.ts
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedTemplateView/SelectedTemplateView.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedTemplateView/components/SelectedTemplateActions.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedTemplateView/useSelectedTemplateView.ts
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedTriggerAgentView/SelectedTriggerAgentActions.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedTriggerAgentView/SelectedTriggerAgentView.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedTriggerView/SelectedTriggerView.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedTriggerView/components/SelectedTriggerActions.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedTriggerView/useSelectedTriggerView.ts
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/SelectedViewLayout.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/ShareRunButton/ShareRunButton.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/selected-views/ShareRunButton/useShareRunButton.ts
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/sidebar/SidebarRunsList/components/ScheduleActionsDropdown.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/sidebar/SidebarRunsList/components/ScheduleListItem.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/sidebar/SidebarRunsList/components/ScheduleListItem.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/sidebar/SidebarRunsList/components/SidebarItemCard.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/sidebar/SidebarRunsList/components/TaskActionsDropdown.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/sidebar/SidebarRunsList/components/TaskListItem.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/sidebar/SidebarRunsList/components/TemplateActionsDropdown.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/sidebar/SidebarRunsList/components/TriggerActionsDropdown.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/sidebar/SidebarRunsList/components/TriggerAgentActionsDropdown.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/components/sidebar/SidebarRunsList/useSidebarRunsList.ts
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/hooks/useAgentPresetsQuery.ts
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/hooks/useMarketplaceUpdate.ts
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/hooks/useRemoveTriggerAgent.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/agents/[id]/components/NewAgentLibraryView/useNewAgentLibraryView.ts
  • autogpt_platform/frontend/src/app/(platform)/library/components/AgentBriefingPanel/components/BriefingTabContent/components/AgentListSection.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/AgentBriefingPanel/components/CostsBreakdown/__tests__/helpers.test.ts
  • autogpt_platform/frontend/src/app/(platform)/library/components/AgentBriefingPanel/components/CostsBreakdown/components/SpendByAgentList.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/AgentBriefingPanel/components/CostsBreakdown/components/TopRunsList.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/AgentBriefingPanel/components/CostsBreakdown/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/library/components/AgentBriefingPanel/components/CostsBreakdown/useCostsBreakdown.ts
  • autogpt_platform/frontend/src/app/(platform)/library/components/ContextualActionButton/ContextualActionButton.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/LibraryAgentCard/LibraryAgentCard.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/LibraryAgentCard/components/AgentCardMenu.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/LibraryAgentCard/useLibraryAgentCard.ts
  • autogpt_platform/frontend/src/app/(platform)/library/components/LibraryAgentList/LibraryAgentList.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/LibraryAgentList/useLibraryAgentList.ts
  • autogpt_platform/frontend/src/app/(platform)/library/components/LibraryFolderCreationDialog/LibraryFolderCreationDialog.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/LibraryFolderDeleteDialog/LibraryFolderDeleteDialog.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/LibraryFolderEditDialog/LibraryFolderEditDialog.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/LibraryImportDialog/components/AgentUploadTab/AgentUploadTab.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/LibraryImportDialog/components/ExternalWorkflowTab/__tests__/useExternalWorkflowTab.test.ts
  • autogpt_platform/frontend/src/app/(platform)/library/components/LibraryImportDialog/components/ExternalWorkflowTab/useExternalWorkflowTab.ts
  • autogpt_platform/frontend/src/app/(platform)/library/components/LibraryUploadAgentDialog/LibraryUploadAgentDialog.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/LibraryUploadAgentDialog/useLibraryUploadAgentDialog.ts
  • autogpt_platform/frontend/src/app/(platform)/library/components/MoveToFolderDialog/MoveToFolderDialog.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/ShareAgentDialog/ShareAgentDialog.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/ShareAgentDialog/ShareAgentDialog.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/ShareAgentDialog/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/library/components/ShareAgentDialog/useShareAgentDialog.ts
  • autogpt_platform/frontend/src/app/(platform)/library/components/SharedWithTeamsSection/SharedWithTeamsSection.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/SharedWithTeamsSection/SharedWithTeamsSection.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/SharedWithTeamsSection/useSharedWithTeamsSection.ts
  • autogpt_platform/frontend/src/app/(platform)/library/components/SitrepItem/SitrepItem.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/components/SitrepItem/__tests__/helpers.test.ts
  • autogpt_platform/frontend/src/app/(platform)/library/components/SitrepItem/__tests__/useSitrepItems.test.ts
  • autogpt_platform/frontend/src/app/(platform)/library/components/SitrepItem/useSitrepItems.ts
  • autogpt_platform/frontend/src/app/(platform)/library/followups/__tests__/main.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/hooks/useAgentStatus.ts
  • autogpt_platform/frontend/src/app/(platform)/library/hooks/useFavoriteAgents.ts
  • autogpt_platform/frontend/src/app/(platform)/library/hooks/useLibraryFleetSummary.ts
  • autogpt_platform/frontend/src/app/(platform)/library/page.tsx
  • autogpt_platform/frontend/src/app/(platform)/library/types.ts
  • autogpt_platform/frontend/src/app/(platform)/marketplace/__tests__/experts-section.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/marketplace/components/AddToLibraryButton/AddToLibraryButton.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/marketplace/components/AddToLibraryButton/AddToLibraryButton.tsx
  • autogpt_platform/frontend/src/app/(platform)/marketplace/components/AgentImageItem/AgentImageItem.tsx
  • autogpt_platform/frontend/src/app/(platform)/marketplace/components/AgentInfo/AgentInfo.tsx
  • autogpt_platform/frontend/src/app/(platform)/marketplace/components/AgentInfo/useAgentInfo.ts
  • autogpt_platform/frontend/src/app/(platform)/marketplace/components/ExpertsSection/useExpertsSection.ts
  • autogpt_platform/frontend/src/app/(platform)/marketplace/components/FeaturedAgentCard/FeaturedAgentCard.tsx
  • autogpt_platform/frontend/src/app/(platform)/marketplace/components/InstallOnExpertButton/useInstallOnExpertButton.ts
  • autogpt_platform/frontend/src/app/(platform)/marketplace/components/MainAgentPage/MainAgentPage.tsx
  • autogpt_platform/frontend/src/app/(platform)/marketplace/components/MainAgentPage/__tests__/main.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/marketplace/components/MainAgentPage/useMainAgentPage.ts
  • autogpt_platform/frontend/src/app/(platform)/marketplace/components/StoreCard/StoreCard.tsx
  • autogpt_platform/frontend/src/app/(platform)/profile/(user)/api-keys/components/APIKeySection/useAPISection.ts
  • autogpt_platform/frontend/src/app/(platform)/profile/(user)/dashboard/components/AgentTable/AgentTable.tsx
  • autogpt_platform/frontend/src/app/(platform)/profile/(user)/dashboard/components/AgentTableCard/AgentTableCard.tsx
  • autogpt_platform/frontend/src/app/(platform)/profile/(user)/dashboard/components/AgentTableRow/AgentTableRow.tsx
  • autogpt_platform/frontend/src/app/(platform)/profile/(user)/dashboard/components/AgentTableRow/__tests__/AgentTableRow.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/profile/(user)/dashboard/components/AgentTableRow/useAgentTableRow.ts
  • autogpt_platform/frontend/src/app/(platform)/profile/(user)/dashboard/components/MainDashboardPage/useMainDashboardPage.ts
  • autogpt_platform/frontend/src/app/(platform)/raise/__tests__/main.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/raise/components/KitStep/useKitSearch.ts
  • autogpt_platform/frontend/src/app/(platform)/raise/page.tsx
  • autogpt_platform/frontend/src/app/(platform)/raise/useRaiseSubmission.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/__tests__/SettingsSidebar.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/api-keys/__tests__/create.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/api-keys/components/APIKeyList/APIKeyList.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/api-keys/components/APIKeyList/__tests__/main.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/api-keys/components/APIKeyList/useAPIKeyListView.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/api-keys/components/APIKeyRow/APIKeyRow.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/api-keys/components/CreateAPIKeyDialog/CreateAPIKeyDialog.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/api-keys/components/CreateAPIKeyDialog/__tests__/main.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/api-keys/components/CreateAPIKeyDialog/components/CreateAPIKeyForm.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/api-keys/components/CreateAPIKeyDialog/useCreateAPIKeyForm.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/api-keys/components/DeleteAPIKeyDialog/DeleteAPIKeyDialog.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/api-keys/components/hooks/useAPIKeysList.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/api-keys/components/hooks/useCreateAPIKey.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/api-keys/components/hooks/useRevokeAPIKey.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/billing/components/AutomationCreditsTab/TransactionHistoryCard/__tests__/activity-types.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/billing/components/AutomationCreditsTab/TransactionHistoryCard/__tests__/fixtures.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/billing/components/AutomationCreditsTab/TransactionHistoryCard/__tests__/transaction-history.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/billing/components/AutomationCreditsTab/TransactionHistoryCard/components/ReceiptMetadata.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/billing/components/AutomationCreditsTab/TransactionHistoryCard/components/ReceiptRelations.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/billing/components/AutomationCreditsTab/TransactionHistoryCard/components/TransactionRow.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/billing/components/AutomationCreditsTab/TransactionHistoryCard/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/components/SettingsSidebar/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/components/SettingsSidebar/useSettingsSidebar.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/creator-dashboard/__tests__/helpers.test.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/creator-dashboard/components/MobileSubmissionItem/MobileSubmissionItem.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/creator-dashboard/components/MobileSubmissionsList/MobileSubmissionsList.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/creator-dashboard/components/SubmissionItem/SubmissionItem.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/creator-dashboard/components/SubmissionItem/useSubmissionItem.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/creator-dashboard/components/SubmissionsList/SubmissionsList.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/creator-dashboard/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/creator-dashboard/useCreatorDashboardPage.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/memory/__tests__/main.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/memory/page.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/memory/useMemoryPage.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/__tests__/page.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/__tests__/teams.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/DangerZoneSection/DangerZoneSection.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/DangerZoneSection/useDangerZoneSection.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/InvitationsSection/InvitationsSection.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/InvitationsSection/InvitationsSection.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/InvitationsSection/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/InvitationsSection/useInvitationsSection.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/MembersSection/MembersSection.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/MembersSection/useMembersSection.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/MyInvitationsSection/MyInvitationsSection.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/MyInvitationsSection/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/MyInvitationsSection/useMyInvitationsSection.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/OrgProfileSection/OrgProfileSection.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/OrgProfileSection/components/OrgAvatarControl/OrgAvatarControl.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/OrgProfileSection/components/OrgAvatarControl/OrgAvatarControl.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/OrgProfileSection/components/OrgAvatarControl/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/OrgProfileSection/components/OrgAvatarControl/useOrgAvatarControl.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/OrgProfileSection/useOrgProfileSection.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/OrgRoleSelect/OrgRoleSelect.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/OrgRoleSelect/roleAccess.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/SharedMemorySection/SharedMemorySection.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/SharedMemorySection/SharedMemorySection.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/SharedMemorySection/components/ActiveMemoryList/ActiveMemoryList.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/SharedMemorySection/components/ActiveMemoryList/useActiveMemoryList.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/SharedMemorySection/components/HeldMemoryReviewQueue/HeldMemoryReviewQueue.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/SharedMemorySection/components/HeldMemoryReviewQueue/HeldMemoryReviewQueue.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/SharedMemorySection/components/HeldMemoryReviewQueue/useHeldMemoryReviewQueue.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/SharedMemorySection/useSharedMemorySection.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/TeamSpendSection/TeamSpendSection.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/TeamSpendSection/TeamSpendSection.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/TeamSpendSection/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/TeamSpendSection/useTeamSpendSection.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/TeamsSection/TeamsSection.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/TeamsSection/components/CreateTeamDialog/CreateTeamDialog.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/TeamsSection/components/CreateTeamDialog/schema.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/TeamsSection/components/CreateTeamDialog/useCreateTeamDialog.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/TeamsSection/components/TeamManagePanel/TeamManagePanel.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/TeamsSection/components/TeamManagePanel/TeamProfileForm.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/TeamsSection/components/TeamManagePanel/useTeamManagePanel.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/TeamsSection/components/TeamManagePanel/useTeamProfileForm.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/TeamsSection/components/TeamMembersPreview/TeamMembersPreview.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/TeamsSection/components/TeamMembersPreview/useTeamMembersPreview.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/components/TeamsSection/useTeamsSection.ts
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/page.tsx
  • autogpt_platform/frontend/src/app/(platform)/settings/organization/useOrganizationSettingsPage.ts
  • autogpt_platform/frontend/src/app/(platform)/team/[expertId]/__tests__/main.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/team/[expertId]/components/ExpertWorkSection/ExpertWorkSection.tsx
  • autogpt_platform/frontend/src/app/(platform)/team/__tests__/main.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/team/autopilot/useAutopilotPage.ts
  • autogpt_platform/frontend/src/app/(platform)/team/components/ExpertChatDrawer/ExpertChatDrawer.tsx
  • autogpt_platform/frontend/src/app/(platform)/team/components/ExpertChatDrawer/__tests__/tenant-scope.test.tsx
  • autogpt_platform/frontend/src/app/(platform)/team/components/ExpertChatDrawer/helpers.ts
  • autogpt_platform/frontend/src/app/(platform)/team/components/ExpertChatDrawer/useExpertChatDrawer.ts
  • autogpt_platform/frontend/src/app/(platform)/team/page.tsx
  • autogpt_platform/frontend/src/app/(platform)/team/useTeamPage.ts
  • autogpt_platform/frontend/src/app/api/mutators/__tests__/custom-mutator.test.ts
  • autogpt_platform/frontend/src/app/api/mutators/custom-mutator.ts
  • autogpt_platform/frontend/src/app/api/openapi.json
  • autogpt_platform/frontend/src/app/api/proxy/[...path]/__tests__/route.test.ts
  • autogpt_platform/frontend/src/app/api/proxy/[...path]/route.helpers.ts
  • autogpt_platform/frontend/src/app/api/proxy/[...path]/route.ts
  • autogpt_platform/frontend/src/app/api/workspace/files/[fileId]/download/route.ts
  • autogpt_platform/frontend/src/app/api/workspace/files/upload/route.ts
  • autogpt_platform/frontend/src/components/atoms/FileInput/FileInput.tsx
  • autogpt_platform/frontend/src/components/atoms/SplitButton/SplitButton.stories.tsx
  • autogpt_platform/frontend/src/components/atoms/SplitButton/SplitButton.tsx
  • autogpt_platform/frontend/src/components/contextual/CreateOrgDialog/CreateOrgDialog.tsx
  • autogpt_platform/frontend/src/components/contextual/CreateOrgDialog/__tests__/schema.test.ts
  • autogpt_platform/frontend/src/components/contextual/CreateOrgDialog/schema.ts
  • autogpt_platform/frontend/src/components/contextual/CreateOrgDialog/useCreateOrgDialog.ts
  • autogpt_platform/frontend/src/components/contextual/EditAgentModal/EditAgentModal.tsx
  • autogpt_platform/frontend/src/components/contextual/EditAgentModal/__tests__/EditAgentModal.test.tsx
  • autogpt_platform/frontend/src/components/contextual/EditAgentModal/components/EditAgentForm.tsx
  • autogpt_platform/frontend/src/components/contextual/EditAgentModal/components/useEditAgentForm.ts
  • autogpt_platform/frontend/src/components/contextual/OutputRenderers/renderers/WorkspaceFileRenderer.tsx
  • autogpt_platform/frontend/src/components/contextual/OutputRenderers/types.ts
  • autogpt_platform/frontend/src/components/contextual/PersonalExpertWorkspaceNotice/PersonalExpertWorkspaceNotice.tsx
  • autogpt_platform/frontend/src/components/contextual/PublishAgentModal/PublishAgentModal.tsx
  • autogpt_platform/frontend/src/components/contextual/PublishAgentModal/components/AgentInfoStep/AgentInfoStep.tsx
  • autogpt_platform/frontend/src/components/contextual/PublishAgentModal/components/AgentInfoStep/components/ThumbnailImages.tsx
  • autogpt_platform/frontend/src/components/contextual/PublishAgentModal/components/AgentInfoStep/components/useThumbnailImages.ts
  • autogpt_platform/frontend/src/components/contextual/PublishAgentModal/components/AgentInfoStep/useAgentInfoStep.ts
  • autogpt_platform/frontend/src/components/contextual/PublishAgentModal/components/AgentSelectStep/AgentSelectStep.tsx
  • autogpt_platform/frontend/src/components/contextual/PublishAgentModal/components/AgentSelectStep/__tests__/AgentSelectStep.test.tsx
  • autogpt_platform/frontend/src/components/contextual/PublishAgentModal/components/AgentSelectStep/__tests__/useAgentSelectStep.test.tsx
  • autogpt_platform/frontend/src/components/contextual/PublishAgentModal/components/AgentSelectStep/useAgentSelectStep.ts
  • autogpt_platform/frontend/src/components/contextual/PublishAgentModal/components/SubmissionSummaryCard.tsx
  • autogpt_platform/frontend/src/components/contextual/PublishAgentModal/usePublishAgentModal.ts
  • autogpt_platform/frontend/src/components/contextual/RunAgentInputs/RunAgentInputs.tsx
  • autogpt_platform/frontend/src/components/contextual/RunAgentInputs/useRunAgentInputs.ts
  • autogpt_platform/frontend/src/components/contextual/SchedulesPanel/SchedulesPanel.tsx
  • autogpt_platform/frontend/src/components/contextual/SchedulesPanel/components/FollowupListItem/FollowupListItem.tsx
  • autogpt_platform/frontend/src/components/contextual/SchedulesPanel/components/FollowupListItem/helpers.ts
  • autogpt_platform/frontend/src/components/contextual/SchedulesPanel/components/FollowupListItem/useFollowupListItem.ts
  • autogpt_platform/frontend/src/components/contextual/SchedulesPanel/components/GraphScheduleListItem/GraphScheduleListItem.tsx
  • autogpt_platform/frontend/src/components/contextual/SchedulesPanel/components/GraphScheduleListItem/useGraphScheduleListItem.ts
  • autogpt_platform/frontend/src/components/contextual/SchedulesPanel/useSchedulesPanel.ts
  • autogpt_platform/frontend/src/components/contextual/TeamBadge/TeamBadge.tsx
  • autogpt_platform/frontend/src/components/contextual/TeamBadge/__tests__/main.test.tsx
  • autogpt_platform/frontend/src/components/contextual/TeamPicker/TeamPicker.tsx
  • autogpt_platform/frontend/src/components/contextual/TeamPicker/__tests__/main.test.tsx
  • autogpt_platform/frontend/src/components/contextual/TeamPicker/helpers.test.ts
  • autogpt_platform/frontend/src/components/contextual/TeamPicker/helpers.ts
  • autogpt_platform/frontend/src/components/contextual/TeamPicker/useCreateTeamSelection.ts
  • autogpt_platform/frontend/src/components/contextual/TeamPicker/useTeamPicker.ts
  • autogpt_platform/frontend/src/components/layout/AppSidebar/components/RecentChats/RecentChats.tsx
  • autogpt_platform/frontend/src/components/layout/AppSidebar/components/RecentChats/__tests__/useRecentChats.test.tsx
  • autogpt_platform/frontend/src/components/layout/AppSidebar/components/RecentChats/components/RecentChatItem/RecentChatItem.tsx
  • autogpt_platform/frontend/src/components/layout/AppSidebar/components/RecentChats/components/RecentChatItem/__tests__/RecentChatItem.test.tsx
  • autogpt_platform/frontend/src/components/layout/AppSidebar/components/RecentChats/useRecentChats.ts
  • autogpt_platform/frontend/src/components/layout/Navbar/components/AccountMenu/components/AccountMenuHeader.tsx
  • autogpt_platform/frontend/src/components/layout/Navbar/components/AccountMenu/components/AccountMenuOrgList.tsx
  • autogpt_platform/frontend/src/components/layout/Navbar/components/AccountMenu/components/__tests__/AccountMenuOrgList.test.tsx
  • autogpt_platform/frontend/src/components/layout/Navbar/components/AgentActivityDropdown/components/ActivityItem.tsx
  • autogpt_platform/frontend/src/components/layout/Navbar/components/AgentActivityDropdown/helpers.tsx
  • autogpt_platform/frontend/src/components/layout/Navbar/components/AgentActivityDropdown/useAgentActivityDropdown.ts
  • autogpt_platform/frontend/src/components/layout/Navbar/components/OrgTeamSwitcher/OrgTeamSwitcher.tsx
  • autogpt_platform/frontend/src/components/layout/Navbar/components/OrgTeamSwitcher/__tests__/OrgTeamSwitcher.test.tsx
  • autogpt_platform/frontend/src/components/layout/Navbar/components/OrgTeamSwitcher/useOrgTeamSwitcher.ts
  • autogpt_platform/frontend/src/components/molecules/InstallWorkflowPicker/useInstallWorkflowPicker.ts
  • autogpt_platform/frontend/src/components/organisms/FloatingReviewsPanel/FloatingReviewsPanel.tsx
  • autogpt_platform/frontend/src/components/organisms/NeedsAttentionList/useNeedsAttentionList.ts
  • autogpt_platform/frontend/src/components/organisms/PendingReviewsList/PendingReviewsList.tsx
  • autogpt_platform/frontend/src/components/organisms/PendingReviewsList/__tests__/PendingReviewsList.test.tsx
  • autogpt_platform/frontend/src/components/organisms/WorkOutputSheet/WorkOutputSheet.tsx
  • autogpt_platform/frontend/src/components/organisms/WorkOutputSheet/__tests__/WorkOutputSheet.test.tsx
  • autogpt_platform/frontend/src/components/organisms/WorkOutputSheet/__tests__/helpers.test.ts
  • autogpt_platform/frontend/src/components/organisms/WorkOutputSheet/helpers.ts
  • autogpt_platform/frontend/src/components/renderers/InputRenderer/base/standard/widgets/FileInput/FileWidget.tsx
  • autogpt_platform/frontend/src/components/renderers/InputRenderer/base/standard/widgets/FileInput/useWorkspaceUpload.test.ts
  • autogpt_platform/frontend/src/components/renderers/InputRenderer/base/standard/widgets/FileInput/useWorkspaceUpload.ts
  • autogpt_platform/frontend/src/components/renderers/InputRenderer/types.ts
  • autogpt_platform/frontend/src/hooks/useAgentSafeMode.ts
  • autogpt_platform/frontend/src/hooks/useExecutionEvents.ts
  • autogpt_platform/frontend/src/hooks/useLibraryAgents/store.ts
  • autogpt_platform/frontend/src/hooks/useLibraryAgents/useLibraryAgents.ts
  • autogpt_platform/frontend/src/hooks/useNeedsAttention.ts
  • autogpt_platform/frontend/src/hooks/usePendingReviews.ts
  • autogpt_platform/frontend/src/hooks/useProcessReviews.test.tsx
  • autogpt_platform/frontend/src/hooks/useProcessReviews.ts
  • autogpt_platform/frontend/src/lib/__tests__/direct-upload.test.ts
  • autogpt_platform/frontend/src/lib/autogpt-server-api/__tests__/client.test.ts
  • autogpt_platform/frontend/src/lib/autogpt-server-api/client.ts
  • autogpt_platform/frontend/src/lib/autogpt-server-api/context.tsx
  • autogpt_platform/frontend/src/lib/autogpt-server-api/types.ts
  • autogpt_platform/frontend/src/lib/direct-upload.ts
  • autogpt_platform/frontend/src/lib/review-links.test.ts
  • autogpt_platform/frontend/src/lib/review-links.ts
  • autogpt_platform/frontend/src/lib/utils/image.test.ts
  • autogpt_platform/frontend/src/lib/utils/image.ts
  • autogpt_platform/frontend/src/mocks/mock-handlers.ts
  • autogpt_platform/frontend/src/providers/org-team/OrgTeamProvider.tsx
  • autogpt_platform/frontend/src/providers/org-team/__tests__/OrgTeamProvider.test.tsx
  • autogpt_platform/frontend/src/services/experts/__tests__/usePersonalExpertWorkspace.test.tsx
  • autogpt_platform/frontend/src/services/experts/usePersonalExpertWorkspace.ts
  • autogpt_platform/frontend/src/services/feature-flags/__tests__/flag-defaults.test.ts
  • autogpt_platform/frontend/src/services/feature-flags/use-get-flag.ts
  • autogpt_platform/frontend/src/services/feature-flags/with-feature-flag.tsx
  • autogpt_platform/frontend/src/services/org-team/__tests__/avatar.test.ts
  • autogpt_platform/frontend/src/services/org-team/__tests__/store.test.ts
  • autogpt_platform/frontend/src/services/org-team/avatar.ts
  • autogpt_platform/frontend/src/services/org-team/builder.ts
  • autogpt_platform/frontend/src/services/org-team/header-names.ts
  • autogpt_platform/frontend/src/services/org-team/headers.ts
  • autogpt_platform/frontend/src/services/org-team/identity.ts
  • autogpt_platform/frontend/src/services/org-team/normalize.ts
  • autogpt_platform/frontend/src/services/org-team/store.ts
  • autogpt_platform/frontend/src/services/org-team/workspace.ts
  • autogpt_platform/frontend/src/services/storage/local-storage.ts
  • autogpt_platform/frontend/src/tests/integrations/vitest.setup.tsx
  • autogpt_platform/single-container/.env.example
  • autogpt_platform/single-container/Dockerfile
  • autogpt_platform/single-container/OrgsFinalContextArtifactDelta.Dockerfile
  • autogpt_platform/single-container/README.md
  • autogpt_platform/single-container/docker-bake.hcl
  • autogpt_platform/single-container/entrypoint.sh
  • autogpt_platform/single-container/tests/test_documented_operations.py
  • autogpt_platform/single-container/tests/test_entrypoint.py
  • docs/platform/SUMMARY.md
  • docs/platform/getting-started.md
  • docs/platform/org-feature-map.md
  • docs/platform/organizations/access-model.md
  • docs/platform/organizations/internal-rollout.md
  • docs/platform/organizations/shared-memory.md
  • docs/platform/single-container.md

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

@github-actions github-actions Bot added cla: signed CLA signed by all contributors size/xl documentation Improvements or additions to documentation platform/frontend AutoGPT Platform - Front end platform/backend AutoGPT Platform - Back end platform/blocks and removed cla: signed CLA signed by all contributors labels Sep 7, 2026
@github-actions github-actions Bot added the cla: signed CLA signed by all contributors label Sep 7, 2026
@ntindle
ntindle marked this pull request as ready for review September 7, 2026 23:38
@ntindle
ntindle requested review from a team as code owners September 7, 2026 23:38
@ntindle
ntindle requested review from 0ubbe and Bentlybro and removed request for a team September 7, 2026 23:38
@cursor

cursor Bot commented Sep 7, 2026

Copy link
Copy Markdown

This PR is too large for Bugbot to review. It changes 58,996 lines and 3,855,755 characters. Split the change into smaller pull requests to get a review.

@sentry

sentry Bot commented Sep 7, 2026

Copy link
Copy Markdown

🚧 Skipped: PR exceeds review size limit.

Please split into smaller PRs and re-run.
Reference ID: 16552247

@ntindle

ntindle commented Sep 7, 2026

Copy link
Copy Markdown
Member Author

/review

@autogpt-pr-reviewer

Copy link
Copy Markdown

I couldn't load the latest pull request details from GitHub, so the review was not queued: Failed to load pull request diff: Client error '406 Not Acceptable' for url 'https://api.github.com/repos/Significant-Gravitas/AutoGPT/pulls/14433'
For more information check: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/406

@codecov

codecov Bot commented Sep 7, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 86.15416% with 670 lines in your changes missing coverage. Please review.
✅ Project coverage is 81.37%. Comparing base (6dc5fec) to head (3238118).
⚠️ Report is 4 commits behind head on dev.

Additional details and impacted files
@@            Coverage Diff             @@
##              dev   #14433      +/-   ##
==========================================
+ Coverage   81.34%   81.37%   +0.02%     
==========================================
  Files        3515     3663     +148     
  Lines      263403   281478   +18075     
  Branches    24413    26208    +1795     
==========================================
+ Hits       214278   229042   +14764     
- Misses      43780    46576    +2796     
- Partials     5345     5860     +515     
Flag Coverage Δ
platform-backend 86.01% <86.11%> (-0.34%) ⬇️
platform-frontend 61.24% <ø> (+0.85%) ⬆️
platform-frontend-e2e 28.74% <ø> (-0.03%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Components Coverage Δ
Platform Backend 86.01% <86.15%> (-0.34%) ⬇️
Platform Frontend 63.41% <ø> (+0.67%) ⬆️
AutoGPT Libs ∅ <ø> (∅)
Classic AutoGPT 28.43% <ø> (ø)
🚀 New features to boost your workflow:
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@github-actions github-actions Bot added the conflicts Automatically applied to PRs with merge conflicts label Sep 8, 2026
@github-actions

github-actions Bot commented Sep 8, 2026

Copy link
Copy Markdown
Contributor

This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request.

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

Labels

cla: signed CLA signed by all contributors conflicts Automatically applied to PRs with merge conflicts documentation Improvements or additions to documentation platform/backend AutoGPT Platform - Back end platform/blocks platform/frontend AutoGPT Platform - Front end size/xl

Projects

Status: 🆕 Needs initial review
Status: No status

Development

Successfully merging this pull request may close these issues.

1 participant