> ## 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.

# Suggest Strategy Brief

> Compose a default Strategy Brief from the team's Brand Kit + Work Loops.

Pure read operation — does not persist. The frontend calls this on mount
to pre-fill empty brief/audience/keywords fields so users see a brief that
actually reflects what they configured in onboarding, rather than a
generic template.



## OpenAPI

````yaml /openapi.json get /api/v1/teams/{team_id}/strategy/brief/suggest
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/teams/{team_id}/strategy/brief/suggest:
    get:
      tags:
        - Teams
      summary: Suggest Strategy Brief
      description: >-
        Compose a default Strategy Brief from the team's Brand Kit + Work Loops.


        Pure read operation — does not persist. The frontend calls this on mount

        to pre-fill empty brief/audience/keywords fields so users see a brief
        that

        actually reflects what they configured in onboarding, rather than a

        generic template.
      operationId: suggest_strategy_brief_api_v1_teams__team_id__strategy_brief_suggest_get
      parameters:
        - name: team_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Team Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StrategyBriefSuggestionResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    StrategyBriefSuggestionResponse:
      properties:
        brief:
          type: string
          title: Brief
        audience:
          type: string
          title: Audience
        keywords:
          type: string
          title: Keywords
        source:
          $ref: '#/components/schemas/StrategyBriefSuggestionSource'
      type: object
      required:
        - brief
        - audience
        - keywords
        - source
      title: StrategyBriefSuggestionResponse
      description: >-
        Server-composed default brief derived from the team's Brand Kit + Work
        Loops.


        Returned by GET /teams/{id}/strategy/brief/suggest. The frontend
        pre-fills

        empty brief/audience/keywords fields from this; the `source` manifest is

        rendered to the user so they can SEE what Brand Kit data fed the brief.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    StrategyBriefSuggestionSource:
      properties:
        brand_kit_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Brand Kit Id
        brand_kit_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Brand Kit Name
        cycle_days:
          type: integer
          title: Cycle Days
        loops:
          items:
            $ref: '#/components/schemas/StrategyBriefSuggestionLoop'
          type: array
          title: Loops
        missing_fields:
          items:
            type: string
          type: array
          title: Missing Fields
        kit_content:
          $ref: '#/components/schemas/StrategyBriefKitContent'
      type: object
      required:
        - cycle_days
      title: StrategyBriefSuggestionSource
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    StrategyBriefSuggestionLoop:
      properties:
        task_type:
          type: string
          title: Task Type
        every_n_days:
          anyOf:
            - type: integer
            - type: 'null'
          title: Every N Days
        agent_name:
          type: string
          title: Agent Name
      type: object
      required:
        - task_type
        - agent_name
      title: StrategyBriefSuggestionLoop
    StrategyBriefKitContent:
      properties:
        tagline:
          anyOf:
            - type: string
            - type: 'null'
          title: Tagline
        mission_statement:
          anyOf:
            - type: string
            - type: 'null'
          title: Mission Statement
        brand_voice:
          anyOf:
            - type: string
            - type: 'null'
          title: Brand Voice
        tone_keywords:
          items:
            type: string
          type: array
          title: Tone Keywords
        industry:
          anyOf:
            - type: string
            - type: 'null'
          title: Industry
        competitors:
          items:
            type: string
          type: array
          title: Competitors
        target_audience:
          anyOf:
            - type: string
            - type: 'null'
          title: Target Audience
        seo_keywords:
          items:
            type: string
          type: array
          title: Seo Keywords
        content_pillars:
          items:
            type: string
          type: array
          title: Content Pillars
      type: object
      title: StrategyBriefKitContent
      description: |-
        Echo of the Brand Kit fields the brief composer actually consumed.

        The frontend renders this under "From Brand Kit" so the panel
        honours its label. Empty / None fields simply aren't shown — the
        UI skips anything falsy rather than printing "—".
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````