Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Bogus change to test the updated smoketest.yml

Comment on lines +1 to +2
Copy link

Copilot AI Dec 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding test content to the top of the README disrupts the documentation structure. If this is intended as a temporary test, it should not be merged. If CI/CD testing is needed, consider using a separate test file or branch that doesn't modify production documentation.

Suggested change
Bogus change to test the updated smoketest.yml

Copilot uses AI. Check for mistakes.
# Seclab Taskflow Agent

The Security Lab Taskflow Agent is an MCP enabled multi-Agent framework.
Expand Down
4 changes: 1 addition & 3 deletions examples/taskflows/example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,13 @@ seclab-taskflow-agent:
version: 1
filetype: taskflow

# Import settings from a model_config file.
model_config: examples.model_configs.model_config

taskflow:
- task:
# taskflows can optionally choose any of the support CAPI models for a task
model: gpt_default
# taskflows can optionally limit the max allowed number of Agent task loop
# iterations to complete a task, this defaults to 50 when not provided
model: kevmodel
Copy link

Copilot AI Dec 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Duplicate model key detected. Line 11 already defines model: gpt_default, and this line adds model: kevmodel. In YAML, duplicate keys at the same level will result in only the last value being used, effectively overwriting the first. This likely causes the task to use 'kevmodel' instead of 'gpt_default', which may not be the intended behavior. Remove this duplicate or clarify the intended configuration.

Suggested change
model: kevmodel

Copilot uses AI. Check for mistakes.
max_steps: 20
must_complete: true
# taskflows can set a primary (first entry) and handoff (additional entries) agent
Expand Down