singularity-forge/tests/fixtures/recordings/agent-multi-turn-tools.json
TÂCHES 6f410a0041 feat(ci): implement three-stage promotion pipeline (Dev → Test → Prod) (#1098)
* feat(ci): add version stamp script for dev publishes

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* feat(ci): add CLI smoke tests for pipeline test stage

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* feat(ci): add FixtureProvider for LLM conversation recording and replay

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* feat(ci): add fixture test runner and sample recordings

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* feat(ci): add live test stubs and pipeline npm scripts

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* feat(ci): add three-stage promotion pipeline workflow

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* feat(ci): add weekly cleanup workflow for stale dev versions

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* feat(ci): add fixture recording helper stub

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-18 00:40:06 -06:00

50 lines
1.2 KiB
JSON

{
"name": "agent-multi-turn-tools",
"description": "Two-turn fixture where the agent uses multiple Write tools across turns",
"turns": [
{
"role": "user",
"content": "Create two files: hello.txt and world.txt"
},
{
"role": "assistant",
"content": "I'll create both files.",
"toolUses": [
{
"name": "Write",
"input": {
"file_path": "/tmp/hello.txt",
"content": "Hello"
},
"output": "File created successfully at /tmp/hello.txt"
},
{
"name": "Write",
"input": {
"file_path": "/tmp/world.txt",
"content": "World"
},
"output": "File created successfully at /tmp/world.txt"
}
]
},
{
"role": "user",
"content": "Now create a combined file"
},
{
"role": "assistant",
"content": "I'll create the combined file.",
"toolUses": [
{
"name": "Write",
"input": {
"file_path": "/tmp/combined.txt",
"content": "Hello World"
},
"output": "File created successfully at /tmp/combined.txt"
}
]
}
]
}