agent-ecosystem/src/features
2026-05-18 01:57:16 +03:00
..
agent-attachments fix(ci): stabilize dev branch checks 2026-05-09 23:40:13 +03:00
agent-graph feat(team): improve runtime provider workflows 2026-05-17 19:11:26 +03:00
anthropic-runtime-profile feat(team): expand opencode review and release support 2026-04-24 12:05:54 +03:00
codex-account feat(runtime): improve provider delivery visibility 2026-05-12 23:33:08 +03:00
codex-model-catalog feat: prefer orchestrator codex model catalog 2026-04-28 20:13:03 +03:00
codex-runtime-installer feat: add managed codex runtime installer 2026-05-13 22:30:25 +03:00
codex-runtime-profile feat(team): expand opencode review and release support 2026-04-24 12:05:54 +03:00
member-log-stream fix(ci): stabilize ci and release workflows 2026-05-14 22:10:30 +03:00
member-work-sync fix: harden Windows frontend stability (#125) 2026-05-16 19:57:11 +03:00
recent-projects fix: harden Windows frontend stability (#125) 2026-05-16 19:57:11 +03:00
running-teams fix(team): harden opencode delivery recovery 2026-05-14 15:11:40 +03:00
runtime-provider-management fix: harden provider management and updater flows 2026-05-16 23:23:27 +03:00
team-runtime-lanes chore: checkpoint team runtime work 2026-05-06 11:53:34 +03:00
tmux-installer chore: checkpoint frontend workspace updates 2026-05-18 01:57:16 +03:00
workspace-trust fix(ci): stabilize ci and release workflows 2026-05-14 22:10:30 +03:00
CLAUDE.md fix(team): harden opencode delivery recovery 2026-05-14 15:11:40 +03:00
README.md fix(team): harden opencode delivery recovery 2026-05-14 15:11:40 +03:00

Features

This directory contains the canonical home for medium and large feature slices.

Before creating or refactoring a feature, read:

Reference examples:

  • recent-projects - full cross-process feature with contracts, core, main, preload, renderer, and focused tests
  • agent-graph - thin feature with core/domain and renderer integration only
  • codex-model-catalog and team-runtime-lanes - process-limited features that omit renderer or preload layers when they do not own those boundaries

Use src/features/<feature-name>/ by default when the work introduces:

  • a new use case or business policy
  • transport wiring
  • more than one process boundary
  • more than one adapter or provider

Feature-local docs should answer navigation questions:

  • which shape the feature uses
  • which entrypoints are public
  • where new adapters, rules, bridges, or renderer surfaces belong
  • what tests protect the behavior
  • which local files are the best examples for future changes

Do not duplicate architecture rules in feature folders. Keep the standard centralized in ../../docs/FEATURE_ARCHITECTURE_STANDARD.md.

Rule of thumb:

  • recent-projects is the full slice example with process-aware outer layers
  • agent-graph is the thin slice example built around core/ plus renderer/