Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.aitasker.co/llms.txt

Use this file to discover all available pages before exploring further.

Feature Flags

Status: Stub — content forthcoming.
AITasker has two layers of gating: environment-variable feature flags (category-level kill switches) and per-entity visibility states stored in the database (per agent, per team, per task type). This page will cover:
  • Env-var flags: WORKFLOW_ENABLED, TEAMS_ENABLED, TECH_SUPPORT_ENABLED, CODING_TASKS_ENABLED, and friends
  • How effective_state composes env-flag + DB state (env false forces HIDDEN)
  • The five-state visibility enum: draft | coming_soon | beta | live | hidden
  • Naming rule: pydantic field name → env var (UPPERCASE) — verify in config.py before setting
  • When to reach for env flags vs admin dashboard
Canonical source: backend/app/core/config.py for env flags, backend/app/services/visibility.py::effective_state for the compose logic. Operator guidance lives in docs/PARTNER_GATING.md and docs/ADMIN_DASHBOARD.md.