> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentarea.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Add Skill Member

> Add a child skill to a parent skill bundle.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/skills/{skill_id}/members
openapi: 3.1.0
info:
  description: >-
    Modular and extensible framework for building AI agents. This API requires
    JWT Bearer token authentication for most endpoints. Include your JWT token
    in the Authorization header. Public endpoints include /, /health, /docs,
    /redoc, and /openapi.json.
  title: AgentArea API
  version: 0.1.0
servers: []
security:
  - bearer: []
paths:
  /v1/skills/{skill_id}/members:
    post:
      tags:
        - v1
        - protected
        - skills
      summary: Add Skill Member
      description: Add a child skill to a parent skill bundle.
      operationId: add_skill_member_v1_skills__skill_id__members_post
      parameters:
        - in: path
          name: skill_id
          required: true
          schema:
            format: uuid
            title: Skill Id
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SkillMemberAddRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SkillMemberResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - HTTPBearer: []
components:
  schemas:
    SkillMemberAddRequest:
      description: Request to add a child skill member.
      properties:
        child_skill_id:
          description: ID of the child skill to add
          format: uuid
          title: Child Skill Id
          type: string
        dependencies:
          description: IDs of sibling children that must run before this one
          items:
            type: string
          title: Dependencies
          type: array
        is_required:
          default: true
          description: Whether this child is required
          title: Is Required
          type: boolean
        order:
          default: 0
          description: Execution order hint
          title: Order
          type: integer
      required:
        - child_skill_id
      title: SkillMemberAddRequest
      type: object
    SkillMemberResponse:
      description: Skill member response model.
      properties:
        child_skill_id:
          title: Child Skill Id
          type: string
        dependencies:
          items:
            type: string
          title: Dependencies
          type: array
        is_required:
          title: Is Required
          type: boolean
        order:
          title: Order
          type: integer
        parent_skill_id:
          title: Parent Skill Id
          type: string
      required:
        - parent_skill_id
        - child_skill_id
        - order
        - is_required
        - dependencies
      title: SkillMemberResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: JWT Bearer token for authentication
      scheme: bearer
      type: http
    HTTPBearer:
      scheme: bearer
      type: http

````