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
13 changes: 13 additions & 0 deletions submissions/hello-world-no-instr/metadata.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: hello-world-no-instr
description: "Create a file with specific content -- tests pipeline AI generation (no instruction.md)"
persona: general
version: "0.1.0"
tags:
- smoke-test
- ai-generated
generation_mode: ai
cpus: 1
memory_mb: 512
storage_mb: 1024
experiment:
n_trials: 1
13 changes: 13 additions & 0 deletions submissions/hello-world-no-instr/skills/SKILL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Hello World Skill

A trivial file-creation skill used as a smoke test for the ABEvalFlow pipeline.

## What the agent must do

Given an instruction to create a file with specific content, the agent should
produce the correct file at the correct path with the exact expected content.

## Evaluation criteria

- File exists at the specified path
- File content matches the expected string exactly (including punctuation)
3 changes: 3 additions & 0 deletions submissions/hello-world-no-instr/solution/solve.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
echo "Hello, world!" > hello.txt
echo "Done!"