Emmanuel 326 activity https://gitlab.com/Emmanuel326 2026-03-21T20:36:40Z tag:gitlab.com,2026-03-21:5229838233 Emmanuel 326 commented on merge request !3 at GitLab AI Hackathon / Participants / Emmanuel326 2026-03-21T20:36:40Z Emmanuel326 Emmanuel 326 [email protected]

@ai-godaktari-flow-gitlab-ai-hackathon scan demo/patient.go

tag:gitlab.com,2026-03-21:5229834753 Emmanuel 326 commented on merge request !11 at GitLab AI Hackathon / Participants / Emmanuel326 2026-03-21T20:35:37Z Emmanuel326 Emmanuel 326 [email protected]

@ai-godaktari-flow-gitlab-ai-hackathon scan this

tag:gitlab.com,2026-03-21:5228324231 Emmanuel 326 commented on merge request !11 at GitLab AI Hackathon / Participants / Emmanuel326 2026-03-21T03:08:16Z Emmanuel326 Emmanuel 326 [email protected]

@godaktari scan demo/patient.go

tag:gitlab.com,2026-03-21:5228322584 Emmanuel 326 commented on merge request !3 at GitLab AI Hackathon / Participants / Emmanuel326 2026-03-21T03:06:15Z Emmanuel326 Emmanuel 326 [email protected]

@godaktari scan demo/patient.go

tag:gitlab.com,2026-03-20:5228011577 Emmanuel 326 pushed new project branch gin at GitLab AI Hackathon / Participants / Emmanuel326 2026-03-20T22:29:15Z Emmanuel326 Emmanuel 326 [email protected]

Emmanuel 326 (3e76ee37) at 20 Mar 22:29

tag:gitlab.com,2026-03-20:5228009869 Emmanuel 326 commented on issue #2 at GitLab AI Hackathon / Participants / Emmanuel326 2026-03-20T22:27:52Z Emmanuel326 Emmanuel 326 [email protected]

@ai-godaktari-flow-gitlab-ai-hackathon can you look at all the problems we have at demo/patient.go

tag:gitlab.com,2026-03-20:5228007367 Emmanuel 326 opened issue #2: Test demo/patients.go at GitLab AI Hackathon / Participants / Emmanuel326 2026-03-20T22:26:06Z Emmanuel326 Emmanuel 326 [email protected] tag:gitlab.com,2026-03-20:5227956448 Emmanuel 326 deleted project branch duo/fix/2399029012-missing-prompt-id-w3205108 at GitLab AI Hackathon / Participants / Emmanuel326 2026-03-20T21:57:42Z Emmanuel326 Emmanuel 326 [email protected]

Emmanuel 326 (fef7d799) at 20 Mar 21:57

tag:gitlab.com,2026-03-20:5227956413 Emmanuel 326 accepted merge request !12: [FixPipeline] https://gitlab.com/gitlab-ai-hackathon/participants/33017979/-/pipelines/2399029012 at GitLab AI Hacka... 2026-03-20T21:57:40Z Emmanuel326 Emmanuel 326 [email protected]

Summary

The validate-items job in pipeline #2399029012 was failing due to a schema validation error. The godaktari component in flows/godaktari-flow.yml was missing the required prompt_id field, causing the error: "REQUIRED must have required property 'prompt_id'".

Changes

  • Added prompt_id: "godaktari_prompt" to the godaktari component definition in flows/godaktari-flow.yml
  • The field was inserted at line 12, immediately after type: "AgentComponent"
  • This creates the required linkage between the component and its corresponding prompt definition

Diff:

components:
  - name: "godaktari"
    type: "AgentComponent"
    prompt_id: "godaktari_prompt"  # ← ADDED THIS LINE
    inputs:
      - "context:goal"
    toolset:
      # ... rest of toolset

Verification

Component has required name field
Component has required type field
Component has required prompt_id field (FIXED)
Referenced prompt exists in prompts array
YAML syntax is valid
Component-to-prompt linkage is correct

Expected Outcome:
When the pipeline runs again, the validate-items job will pass because:

  1. The component definition now includes all required schema fields
  2. The prompt_id correctly references the existing godaktari_prompt prompt
  3. The ai-catalog-sync validator will successfully validate the flow definition

The fix is minimal, surgical, and addresses exactly the schema validation requirement that was causing the pipeline failure.


Fixes failing pipeline

Session 3205108

tag:gitlab.com,2026-03-20:5227956410 Emmanuel 326 pushed to project branch main at GitLab AI Hackathon / Participants / Emmanuel326 2026-03-20T21:57:40Z Emmanuel326 Emmanuel 326 [email protected]

Emmanuel 326 (3e76ee37) at 20 Mar 21:57

Merge branch 'duo/fix/2399029012-missing-prompt-id-w3205108' into '...

... and 1 more commit

tag:gitlab.com,2026-03-20:5227954680 Emmanuel 326 opened merge request !12: [FixPipeline] https://gitlab.com/gitlab-ai-hackathon/participants/33017979/-/pipelines/2399029012 at GitLab AI Hackath... 2026-03-20T21:56:33Z Emmanuel326 Emmanuel 326 [email protected]

Summary

The validate-items job in pipeline #2399029012 was failing due to a schema validation error. The godaktari component in flows/godaktari-flow.yml was missing the required prompt_id field, causing the error: "REQUIRED must have required property 'prompt_id'".

Changes

  • Added prompt_id: "godaktari_prompt" to the godaktari component definition in flows/godaktari-flow.yml
  • The field was inserted at line 12, immediately after type: "AgentComponent"
  • This creates the required linkage between the component and its corresponding prompt definition

Diff:

components:
  - name: "godaktari"
    type: "AgentComponent"
    prompt_id: "godaktari_prompt"  # ← ADDED THIS LINE
    inputs:
      - "context:goal"
    toolset:
      # ... rest of toolset

Verification

Component has required name field
Component has required type field
Component has required prompt_id field (FIXED)
Referenced prompt exists in prompts array
YAML syntax is valid
Component-to-prompt linkage is correct

Expected Outcome:
When the pipeline runs again, the validate-items job will pass because:

  1. The component definition now includes all required schema fields
  2. The prompt_id correctly references the existing godaktari_prompt prompt
  3. The ai-catalog-sync validator will successfully validate the flow definition

The fix is minimal, surgical, and addresses exactly the schema validation requirement that was causing the pipeline failure.


Fixes failing pipeline

Session 3205108

tag:gitlab.com,2026-03-20:5227952518 Emmanuel 326 opened merge request !11: Draft: [FixPipeline] https://gitlab.com/gitlab-ai-hackathon/participants/33017979/-/pipelines/2399028394 at GitLab AI ... 2026-03-20T21:55:12Z Emmanuel326 Emmanuel 326 [email protected]

Summary

The pipeline was failing because the prompt_id field was missing from the AgentComponent definition in flows/godaktari-flow.yml. The AI Catalog schema validator (v0.0.10) enforces prompt_id as a required field for AgentComponent types, causing the validate-items job to fail with the error: REQUIRED must have required property 'prompt_id'.

Changes

  • File: flows/godaktari-flow.yml
  • Line: 13 (after type: "AgentComponent")
  • Addition: Added prompt_id: "godaktari_prompt" to restore the required schema field

Before (broken):

  components:
    - name: "godaktari"
      type: "AgentComponent"
      inputs:
        - "context:goal"

After (fixed):

  components:
    - name: "godaktari"
      type: "AgentComponent"
      prompt_id: "godaktari_prompt"
      inputs:
        - "context:goal"

Verification

Fix Applied Successfully

The required prompt_id field has been restored to the AgentComponent definition. This field:

  1. Links the component to its prompt definition (defined at line 25 with the same prompt_id: "godaktari_prompt")
  2. Satisfies the AI Catalog schema validator's requirement for AgentComponent types
  3. Restores the proper component-to-prompt linkage required by the schema

The validate-items job will now pass when the pipeline runs again, as the schema validation requirement is satisfied.


Fixes failing pipeline on !10

Session 3205101

tag:gitlab.com,2026-03-20:5227945280 Emmanuel 326 deleted project branch duo-edit-20260320-215009 at GitLab AI Hackathon / Participants / Emmanuel326 2026-03-20T21:50:59Z Emmanuel326 Emmanuel 326 [email protected]

Emmanuel 326 (a38f4545) at 20 Mar 21:50

tag:gitlab.com,2026-03-20:5227945236 Emmanuel 326 pushed to project branch main at GitLab AI Hackathon / Participants / Emmanuel326 2026-03-20T21:50:58Z Emmanuel326 Emmanuel 326 [email protected]

Emmanuel 326 (5f63ca6e) at 20 Mar 21:50

Merge branch 'duo-edit-20260320-215009' into 'main'

... and 1 more commit

tag:gitlab.com,2026-03-20:5227945227 Emmanuel 326 accepted merge request !10: Fix schema validation errors in godaktari-flow.yml at GitLab AI Hackathon / Participants / Emmanuel326 2026-03-20T21:50:58Z Emmanuel326 Emmanuel 326 [email protected]

Removes tool_name and prompt_id properties from the component definition, as these are not allowed at that level according to the flow schema. These properties are already properly defined in the prompts section.

tag:gitlab.com,2026-03-20:5227944504 Emmanuel 326 opened merge request !10: Fix schema validation errors in godaktari-flow.yml at GitLab AI Hackathon / Participants / Emmanuel326 2026-03-20T21:50:40Z Emmanuel326 Emmanuel 326 [email protected]

Removes tool_name and prompt_id properties from the component definition, as these are not allowed at that level according to the flow schema. These properties are already properly defined in the prompts section.

tag:gitlab.com,2026-03-20:5227943370 Emmanuel 326 pushed new project branch duo-edit-20260320-215009 at GitLab AI Hackathon / Participants / Emmanuel326 2026-03-20T21:50:11Z Emmanuel326 Emmanuel 326 [email protected]

Emmanuel 326 (a38f4545) at 20 Mar 21:50

Fix schema validation errors in godaktari-flow.yml

tag:gitlab.com,2026-03-20:5227940258 Emmanuel 326 deleted project branch duo-edit-20260320-214640 at GitLab AI Hackathon / Participants / Emmanuel326 2026-03-20T21:48:49Z Emmanuel326 Emmanuel 326 [email protected]

Emmanuel 326 (cfca68a1) at 20 Mar 21:48

tag:gitlab.com,2026-03-20:5227940239 Emmanuel 326 pushed to project branch main at GitLab AI Hackathon / Participants / Emmanuel326 2026-03-20T21:48:49Z Emmanuel326 Emmanuel 326 [email protected]

Emmanuel 326 (0be12c10) at 20 Mar 21:48

Merge branch 'duo-edit-20260320-214640' into 'main'

... and 1 more commit

tag:gitlab.com,2026-03-20:5227940215 Emmanuel 326 accepted merge request !9: Fix agent and flow schema validation errors at GitLab AI Hackathon / Participants / Emmanuel326 2026-03-20T21:48:48Z Emmanuel326 Emmanuel 326 [email protected]

Corrects tool names in both agent and flow definitions to match the allowed schema values.