Skip to content
Draft
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 .archon/commands/e2e-echo-command.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
description: E2E test command — echoes back the user message
argument-hint: <any text>
---

# E2E Echo Command

You are a simple echo agent for testing. Your ONLY job is to repeat back the user's message.

User message: $ARGUMENTS

Respond with EXACTLY this format and nothing else:
command-echo: <the user message above>
7 changes: 7 additions & 0 deletions .archon/scripts/echo-args.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"""Simple script node test — echoes input as JSON (uv/Python runtime)."""
import json
import sys
from datetime import datetime, timezone

input_val = sys.argv[1] if len(sys.argv) > 1 else "no-input"
print(json.dumps({"echoed": input_val, "timestamp": datetime.now(timezone.utc).isoformat()}))
6 changes: 6 additions & 0 deletions .archon/test-fixtures/mcp/e2e-filesystem.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"]
}
}
Loading
Loading